* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    height: 100%;
    overflow-x: hidden;
}

:root {
    --primary-blue: #1E3A5F;
    --beige-bg: #F5F0E8;
    --beige-light: #E8E0D6;
    --dark-brown: #5A4A3A;
    --white: #FFFFFF;
    --text-dark: #2C2C2C;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Top Bar */
.top-bar {
    background-color: var(--beige-bg);
    padding: 10px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 99;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    font-weight: 500;
    color: var(--dark-brown);
}

.location-link {
    display: flex;
    align-items: center;
    gap: 8px;
}

.location-icon {
    width: 16px;
    height: 16px;
    color: var(--dark-brown);
}

.top-bar-reviews {
    display: flex;
    align-items: center;
    gap: 16px;
}

.review-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: opacity 0.2s;
}

.review-link:hover {
    opacity: 0.8;
}

.review-logo {
    height: 24px;
    width: auto;
    display: block;
}

.top-bar-contact {
    display: flex;
    align-items: center;
    gap: 20px;
}

.phone-number a,
.email-address a {
    color: var(--dark-brown);
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.2s;
}

.phone-number a:hover,
.email-address a:hover {
    opacity: 0.7;
}

/* Main Header */
.main-header {
    background-color: var(--white);
    padding: 20px 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 100;
}

/* Hide menu close button on desktop */
.menu-close-btn {
    display: none;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-icon {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
    object-fit: contain;
}

.logo-text {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-blue);
    letter-spacing: 0.5px;
}

.main-nav {
    display: flex;
    gap: 30px;
    align-items: center;
    flex: 1;
    justify-content: center;
}

.nav-link {
    color: var(--primary-blue);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.3px;
    transition: opacity 0.2s;
    white-space: nowrap;
}

.nav-link:hover {
    opacity: 0.7;
}

/* Navigation Dropdown */
.nav-dropdown {
    position: relative;
}

.nav-dropdown .nav-link {
    cursor: pointer;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    min-width: 180px;
    padding: 8px 0;
    margin-top: 8px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s, visibility 0.2s, transform 0.2s;
    transform: translateX(-50%) translateY(-10px);
    z-index: 1000;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-item {
    display: block;
    padding: 12px 20px;
    color: var(--text-dark);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: background-color 0.2s;
    white-space: nowrap;
}

.dropdown-item:hover {
    background-color: var(--beige-bg);
    color: var(--primary-blue);
}

/* Hero Split Section */
.hero-split {
    display: flex;
    width: 100vw;
    height: 100vh;
    margin: 0;
    padding: 0;
}

.hero-section {
    position: relative;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    cursor: pointer;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    transition: transform 0.4s ease;
}

.hero-section:hover .hero-bg {
    transform: scale(1.05);
}

.hero-section-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    transition: background 0.4s ease;
    z-index: 1;
}

.hero-section:hover .hero-section-overlay {
    background: rgba(0, 0, 0, 0.25);
}

.hero-section-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Base Hero Button Style */
.btn-hero {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 28px 50px 24px;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 1px;
    text-decoration: none;
    border-radius: 24px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    border: none;
    outline: none;
    text-transform: none;
}

.btn-hero .btn-icon {
    width: 40px;
    height: 40px;
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
}

.btn-hero .btn-lottie-icon {
    width: 130px;
    height: 130px;
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
}

.hero-section:hover .btn-icon,
.hero-section:hover .btn-lottie-icon {
    transform: scale(1.1);
}

.btn-hero .btn-text {
    position: relative;
    z-index: 2;
}

/* Button Shine Effect */
.btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.4),
        transparent
    );
    z-index: 1;
    transition: none;
}

.hero-section:hover .btn-shine {
    animation: shine 0.8s ease-in-out;
}

@keyframes shine {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

/* Boarding Button */
.btn-boarding {
    background: linear-gradient(135deg, #1E3A5F 0%, #2D5A87 100%);
    color: #fff;
    box-shadow: 0 6px 25px rgba(30, 58, 95, 0.5);
}

.hero-boarding:hover .btn-boarding {
    transform: translateY(-6px) scale(1.08);
    box-shadow: 0 12px 40px rgba(30, 58, 95, 0.7);
    background: linear-gradient(135deg, #2D5A87 0%, #3D7AB7 100%);
}

/* Daycare Button */
.btn-daycare {
    background: linear-gradient(135deg, #F59E0B 0%, #FBBF24 100%);
    color: #1E3A5F;
    box-shadow: 0 6px 25px rgba(245, 158, 11, 0.5);
}

.hero-daycare:hover .btn-daycare {
    transform: translateY(-6px) scale(1.08);
    box-shadow: 0 12px 40px rgba(245, 158, 11, 0.7);
    background: linear-gradient(135deg, #FBBF24 0%, #FCD34D 100%);
}

/* Hero Split Responsive */
@media (max-width: 768px) {
    .hero-split {
        flex-direction: column;
    }
    
    .hero-section {
        min-height: 50vh;
    }
    
    .btn-hero {
        padding: 24px 40px 20px;
        font-size: 20px;
        letter-spacing: 0.5px;
        border-radius: 20px;
    }
    
    .btn-hero .btn-lottie-icon {
        width: 100px;
        height: 100px;
    }
}

@media (max-width: 480px) {
    .btn-hero {
        padding: 20px 32px 16px;
        font-size: 18px;
        letter-spacing: 0.5px;
        border-radius: 18px;
    }
    
    .btn-hero .btn-lottie-icon {
        width: 85px;
        height: 85px;
    }
}

    .daycare-title {
        text-align: center;
        color: var(--primary-blue);
        font-size: 36px;
        font-weight: 700;
        margin-bottom: 40px;
        letter-spacing: -0.5px;
    }

    .package-title {
        text-align: center;
        color: var(--primary-blue);
        font-size: 28px;
        font-weight: 600;
        margin-bottom: 40px;
        letter-spacing: -0.3px;
    }

    .package-list {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .package-item {
        margin-bottom: 16px;
        background-color: var(--beige-bg);
        border-radius: 12px;
        overflow: hidden;
        transition: box-shadow 0.3s;
    }

    .package-item.active {
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }

    .package-header {
        display: flex;
        align-items: center;
        gap: 16px;
        padding: 20px 24px;
        width: 100%;
        background: none;
        border: none;
        text-align: left;
        cursor: pointer;
        transition: background-color 0.2s;
    }

    .package-header:hover {
        background-color: rgba(30, 58, 95, 0.05);
    }

    .package-icon {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 32px;
        height: 32px;
        background-color: var(--primary-blue);
        color: var(--white);
        border-radius: 50%;
        font-size: 18px;
        font-weight: 700;
        flex-shrink: 0;
    }

    .package-text {
        flex: 1;
        font-size: 18px;
        color: var(--text-dark);
        font-weight: 500;
        line-height: 1.5;
    }

    .package-arrow {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 24px;
        height: 24px;
        color: var(--primary-blue);
        font-size: 14px;
        transition: transform 0.3s ease;
        flex-shrink: 0;
    }

    .package-details {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease, padding 0.3s ease;
        padding: 0 24px;
    }

    .package-item.active .package-details {
        padding: 0 24px 20px 24px;
    }

    .package-details p {
        font-size: 16px;
        color: var(--text-dark);
        line-height: 1.7;
        margin: 0;
        padding-top: 12px;
    }

    /* Testimonials Section */
    .testimonials-section {
        height: auto;
        min-height: 400px;
        padding: 40px 0;
        background-color: var(--beige-bg);
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .testimonials-section .container {
        height: auto;
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 20px 0;
        max-width: 100%;
        width: 100%;
    }

    .testimonials-title {
        text-align: center;
        color: var(--primary-blue);
        font-size: 36px;
        font-weight: 700;
        margin-bottom: 20px;
        letter-spacing: -0.5px;
        flex-shrink: 0;
        padding: 0 20px;
    }

    .testimonials-container {
        position: relative;
        overflow: hidden;
        padding: 0;
        cursor: grab;
        flex: 1;
        display: flex;
        align-items: center;
        width: 100%;
    }

    .testimonials-container:active {
        cursor: grabbing;
    }

    .testimonials-track {
        display: flex;
        gap: 30px;
        will-change: transform;
    }

    .testimonial-item {
        flex: 0 0 320px;
        min-width: 320px;
    }

    .testimonial-content {
        background-color: var(--white);
        padding: 30px;
        border-radius: 12px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        height: 100%;
        display: flex;
        flex-direction: column;
        transition: transform 0.2s, box-shadow 0.2s;
    }

    .testimonial-content:hover {
        transform: translateY(-4px);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    }

    .testimonial-stars {
        font-size: 18px;
        color: #FBBF24;
        margin-bottom: 12px;
        letter-spacing: 2px;
    }

    .testimonial-text {
        font-size: 16px;
        line-height: 1.7;
        color: var(--text-dark);
        margin-bottom: 20px;
        flex: 1;
    }

    .testimonial-author {
        font-size: 14px;
        font-weight: 600;
        color: var(--primary-blue);
        margin: 0 0 4px 0;
        text-align: right;
    }

    .testimonial-location {
        font-size: 12px;
        color: #6B7280;
        margin: 0;
        text-align: right;
        font-weight: 400;
    }

    /* Why We're Better Section */
    .why-section {
        padding: 100px 0;
        background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
    }

    .why-title {
        text-align: center;
        color: var(--primary-blue);
        font-size: 42px;
        font-weight: 700;
        margin-bottom: 16px;
    }

    .why-subtitle {
        text-align: center;
        color: var(--text-dark);
        font-size: 20px;
        margin-bottom: 60px;
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
        opacity: 0.8;
    }

    .why-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
        margin-bottom: 60px;
    }

    .why-item {
        background: var(--white);
        padding: 40px 32px;
        border-radius: 16px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .why-item:hover {
        transform: translateY(-4px);
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    }

    .why-icon {
        font-size: 48px;
        margin-bottom: 20px;
        display: block;
    }

    .why-item-title {
        color: var(--primary-blue);
        font-size: 22px;
        font-weight: 600;
        margin-bottom: 16px;
    }

    .why-item-text {
        color: var(--text-dark);
        font-size: 16px;
        line-height: 1.7;
        opacity: 0.85;
    }

    .why-cta {
        text-align: center;
        padding: 50px 0;
        background: var(--white);
        border-radius: 16px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    }

    .why-cta-text {
        color: var(--text-dark);
        font-size: 20px;
        font-weight: 500;
        margin-bottom: 30px;
    }

    .btn-register-dog {
        display: inline-block;
        background-color: var(--primary-blue);
        color: var(--white);
        padding: 18px 48px;
        font-size: 18px;
        font-weight: 600;
        text-decoration: none;
        border-radius: 8px;
        transition: all 0.3s ease;
        letter-spacing: 0.5px;
        box-shadow: 0 4px 15px rgba(30, 58, 95, 0.3);
        border: none;
        cursor: pointer;
    }

    .btn-register-dog:hover {
        background-color: #152A47;
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(30, 58, 95, 0.4);
    }

    .btn-register-dog:active {
        transform: translateY(0);
        box-shadow: 0 2px 10px rgba(30, 58, 95, 0.3);
    }

/* Responsive Design */
@media (max-width: 1024px) {
    .main-nav {
        gap: 20px;
    }

    .nav-link {
        font-size: 13px;
    }
}

/* Hamburger Menu */
.hamburger-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
    position: relative;
}

.hamburger-menu span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--primary-blue);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Hamburger menu no longer transforms to X - close button is in menu */

@media (max-width: 768px) {
    .header-content {
        flex-wrap: nowrap;
        gap: 15px;
    }

    .hamburger-menu {
        display: flex;
    }

    /* Hide hamburger when menu is open */
    body.menu-open .hamburger-menu {
        display: none;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background-color: var(--white);
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
        flex-direction: column;
        align-items: flex-start;
        padding: 0;
        gap: 0;
        transition: right 0.3s ease;
        z-index: 1000;
        overflow-y: auto;
        order: unset;
        justify-content: flex-start;
    }

    .menu-close-btn {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        width: 100%;
        padding: 20px;
        background: none;
        border: none;
        border-bottom: 1px solid var(--beige-light);
        cursor: pointer;
        color: var(--primary-blue);
        transition: background-color 0.2s;
        position: sticky;
        top: 0;
        background-color: var(--white);
        z-index: 1;
    }

    .menu-close-btn:hover {
        background-color: var(--beige-bg);
    }

    .menu-close-btn svg {
        width: 28px;
        height: 28px;
        stroke-width: 2.5;
    }

    .main-nav.active {
        right: 0;
    }

    .main-nav-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background-color: rgba(0, 0, 0, 0.5);
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
        z-index: 999;
    }

    .main-nav-overlay.active {
        opacity: 1;
        visibility: visible;
    }

    .nav-link {
        display: block;
        width: 100%;
        padding: 16px 20px;
        border-bottom: 1px solid var(--beige-light);
        font-size: 16px;
    }

    .nav-link:last-child {
        border-bottom: none;
    }

    .nav-dropdown {
        width: 100%;
    }

    .nav-dropdown .nav-link {
        border-bottom: 1px solid var(--beige-light);
    }

    .dropdown-menu {
        position: static;
        transform: none;
        margin-top: 0;
        margin-left: 20px;
        opacity: 1;
        visibility: visible;
        box-shadow: none;
        border-top: none;
        border-left: 2px solid var(--beige-light);
        border-radius: 0;
        padding: 8px 0 8px 12px;
        min-width: auto;
        width: calc(100% - 20px);
    }

    .nav-dropdown:hover .dropdown-menu {
        transform: none;
    }

    .dropdown-item {
        padding: 12px 0;
        font-size: 15px;
    }

    .top-bar-content {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
    
    .top-bar-reviews {
        order: 2;
    }
    
    .top-bar-contact {
        flex-direction: column;
        gap: 8px;
        order: 3;
    }
}

@media (max-width: 480px) {
    .logo-text {
        font-size: 16px;
    }

    .btn-register-dog {
        padding: 16px 40px;
        font-size: 17px;
        width: 100%;
        max-width: 320px;
    }

    .daycare-title {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .package-title {
        font-size: 24px;
        margin-bottom: 30px;
    }

    .package-header {
        padding: 16px 20px;
        gap: 12px;
    }

    .package-item {
        margin-bottom: 12px;
    }

    .package-text {
        font-size: 16px;
    }

    .package-details {
        padding-left: 20px;
        padding-right: 20px;
    }

    .package-item.active .package-details {
        padding-left: 20px;
        padding-right: 20px;
        padding-bottom: 16px;
    }

    .package-details p {
        font-size: 15px;
    }

    .testimonials-section {
        padding: 60px 0;
    }

    .testimonials-title {
        font-size: 28px;
        margin-bottom: 40px;
    }

    /* Why Section Responsive */
    @media (max-width: 1024px) {
        .why-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
        }
    }

    @media (max-width: 768px) {
        .why-section {
            padding: 60px 0;
        }

        .why-title {
            font-size: 32px;
        }

        .why-subtitle {
            font-size: 18px;
            margin-bottom: 40px;
        }

        .why-grid {
            grid-template-columns: 1fr;
            gap: 24px;
            margin-bottom: 40px;
        }

        .why-item {
            padding: 32px 24px;
        }

        .why-icon {
            font-size: 40px;
            margin-bottom: 16px;
        }

        .why-item-title {
            font-size: 20px;
        }

        .why-item-text {
            font-size: 15px;
        }

        .why-cta {
            padding: 40px 20px;
        }

        .why-cta-text {
            font-size: 18px;
        }
    }

    .testimonial-item {
        flex: 0 0 280px;
        min-width: 280px;
    }

    .testimonial-content {
        padding: 24px;
    }

    .testimonial-stars {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .testimonial-text {
        font-size: 15px;
    }

    .testimonial-location {
        font-size: 11px;
    }
}

/* Register Page Styles */
.register-page {
    min-height: calc(100vh - 200px);
    padding: 60px 0;
    background-color: var(--beige-bg);
}

@media (max-width: 768px) {
    .register-page {
        padding: 40px 0;
    }
}

/* Luxury Boarding Page Styles */
/* Promotional Banner */
.promo-banner {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #2a4a7a 100%);
    color: var(--white);
    padding: 16px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 10000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.promo-banner.hidden {
    transform: translateY(-100%);
    opacity: 0;
    max-height: 0;
    padding: 0;
    overflow: hidden;
}

.promo-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    position: relative;
}

.promo-banner-text {
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    line-height: 1.5;
}

.promo-banner-text strong {
    font-weight: 700;
    color: #FFD700;
}

.promo-banner-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: var(--white);
    font-size: 24px;
    font-weight: 300;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s ease;
    flex-shrink: 0;
    line-height: 1;
    padding: 0;
}

.promo-banner-close:hover {
    background: rgba(255, 255, 255, 0.3);
}

.luxury-boarding-page {
    min-height: calc(100vh - 200px);
    padding: 60px 0;
    background-color: var(--beige-bg);
}

.luxury-boarding-content {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--white);
    border-radius: 12px;
    padding: 50px 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.luxury-boarding-title {
    color: var(--primary-blue);
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 40px;
    text-align: center;
    letter-spacing: -0.5px;
}

.capacity-notice {
    text-align: center;
    padding: 40px 20px;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.05) 0%, rgba(245, 158, 11, 0.02) 100%);
    border-radius: 12px;
    border: 2px solid rgba(245, 158, 11, 0.2);
    margin-bottom: 40px;
}

.capacity-icon {
    margin-bottom: 24px;
    display: flex;
    justify-content: center;
}

.capacity-title {
    color: #F59E0B;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -0.3px;
}

.capacity-message {
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 12px;
    line-height: 1.6;
}

.capacity-message .discount-highlight {
    font-weight: 700;
    font-size: 22px;
    color: var(--primary-blue);
    background: linear-gradient(135deg, rgba(30, 58, 95, 0.1) 0%, rgba(30, 58, 95, 0.05) 100%);
    padding: 2px 6px;
    border-radius: 4px;
}

.capacity-submessage {
    font-size: 16px;
    color: #6c757d;
    margin-bottom: 32px;
    line-height: 1.6;
}

.capacity-submessage a {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
    transition: opacity 0.2s;
}

.capacity-submessage a:hover {
    opacity: 0.7;
}

.capacity-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-return-home,
.btn-register-waitlist {
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    display: inline-block;
    letter-spacing: 0.3px;
}

.btn-return-home {
    background-color: transparent;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
}

.btn-return-home:hover {
    background-color: var(--primary-blue);
    color: var(--white);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(30, 58, 95, 0.3);
}

.btn-register-waitlist {
    background-color: var(--primary-blue);
    color: var(--white);
    border: 2px solid var(--primary-blue);
}

.btn-register-waitlist:hover {
    background-color: #152A47;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(30, 58, 95, 0.3);
}

.luxury-boarding-info {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid var(--beige-light);
}

.luxury-boarding-info h2 {
    color: var(--primary-blue);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -0.3px;
}

.luxury-boarding-info p {
    font-size: 16px;
    color: var(--text-dark);
    line-height: 1.7;
}

@media (max-width: 768px) {
    .promo-banner-content {
        padding: 0 16px;
        flex-wrap: wrap;
    }

    .promo-banner-text {
        font-size: 14px;
        flex: 1;
        min-width: 0;
    }

    .promo-banner-close {
        width: 28px;
        height: 28px;
        font-size: 20px;
    }

    .luxury-boarding-page {
        padding: 40px 0;
    }

    .luxury-boarding-content {
        padding: 30px 20px;
        margin: 0 20px;
    }

    .luxury-boarding-title {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .capacity-notice {
        padding: 30px 16px;
    }

    .capacity-title {
        font-size: 24px;
    }

    .capacity-message {
        font-size: 16px;
    }

    .capacity-submessage {
        font-size: 15px;
    }

    .capacity-actions {
        flex-direction: column;
    }

    .btn-return-home,
    .btn-register-waitlist {
        width: 100%;
    }

    .luxury-boarding-info h2 {
        font-size: 20px;
    }

    .luxury-boarding-info p {
        font-size: 15px;
    }
}

/* Meet the Owners Page */
.meet-owners-page {
    min-height: calc(100vh - 200px);
    padding: 80px 0;
    background-color: var(--beige-bg);
}

.meet-owners-title {
    color: var(--primary-blue);
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 60px;
    text-align: center;
    letter-spacing: -0.5px;
}

.owners-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.owner-card {
    background-color: var(--white);
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.owner-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.owner-image-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 30px;
}

.owner-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.owner-name {
    color: var(--primary-blue);
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.owner-bio {
    font-size: 16px;
    color: var(--text-dark);
    line-height: 1.8;
    opacity: 0.9;
}

/* Doggie Daycare Page */
.daycare-page {
    min-height: calc(100vh - 200px);
    padding: 60px 24px;
    background-color: var(--beige-bg);
}

.daycare-page .container {
    max-width: 100%;
    padding: 0;
}

.daycare-page .daycare-title {
    color: var(--primary-blue);
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 40px;
    text-align: center;
    letter-spacing: -0.5px;
}

.package-disclaimer {
    text-align: center;
    font-size: 14px;
    color: #6B7280;
    margin: -12px 0 24px 0;
}

.daycare-packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    width: 100%;
    align-items: stretch;
}

/* Luxury Boarding packages reuse daycare cards, full width layout */
.boarding-packages-section {
    background-color: var(--beige-bg);
    padding: 60px 24px;
}

.boarding-packages-section .container {
    max-width: 100%;
    width: 100%;
    padding: 0;
}

.boarding-packages-section .daycare-packages-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
}

@media (max-width: 900px) {
    .boarding-packages-section .daycare-packages-grid {
        grid-template-columns: 1fr;
    }
}

.daycare-page .package-card {
    background-color: #ffffff;
    border-radius: 16px;
    padding: 40px 30px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    border: 1px solid #e0e0e0;
    position: relative;
    overflow: hidden;
}

.daycare-page .package-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.2);
}

.daycare-page .package-card.premium {
    border-top: 4px solid #D4AF37;
    overflow: visible;
    padding-top: 50px;
}

.daycare-page .premium-header {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #FFD700 0%, #D4AF37 50%, #B8860B 100%);
    color: #1a1a1a;
    text-align: center;
    padding: 6px 24px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.4);
    z-index: 10;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    min-width: 120px;
}


.daycare-page .package-price-tag {
    text-align: center;
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 8px;
}

.daycare-page .package-price-tag span {
    font-size: 20px;
    font-weight: 500;
    color: #6B7280;
}

.daycare-page .package-title {
    text-align: center;
    color: var(--text-dark);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--beige-light);
}

.daycare-page .package-list {
    flex: 1;
}

.daycare-register-cta {
    text-align: center;
    margin-top: 50px;
    padding: 20px 0;
}

.daycare-register-cta .btn-register-dog {
    padding: 20px 60px;
    font-size: 20px;
}

@media (max-width: 1024px) {
    .daycare-packages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .daycare-page {
        padding: 40px 0;
    }

    .daycare-packages-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .daycare-page .package-card {
        padding: 30px 20px;
    }

    .daycare-page .package-card.premium {
        padding-top: 45px;
    }

    .daycare-page .premium-header {
        padding: 6px 20px;
        font-size: 11px;
        letter-spacing: 1px;
        min-width: 100px;
    }

    .daycare-page .daycare-title {
        font-size: 28px;
        margin-bottom: 30px;
        padding: 0 20px;
    }

    .daycare-page .package-price-tag {
        font-size: 40px;
    }

    .daycare-page .package-price-tag span {
        font-size: 16px;
    }

    .daycare-page .package-title {
        font-size: 18px;
        margin-bottom: 20px;
        padding-bottom: 16px;
    }

    .daycare-page .package-header {
        padding: 16px 20px;
        gap: 12px;
    }

    .daycare-page .package-item {
        margin-bottom: 12px;
    }

    .daycare-page .package-text {
        font-size: 16px;
    }

    .daycare-page .package-details {
        padding-left: 20px;
        padding-right: 20px;
    }

    .daycare-page .package-item.active .package-details {
        padding-left: 20px;
        padding-right: 20px;
        padding-bottom: 16px;
    }

    .daycare-page .package-details p {
        font-size: 15px;
    }

    .daycare-register-cta {
        margin-top: 30px;
    }

    .daycare-register-cta .btn-register-dog {
        padding: 18px 50px;
        font-size: 18px;
        max-width: none;
        width: auto;
    }

    .meet-owners-page {
        padding: 60px 0;
    }

    .meet-owners-title {
        font-size: 32px;
        margin-bottom: 40px;
    }

    .owners-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 20px;
    }

    .owner-card {
        padding: 30px 24px;
    }

    .owner-image-container {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-bottom: 24px;
    }

    .owner-image {
        height: 200px;
    }

    .owner-name {
        font-size: 24px;
        margin-bottom: 16px;
    }

    .owner-bio {
        font-size: 15px;
    }
}

/* Footer Styles */
.main-footer {
    background-color: var(--primary-blue);
    color: var(--white);
    padding: 60px 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 60px;
    padding-bottom: 40px;
}

.footer-logo-section {
    display: flex;
    align-items: flex-start;
}

.footer-logo-container {
    background-color: var(--beige-bg);
    border-radius: 12px;
    padding: 20px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    min-width: 180px;
}

.footer-logo {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.footer-logo-text {
    text-align: center;
}

.footer-logo-name {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-blue);
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.footer-logo-tagline {
    font-size: 11px;
    font-weight: 400;
    color: var(--primary-blue);
    letter-spacing: 0.3px;
    opacity: 0.8;
}

.footer-nav {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.footer-nav-column {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-nav-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.5px;
    margin: 0;
    text-transform: uppercase;
}

.footer-nav-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-nav-links li {
    margin: 0;
}

.footer-nav-links a {
    font-size: 14px;
    color: var(--white);
    text-decoration: none;
    opacity: 0.85;
    transition: opacity 0.2s;
    font-weight: 400;
}

.footer-nav-links a:hover {
    opacity: 1;
    text-decoration: underline;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: flex-end;
}

.footer-social {
    display: flex;
    gap: 16px;
    align-items: center;
}

.social-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: opacity 0.2s;
}

.social-icon:hover {
    opacity: 0.7;
}

.social-icon svg {
    width: 24px;
    height: 24px;
}

.footer-address {
    text-align: right;
}

.footer-contact-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.5px;
    margin: 0 0 12px 0;
    text-transform: uppercase;
}

.footer-address-text {
    font-size: 14px;
    color: var(--white);
    opacity: 0.85;
    line-height: 1.6;
    margin: 0 0 8px 0;
}

.footer-phone {
    margin: 0;
}

.footer-phone a {
    font-size: 14px;
    color: var(--white);
    text-decoration: none;
    opacity: 0.85;
    transition: opacity 0.2s;
    font-weight: 400;
}

.footer-phone a:hover {
    opacity: 1;
    text-decoration: underline;
}

.footer-bottom {
    background-color: var(--beige-bg);
    padding: 16px 0;
    border-top: 1px solid rgba(30, 58, 95, 0.1);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-copyright {
    font-size: 13px;
    color: var(--text-dark);
    margin: 0;
    opacity: 0.7;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-bottom-links a {
    font-size: 13px;
    color: var(--text-dark);
    text-decoration: underline;
    opacity: 0.7;
    transition: opacity 0.2s;
}

.footer-bottom-links a:hover {
    opacity: 1;
}

.footer-link-separator {
    font-size: 13px;
    color: var(--text-dark);
    opacity: 0.5;
}

/* Footer Responsive */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr 1.5fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .main-footer {
        padding: 40px 0 0;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        padding-bottom: 30px;
    }

    .footer-logo-container {
        align-self: flex-start;
    }

    .footer-nav {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-contact {
        align-items: flex-start;
    }

    .footer-address {
        text-align: left;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }

    .footer-bottom-links {
        justify-content: center;
        flex-wrap: wrap;
    }
}

/* Contact Page Styles */
.contact-page {
    min-height: calc(100vh - 200px);
    padding: 60px 0;
    background-color: var(--beige-bg);
}

.contact-content {
    max-width: 700px;
    margin: 0 auto;
    background-color: var(--white);
    border-radius: 12px;
    padding: 50px 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.contact-title {
    color: var(--primary-blue);
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.contact-intro {
    font-size: 16px;
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 40px;
    opacity: 0.8;
}

.contact-buttons {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 500px;
    margin: 0 auto;
}

.contact-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 32px 24px;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.contact-btn span:first-of-type {
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.5px;
}

.contact-btn-detail {
    font-size: 16px;
    color: var(--white);
    opacity: 0.9;
    font-weight: 400;
}

.contact-btn-email {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #2a4a7a 100%);
    color: var(--white);
}

.contact-btn-email:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(30, 58, 95, 0.4);
    border-color: var(--primary-blue);
}


.contact-btn-phone {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    color: var(--white);
}

.contact-btn-phone:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
    border-color: #10B981;
}


@media (max-width: 768px) {
    .contact-page {
        padding: 40px 0;
    }

    .contact-content {
        padding: 30px 20px;
        margin: 0 20px;
    }

    .contact-title {
        font-size: 28px;
        margin-bottom: 12px;
    }

    .contact-intro {
        font-size: 15px;
        margin-bottom: 30px;
    }

    .contact-buttons {
        gap: 16px;
    }

    .contact-btn {
        padding: 24px 20px;
    }

    .contact-btn span:first-of-type {
        font-size: 18px;
    }

    .contact-btn-detail {
        font-size: 14px;
    }
}

