/* ========================================
   PuppyLandLA - Custom Styles
   Inspired by playful Japanese design
======================================== */

:root {
    /* Primary Colors - Warm & Playful */
    --primary-pink: #F5B5B5;
    --primary-peach: #FDDCBD;
    --primary-cream: #FFF8F0;
    --primary-brown: #8B6F5C;
    --primary-dark-brown: #5C4033;
    
    /* Accent Colors */
    --accent-green: #9BC4A9;
    --accent-mint: #D4E8D9;
    --accent-coral: #E8A598;
    --accent-yellow: #F7E4B8;
    
    /* Neutrals */
    --white: #FFFFFF;
    --off-white: #FFFAF5;
    --light-gray: #F5F0EB;
    --medium-gray: #9E9E9E;
    --dark-gray: #4A4A4A;
    --black: #2D2D2D;
    
    /* Gradients */
    --gradient-pink: linear-gradient(135deg, #F5B5B5 0%, #FDDCBD 100%);
    --gradient-warm: linear-gradient(135deg, #FDDCBD 0%, #F7E4B8 100%);
    --gradient-mint: linear-gradient(135deg, #9BC4A9 0%, #D4E8D9 100%);
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(139, 111, 92, 0.1);
    --shadow-md: 0 4px 16px rgba(139, 111, 92, 0.15);
    --shadow-lg: 0 8px 32px rgba(139, 111, 92, 0.2);
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 40px;
    --radius-full: 50%;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* ========================================
   Base Styles
======================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Quicksand', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--dark-gray);
    background-color: var(--off-white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    color: var(--primary-dark-brown);
}

p {
    margin-bottom: 1rem;
    color: var(--dark-gray);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-normal);
}

img {
    max-width: 100%;
    height: auto;
}

/* ========================================
   Navigation
======================================== */

.navbar {
    background-color: var(--white);
    box-shadow: var(--shadow-sm);
    padding: 0.75rem 0;
    transition: var(--transition-normal);
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.brand-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-pink);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.25rem;
}

.brand-text {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-dark-brown);
}

.brand-highlight {
    color: var(--accent-coral);
}

.navbar-nav .nav-link {
    font-weight: 600;
    color: var(--primary-brown);
    padding: 0.5rem 1rem;
    position: relative;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: var(--gradient-pink);
    border-radius: 2px;
    transform: translateX(-50%);
    transition: var(--transition-normal);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 60%;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-dark-brown);
}

.navbar-toggler {
    border: none;
    padding: 0.5rem;
    z-index: 1001;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%238B6F5C' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Mobile Menu Slide-in */
@media (max-width: 991.98px) {
    .navbar-collapse {
        position: fixed !important;
        top: 0 !important;
        right: 0 !important;
        width: 90% !important;
        height: 100vh !important;
        max-height: none !important;
        background: var(--white);
        padding: 5rem 2rem 2rem;
        box-shadow: var(--shadow-lg);
        transform: translateX(100%);
        transition: none !important;
        z-index: 1001;
        overflow-y: auto;
        display: block !important;
        visibility: hidden;
    }

    .navbar-collapse.show {
        transform: translateX(0);
        visibility: visible;
    }

    .navbar-collapse.collapsing {
        height: 100vh !important;
        transform: translateX(100%);
        transition: none !important;
    }

    /* Close button */
    .mobile-menu-close {
        position: absolute;
        top: 1.5rem;
        right: 1.5rem;
        width: 48px;
        height: 48px;
        background: var(--primary-pink);
        border: none;
        border-radius: var(--radius-full);
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        font-size: 1.5rem;
        color: var(--white);
        transition: var(--transition-normal);
        z-index: 10;
        box-shadow: var(--shadow-md);
    }

    .mobile-menu-close:hover {
        background: var(--accent-coral);
        transform: scale(1.1);
    }

    .navbar-collapse .navbar-nav {
        flex-direction: column;
        gap: 0.5rem;
        position: relative;
        z-index: 2;
        margin-top: 50px;
    }

    .navbar-collapse .navbar-nav .nav-link {
        font-size: 1.25rem;
        padding: 1rem 1.5rem;
        border-radius: var(--radius-md);
        transition: var(--transition-normal);
    }

    .navbar-collapse .navbar-nav .nav-link:hover,
    .navbar-collapse .navbar-nav .nav-link.active {
        background: var(--light-gray);
    }

    .navbar-collapse .navbar-nav .nav-link::after {
        display: none;
    }

    .navbar-collapse .btn-primary-custom {
        margin-top: 1.5rem;
        width: 100%;
        text-align: center;
        padding: 1rem;
        font-size: 1.1rem;
        position: relative;
        z-index: 2;
        color: var(--primary-brown);
    }

    .navbar-collapse .btn-primary-custom:hover {
        color: var(--primary-brown);
    }

    /* Overlay when menu is open */
    body::after {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(0, 0, 0, 0.5);
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease-in-out;
        z-index: 1000;
        pointer-events: none;
    }

    body.menu-open::after {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }
}

/* ========================================
   Buttons
======================================== */

.btn-primary-custom {
    background: var(--gradient-pink);
    border: none;
    color: var(--primary-brown);
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.btn-primary-custom:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    color: var(--primary-brown);
    filter: brightness(1.05);
}

.btn-outline-custom {
    background: transparent;
    border: 2px solid var(--primary-pink);
    color: var(--primary-brown);
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-xl);
    transition: var(--transition-normal);
}

.btn-outline-custom:hover {
    background: var(--primary-pink);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

/* ========================================
   Hero Section
======================================== */

.hero-section {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--off-white) 0%, var(--primary-cream) 50%, var(--primary-peach) 100%);
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero-decoration {
    position: absolute;
    border-radius: var(--radius-full);
    opacity: 0.5;
}

.hero-decoration-1 {
    width: 300px;
    height: 300px;
    background: var(--primary-pink);
    top: 10%;
    right: -100px;
    filter: blur(80px);
}

.hero-decoration-2 {
    width: 200px;
    height: 200px;
    background: var(--accent-mint);
    bottom: 20%;
    left: -50px;
    filter: blur(60px);
}

.hero-decoration-3 {
    width: 150px;
    height: 150px;
    background: var(--primary-peach);
    top: 40%;
    left: 30%;
    filter: blur(50px);
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    background: var(--white);
    color: var(--accent-coral);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-xl);
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-sm);
}

.hero-title {
    font-family: 'Pacifico', cursive;
    font-size: 3.5rem;
    font-weight: 400;
    color: var(--primary-dark-brown);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--primary-brown);
    margin-bottom: 2rem;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.hero-social {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.hero-social span {
    color: var(--medium-gray);
    font-weight: 500;
}

.social-link {
    width: 40px;
    height: 40px;
    background: var(--white);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-brown);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.social-link:hover {
    background: var(--gradient-pink);
    color: var(--white);
    transform: translateY(-3px);
}

.hero-image-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image-circle {
    position: absolute;
    width: 80%;
    aspect-ratio: 1;
    background: var(--gradient-pink);
    border-radius: var(--radius-full);
    opacity: 0.3;
}

.hero-image {
    position: relative;
    z-index: 2;
    max-height: 500px;
    object-fit: contain;
    animation: float 4s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.floating-card {
    position: absolute;
    background: var(--white);
    padding: 0.75rem 1rem;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: var(--shadow-md);
    font-weight: 600;
    font-size: 0.875rem;
    z-index: 3;
}

.floating-card i {
    color: var(--accent-coral);
}

.floating-card-1 {
    top: 20%;
    left: 0;
    animation: floatCard 3s ease-in-out infinite;
}

.floating-card-2 {
    bottom: 20%;
    right: 0;
    animation: floatCard 3s ease-in-out infinite 1.5s;
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    line-height: 0;
}

.hero-wave svg {
    width: 100%;
    height: 80px;
}

.hero-wave path {
    fill: var(--white);
}

/* ========================================
   Section Styles
======================================== */

section {
    padding: 5rem 0;
}

.section-badge {
    display: inline-block;
    background: var(--accent-mint);
    color: var(--primary-dark-brown);
    padding: 0.375rem 1rem;
    border-radius: var(--radius-xl);
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-dark-brown);
}

.script-title {
    font-family: 'Pacifico', cursive;
    font-weight: 400;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--primary-brown);
    max-width: 600px;
    margin: 0 auto;
}

/* ========================================
   About Section
======================================== */

.about-section {
    background: var(--white);
}

.about-image-wrapper {
    position: relative;
}

.about-image {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.about-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--gradient-pink);
    color: var(--white);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-md);
}

.badge-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}

.badge-text {
    font-size: 0.875rem;
    font-weight: 600;
}

.about-content {
    padding-left: 2rem;
}

.about-text {
    font-size: 1.1rem;
    color: var(--dark-gray);
    margin-bottom: 1.5rem;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    gap: 1rem;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--accent-mint);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-dark-brown);
    flex-shrink: 0;
}

.feature-text h4 {
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
}

.feature-text p {
    font-size: 0.9rem;
    color: var(--medium-gray);
    margin: 0;
}

/* ========================================
   Puppies Section
======================================== */

.puppies-section {
    background: linear-gradient(180deg, var(--white) 0%, var(--primary-cream) 100%);
    position: relative;
    overflow: hidden;
}

.section-decoration {
    position: absolute;
    border-radius: var(--radius-full);
}

.section-decoration-1 {
    width: 250px;
    height: 250px;
    background: var(--primary-pink);
    opacity: 0.2;
    top: -50px;
    right: -50px;
}

.section-decoration-2 {
    width: 200px;
    height: 200px;
    background: var(--accent-mint);
    opacity: 0.2;
    bottom: -50px;
    left: -50px;
}

.puppy-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    position: relative;
    height: 100%;
}

.puppy-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.puppy-card-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--white);
    color: var(--primary-dark-brown);
    padding: 0.375rem 0.75rem;
    border-radius: var(--radius-xl);
    font-size: 0.75rem;
    font-weight: 700;
    z-index: 2;
}

.puppy-card-image {
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.puppy-card-green .puppy-card-image {
    background: linear-gradient(135deg, var(--accent-mint) 0%, #C8E6C9 100%);
}

.puppy-card-brown .puppy-card-image {
    background: linear-gradient(135deg, var(--primary-peach) 0%, #D7CCC8 100%);
}

.puppy-card-peach .puppy-card-image {
    background: linear-gradient(135deg, var(--primary-pink) 0%, var(--primary-peach) 100%);
}

.puppy-card-image img {
    max-height: 180px;
    object-fit: contain;
    transition: var(--transition-normal);
}

.puppy-card:hover .puppy-card-image img {
    transform: scale(1.1);
}

.puppy-card-content {
    padding: 1.5rem;
    text-align: center;
}

.puppy-card-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.puppy-card-content p {
    font-size: 0.9rem;
    color: var(--medium-gray);
    margin-bottom: 1rem;
}

.btn-card {
    background: transparent;
    border: 2px solid var(--primary-pink);
    color: var(--primary-brown);
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-xl);
    font-size: 0.875rem;
    transition: var(--transition-normal);
}

.btn-card:hover {
    background: var(--primary-pink);
    color: var(--white);
}

/* Combo Banner */
.combo-banner {
    background: var(--primary-brown);
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
}

.combo-banner::before {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: rgba(255,255,255,0.1);
    border-radius: var(--radius-full);
    top: -50px;
    right: -50px;
}

.combo-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2rem;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.combo-icon {
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.2);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
}

.combo-text {
    flex: 1;
    min-width: 200px;
}

.combo-subtitle {
    display: block;
    color: var(--primary-peach);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.combo-text h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
}

.combo-text p {
    color: rgba(255,255,255,0.8);
    margin: 0;
    font-size: 0.9rem;
}

.btn-combo {
    background: var(--white);
    color: var(--primary-brown);
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-xl);
    transition: var(--transition-normal);
}

.btn-combo:hover {
    background: var(--primary-peach);
    color: var(--primary-dark-brown);
    transform: translateY(-2px);
}

/* ========================================
   News Section
======================================== */

.news-section {
    background: var(--white);
}

.news-header {
    padding-right: 2rem;
}

.news-header p {
    color: var(--medium-gray);
    margin-bottom: 1.5rem;
}

.news-card {
    background: var(--light-gray);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition-normal);
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.news-card-image {
    position: relative;
    height: 160px;
    overflow: hidden;
}

.news-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-date {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--white);
    color: var(--primary-dark-brown);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 700;
}

.news-card-content {
    padding: 1.25rem;
}

.news-card-content h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.news-card-content p {
    font-size: 0.875rem;
    color: var(--medium-gray);
    margin: 0;
}

/* ========================================
   Shop Info Section
======================================== */

.shop-info-section {
    background: var(--primary-brown);
    color: var(--white);
}

.shop-info-section .section-badge {
    background: rgba(255,255,255,0.2);
    color: var(--white);
}

.shop-info-section .section-title {
    color: var(--white);
}

.info-card {
    background: rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    padding: 2rem;
}

.info-icon {
    width: 60px;
    height: 60px;
    background: var(--accent-coral);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.info-card h3 {
    color: var(--white);
    margin-bottom: 1.5rem;
}

.info-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
}

.info-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.info-list li:last-child {
    border-bottom: none;
}

.info-list i {
    color: var(--primary-peach);
    width: 20px;
}

.info-note {
    display: flex;
    gap: 0.75rem;
    background: rgba(255,255,255,0.05);
    padding: 1rem;
    border-radius: var(--radius-md);
}

.info-note i {
    color: var(--primary-peach);
    flex-shrink: 0;
    margin-top: 2px;
}

.info-note p {
    margin: 0;
    font-size: 0.875rem;
    color: rgba(255,255,255,0.8);
}

.map-wrapper {
    position: relative;
    text-align: center;
}

.map-image {
    border-radius: var(--radius-lg);
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-lg);
}

/* ========================================
   Footer
======================================== */

.footer {
    background: var(--primary-dark-brown);
    color: var(--white);
    padding-top: 4rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.footer-brand .brand-icon {
    background: var(--accent-coral);
}

.footer-brand .brand-text {
    color: var(--white);
}

.footer-brand .brand-highlight {
    color: var(--primary-peach);
}

.footer-description {
    color: rgba(255,255,255,0.7);
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
}

.footer-social .social-link {
    background: rgba(255,255,255,0.1);
    color: var(--white);
}

.footer-social .social-link:hover {
    background: var(--accent-coral);
}

.footer-title {
    color: var(--white);
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--accent-coral);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 5px;
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: rgba(255,255,255,0.7);
}

.footer-contact i {
    color: var(--accent-coral);
    margin-top: 4px;
}

.footer-contact a {
    color: rgba(255,255,255,0.7);
}

.footer-contact a:hover {
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 1.5rem 0;
    margin-top: 3rem;
}

.copyright {
    margin: 0;
    font-size: 0.875rem;
    color: rgba(255,255,255,0.5);
}

.footer-bottom-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 1.5rem;
    justify-content: flex-end;
}

.footer-bottom-links a {
    color: rgba(255,255,255,0.5);
    font-size: 0.875rem;
}

.footer-bottom-links a:hover {
    color: var(--white);
}

/* ========================================
   Responsive Styles
======================================== */

@media (max-width: 991px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-image-wrapper {
        margin-top: 3rem;
    }
    
    .about-content {
        padding-left: 0;
        margin-top: 2rem;
    }
    
    .about-badge {
        right: 20px;
    }
    
    .combo-content {
        flex-direction: column;
        text-align: center;
    }
    
    .news-header {
        padding-right: 0;
        margin-bottom: 2rem;
        text-align: center;
    }
}

@media (max-width: 767px) {
    section {
        padding: 3rem 0;
    }
    
    .hero-section {
        min-height: auto;
        padding: 100px 0 80px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .floating-card {
        display: none;
    }
    
    .footer-bottom {
        text-align: center;
    }
    
    .footer-bottom-links {
        justify-content: center;
        margin-top: 1rem;
    }
}

/* ========================================
   Page Specific Styles
======================================== */

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--primary-cream) 0%, var(--primary-peach) 100%);
    padding: 140px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: var(--primary-pink);
    border-radius: var(--radius-full);
    opacity: 0.2;
    top: -100px;
    right: -100px;
}

.page-header-title {
    font-family: 'Pacifico', cursive;
    font-size: 3rem;
    font-weight: 400;
    color: var(--primary-dark-brown);
    margin-bottom: 0.5rem;
}

.page-header-subtitle {
    color: var(--primary-brown);
    font-size: 1.125rem;
}

/* Content Section */
.content-section {
    background: var(--white);
    padding: 4rem 0;
}

/* Card Styles */
.custom-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    transition: var(--transition-normal);
    height: 100%;
}

.custom-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

a.custom-card {
    color: inherit;
}

a.custom-card h4 {
    color: var(--black);
}

/* Form Styles */
.form-control-custom {
    border: 2px solid var(--light-gray);
    border-radius: var(--radius-md);
    padding: 0.75rem 1rem;
    font-size: 1rem;
    transition: var(--transition-normal);
}

.form-control-custom:focus {
    border-color: var(--primary-pink);
    box-shadow: 0 0 0 3px rgba(245, 181, 181, 0.2);
    outline: none;
}

.form-control-custom.is-invalid {
    border-color: var(--accent-coral);
    box-shadow: 0 0 0 3px rgba(232, 165, 152, 0.2);
}

.form-control-custom.is-invalid:focus {
    border-color: var(--accent-coral);
    box-shadow: 0 0 0 3px rgba(232, 165, 152, 0.3);
}

.invalid-feedback {
    color: var(--accent-coral);
    font-size: 0.875rem;
    margin-top: 0.25rem;
    display: none;
}

.form-control-custom.is-invalid ~ .invalid-feedback,
.was-validated .form-control-custom:invalid ~ .invalid-feedback {
    display: block;
}

.form-label-custom {
    font-weight: 600;
    color: var(--primary-dark-brown);
    margin-bottom: 0.5rem;
}

/* Testimonial Card */
.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-md);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    font-family: Georgia, serif;
    font-size: 4rem;
    color: var(--primary-pink);
    position: absolute;
    top: 10px;
    left: 20px;
    line-height: 1;
    opacity: 0.5;
}

.testimonial-content {
    padding-top: 1rem;
}

.testimonial-text {
    font-style: italic;
    color: var(--dark-gray);
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-full);
    object-fit: cover;
}

.testimonial-name {
    font-weight: 700;
    color: var(--primary-dark-brown);
    margin: 0;
}

.testimonial-date {
    font-size: 0.875rem;
    color: var(--medium-gray);
    margin: 0;
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    position: relative;
}

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.3);
    opacity: 0;
    transition: var(--transition-normal);
}

.gallery-item:hover::after {
    opacity: 1;
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: var(--transition-normal);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
}

/* Puppy Detail Card */
.puppy-detail-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.puppy-detail-image {
    height: 300px;
    background: var(--gradient-pink);
    display: flex;
    align-items: center;
    justify-content: center;
}

.puppy-detail-image img {
    max-height: 280px;
    object-fit: contain;
}

.puppy-detail-content {
    padding: 2rem;
}

.puppy-status {
    display: inline-block;
    background: var(--accent-green);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-xl);
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.puppy-breed {
    color: var(--medium-gray);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.puppy-name {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.puppy-info-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
}

.puppy-info-list li {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--light-gray);
}

.puppy-info-list li:last-child {
    border-bottom: none;
}

.puppy-info-label {
    color: var(--medium-gray);
}

.puppy-info-value {
    font-weight: 600;
    color: var(--primary-dark-brown);
}
