:root {
    --primary: #8B4513;
    --primary-dark: #6B3410;
    --primary-light: #A0522D;
    --secondary: #4CAF50;
    --secondary-dark: #388E3C;
    --accent: #F59E0B;
    --accent-dark: #D97706;
    --bg: #FFFDF7;
    --bg-light: #FFF8EE;
    --card-bg: #FFFFFF;
    --sand: #FDF6E3;
    --text-body: #2D2D2D;
    --text-muted: #6B7280;
    --text-light: #9CA3AF;
    --border: #E8DCC8;
    --shadow-sm: 0 2px 8px rgba(139,69,19,0.08);
    --shadow-md: 0 8px 24px rgba(139,69,19,0.12);
    --shadow-lg: 0 20px 48px rgba(139,69,19,0.16);
    --radius-sm: 8px;
    --radius: 16px;
    --radius-lg: 24px;
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Inter', sans-serif;
    --green-main: #4CAF50;
    --green-mid: #388E3C;
    --green-dark: #2E7D32;
    --green-pale: rgba(76,175,80,0.08);
    --charcoal: #2D2D2D;
    --earth: #8B4513;
    --transition: 0.3s ease;
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg);
    color: var(--text-body);
    font-family: var(--font-sans);
    line-height: 1.6;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--sand);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-light);
    border-radius: 5px;
}

    ::-webkit-scrollbar-thumb:hover {
        background: var(--primary);
    }

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    color: var(--primary);
    margin-bottom: 0.5em;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

/* Container */
.container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 15px;
}

/* ══════════════════════════════════════════════════════
   NAVBAR
   ══════════════════════════════════════════════════════ */
.site-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 253, 247, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 15px 0;
    transition: var(--transition);
    border-bottom: 1px solid var(--border);
}

    .site-nav.scrolled {
        background: #ffffff;
        box-shadow: var(--shadow-md);
    }

/* FIX: nav-container is now the positioning context for the mobile
   dropdown. Everything absolute inside the collapse menu anchors to
   THIS box, not to .site-nav (which has its own padding and would
   otherwise cause the dropdown to misalign/oversize). */
.nav-container {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-brand {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 2;
}

.brand-text {
    color: var(--primary);
}

.navbar-nav {
    display: flex;
    list-style: none;
    gap: 20px;
    align-items: center;
}

    .navbar-nav .nav-item {
        display: flex;
    }

/* Desktop / tablet-landscape: single horizontal row.
   position: static explicitly overrides the mobile "absolute"
   version so nothing lingers between breakpoints. */
.navbar-collapse {
    display: flex;
    position: static;
    flex: 1;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    gap: 30px;
}

/* HARD DESKTOP LOCK (fix): some environments load a second/duplicate
   navbar rule (e.g. Bootstrap's own .navbar-expand-lg .collapse CSS,
   or a leftover mobile rule from another stylesheet) that has equal
   or higher specificity and forces the collapse menu into a column
   even above the 992px breakpoint. This min-width query re-asserts
   the desktop layout with !important so nothing else can override it,
   regardless of load order or source. Purely a safety net — it does
   not change how the navbar looks, only guarantees the row layout. */
@media (min-width: 992px) {
    .navbar-collapse {
        display: flex !important;
        position: static !important;
        flex-direction: row !important;
        justify-content: flex-end !important;
        align-items: center !important;
        width: auto !important;
        max-width: none !important;
        height: auto !important;
        max-height: none !important;
        background: transparent !important;
        box-shadow: none !important;
        border: none !important;
        padding: 0 !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        pointer-events: auto !important;
        overflow: visible !important;
    }

    .navbar-nav {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        width: auto !important;
        gap: 20px !important;
    }

        .navbar-nav .nav-item {
            width: auto !important;
        }

    .nav-link {
        width: auto !important;
        padding: 4px 0 !important;
    }

    .nav-cta {
        width: auto !important;
        margin-top: 0 !important;
    }

    .navbar-toggler {
        display: none !important;
    }
}

.nav-link {
    color: var(--text-body);
    font-weight: 500;
    transition: var(--transition);
    display: inline-block;
    padding: 4px 0;
}

    .nav-link:hover {
        color: var(--primary);
    }

    .nav-link.active {
        color: var(--primary);
        font-weight: 600;
    }

.nav-cta {
    background: var(--green-main);
    color: #ffffff !important;
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    white-space: nowrap;
}

    .nav-cta:hover {
        background: var(--green-dark);
    }

.navbar-toggler {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary);
    cursor: pointer;
    z-index: 2;
    line-height: 1;
    padding: 4px;
}

/* Hero */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    color: #ffffff;
}

.hero-title {
    font-size: 4rem;
    color: #ffffff;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
    text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}

.hero-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: #ffffff;
    cursor: pointer;
    text-align: center;
    z-index: 2;
}

/* Buttons */
.btn-primary-farm {
    background: var(--primary);
    color: #ffffff;
    padding: 12px 24px;
    border-radius: var(--radius-sm);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    border: none;
    cursor: pointer;
}

    .btn-primary-farm:hover {
        background: var(--primary-dark);
        color: #ffffff;
    }

.btn-outline-farm {
    background: transparent;
    color: #ffffff;
    padding: 12px 24px;
    border-radius: var(--radius-sm);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    border: 2px solid #ffffff;
    cursor: pointer;
}

    .btn-outline-farm:hover {
        background: #ffffff;
        color: var(--primary);
    }

/* Section Utilities */
.section-py {
    padding: 80px 0;
}

.section-header-center {
    text-align: center;
    margin-bottom: 50px;
}

.section-label {
    display: inline-block;
    padding: 5px 15px;
    background: var(--sand);
    color: var(--primary);
    border-radius: var(--radius);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.section-title {
    font-size: 2.5rem;
    color: var(--primary);
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* Stats Bar */
.stats-bar {
    background: var(--bg-light);
    padding: 40px 0;
    border-bottom: 1px solid var(--border);
}

.stats-bar-inner {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
    text-align: center;
}

.stat-item {
    flex: 1;
    min-width: 200px;
}

.stat-num {
    font-size: 2.5rem;
    font-family: var(--font-serif);
    color: var(--primary);
    font-weight: bold;
}

.stat-lbl {
    color: var(--text-muted);
    font-weight: 500;
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-img-wrap {
    position: relative;
}

.about-img-main {
    width: 100%;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
}

.about-img-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--primary);
    color: #fff;
    padding: 20px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow-md);
}

    .about-img-badge .num {
        font-size: 1.5rem;
        font-weight: bold;
    }

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin: 30px 0;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-body);
}

    .about-feature i {
        color: var(--green-main);
    }

/* Highlights */
.highlights-section {
    background: var(--sand);
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.highlight-card {
    background: var(--card-bg);
    padding: 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    text-align: center;
}

    .highlight-card:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow-md);
    }

.highlight-icon {
    font-size: 2.5rem;
    color: var(--green-main);
    margin-bottom: 20px;
}

.highlight-title {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    color: var(--primary);
    margin-bottom: 10px;
    font-weight: bold;
}

.highlight-text {
    color: var(--text-muted);
}

/* Amenities */
.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
}

.amenity-card {
    background: var(--card-bg);
    padding: 20px;
    border-radius: var(--radius-sm);
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: var(--transition);
}

    .amenity-card:hover {
        box-shadow: var(--shadow-md);
        transform: translateY(-3px);
    }

.amenity-icon {
    font-size: 2rem;
    color: var(--green-main);
    margin-bottom: 10px;
    display: block;
}

.amenity-name {
    font-weight: 500;
    color: var(--text-body);
}

/* Gallery */
.gallery-preview-grid, .gallery-full-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.g-item {
    position: relative;
    border-radius: var(--radius-sm);
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
}

    .g-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: var(--transition);
    }

    .g-item:hover img {
        transform: scale(1.05);
    }

.g-overlay {
    position: absolute;
    inset: 0;
    background: rgba(139, 69, 19, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.g-item:hover .g-overlay {
    opacity: 1;
}

.g-overlay-text {
    color: #fff;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Pricing */
.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 40px 30px;
    text-align: center;
    position: relative;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

    .pricing-card.featured {
        border: 2px solid var(--primary);
        box-shadow: var(--shadow-md);
        transform: scale(1.05);
    }

.pricing-popular {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
}

.pricing-type {
    font-size: 1.2rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-name {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--primary);
    margin: 10px 0;
}

.pricing-amount {
    margin: 20px 0;
}

.pricing-currency {
    font-size: 1.5rem;
    vertical-align: top;
    color: var(--primary);
}

.pricing-price {
    font-size: 3rem;
    font-weight: bold;
    color: var(--primary);
}

.pricing-per {
    color: var(--text-muted);
}

.pricing-note {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.pricing-divider {
    height: 1px;
    background: var(--border);
    margin: 20px 0;
}

.pricing-features {
    list-style: none;
    text-align: left;
    margin-bottom: 30px;
}

    .pricing-features li {
        margin-bottom: 10px;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .pricing-features i {
        color: var(--green-main);
    }

.pricing-cta .btn-primary-farm {
    width: 100%;
    justify-content: center;
}

/* Testimonials */
.testimonials-section {
    background: var(--sand);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: var(--card-bg);
    padding: 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    position: relative;
}

.testimonial-quote {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 4rem;
    font-family: var(--font-serif);
    color: var(--sand);
    line-height: 1;
}

.testimonial-stars {
    color: var(--accent);
    margin-bottom: 15px;
    font-weight: bold;
}

.testimonial-text {
    font-style: italic;
    color: var(--text-body);
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
}

.author-name {
    font-weight: bold;
    color: var(--primary);
}

.author-loc {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* CTA Banner */
.cta-banner {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    padding: 80px 0;
    text-align: center;
    color: #fff;
}

.cta-banner-title {
    color: #fff;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-banner-text {
    color: rgba(255,255,255,0.8);
    font-size: 1.1rem;
    margin-bottom: 30px;
}

/* Page Hero */
.page-hero {
    background: var(--sand);
    padding: 120px 0 60px;
    text-align: center;
    border-bottom: 1px solid var(--border);
}

.page-hero-title {
    font-size: 3rem;
    margin-bottom: 10px;
}

.page-hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
}

/* Footer */
.site-footer {
    background: #3D1A00;
    color: var(--sand);
    padding-top: 80px;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: bold;
    color: #fff;
    margin-bottom: 20px;
}

.footer-tagline {
    color: rgba(253, 246, 227, 0.7);
    margin-bottom: 20px;
}

.footer-socials {
    display: flex;
    gap: 10px;
}

.social-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .social-btn:hover {
        background: var(--primary);
    }

.footer-heading {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
}

    .footer-links li {
        margin-bottom: 10px;
    }

    .footer-links a {
        color: rgba(253, 246, 227, 0.7);
    }

        .footer-links a:hover {
            color: #fff;
        }

.footer-contact-list {
    list-style: none;
}

    .footer-contact-list li {
        display: flex;
        gap: 10px;
        margin-bottom: 15px;
        color: rgba(253, 246, 227, 0.7);
    }

    .footer-contact-list i {
        color: var(--primary-light);
    }

.footer-book-btn {
    display: inline-block;
    background: var(--primary);
    color: #fff;
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    margin-bottom: 15px;
    text-align: center;
}

    .footer-book-btn:hover {
        background: var(--primary-light);
        color: #fff;
    }

.footer-admin-link {
    display: block;
    color: rgba(253, 246, 227, 0.5);
    font-size: 0.9rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 20px 0;
    text-align: center;
    font-size: 0.9rem;
    color: rgba(253, 246, 227, 0.5);
    display: flex;
    justify-content: space-between;
}

.footer-legal a {
    color: rgba(253, 246, 227, 0.5);
}

/* Animations */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

    .fade-up.visible {
        opacity: 1;
        transform: translateY(0);
    }

.fade-up-delay-1 {
    transition-delay: 0.2s;
}

.fade-up-delay-2 {
    transition-delay: 0.4s;
}

.fade-up-delay-3 {
    transition-delay: 0.6s;
}

/* Booking Page Specific */
.booking-card {
    background: var(--card-bg);
    border-radius: var(--radius);
    padding: 40px;
    box-shadow: var(--shadow-md);
    margin-top: -60px;
    position: relative;
    z-index: 10;
}

.booking-card-title {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 10px;
}

.booking-card-subtitle {
    color: var(--text-muted);
    margin-bottom: 30px;
}

.booking-info-strip {
    background: var(--sand);
    padding: 20px;
    border-radius: var(--radius-sm);
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
}

.booking-info-item {
    text-align: center;
}

    .booking-info-item strong {
        display: block;
        color: var(--primary);
    }

/* Contact Page Specific */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
}

.contact-info-list {
    list-style: none;
}

.contact-info-item {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.contact-info-icon {
    width: 50px;
    height: 50px;
    background: var(--sand);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--green-main);
}

.contact-info-label {
    font-weight: bold;
    color: var(--primary);
    display: block;
}

.contact-info-value {
    color: var(--text-muted);
}

.contact-form-card {
    background: var(--card-bg);
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    flex: 1;
    margin-bottom: 20px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-body);
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: var(--font-sans);
    transition: var(--transition);
}

    .form-control:focus {
        outline: none;
        border-color: var(--primary);
        box-shadow: 0 0 0 3px rgba(139, 69, 19, 0.1);
    }

/* Amenities Page Specific */
.amenity-page-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.amenity-page-card {
    background: var(--card-bg);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

    .amenity-page-card:hover {
        box-shadow: var(--shadow-md);
        transform: translateY(-5px);
    }

    .amenity-page-card img {
        width: 100%;
        height: 200px;
        object-fit: cover;
    }

.amenity-page-card-content {
    padding: 20px;
}

.amenity-page-icon {
    font-size: 2rem;
    color: var(--green-main);
    margin-bottom: 10px;
}

.amenity-page-title {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--primary);
    margin-bottom: 10px;
}

.amenity-page-desc {
    color: var(--text-muted);
}

/* Back to top button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--primary);
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 100;
}

    .back-to-top.visible {
        opacity: 1;
        visibility: visible;
    }

    .back-to-top:hover {
        background: var(--primary-dark);
    }

/* Responsive */
/* FIX (root cause of the 991-992px breakout bug):
   changed "max-width: 991px" -> "max-width: 991.98px".
   Browsers can report fractional viewport widths (OS/browser zoom,
   display scaling, fractional device-pixel ratios). A whole-number
   991px breakpoint misses those fractional widths (e.g. 991.5px),
   leaving a "dead zone" where neither this mobile query nor any
   desktop/Bootstrap "min-width: 992px" query matches — during which
   default (unguarded) flex/position rules combine unpredictably and
   the collapsed menu can render large. Using 991.98px (the same
   convention Bootstrap uses for its lg breakpoint) closes that gap
   completely against any min-width:992px rule. */
@media (max-width: 991.98px) {
    /* MOBILE NAVBAR — rewritten so the panel is compact, correctly
       anchored to .nav-container (not the whole fixed .site-nav),
       and sized to its own content instead of stretching over the
       hero image. Hidden/shown via opacity + visibility + transform
       so it animates smoothly, toggled by JS adding/removing "show". */
    .navbar-collapse {
        display: flex;
        position: absolute;
        top: calc(100% + 15px);
        left: 0;
        width: 100%;
        max-width: 320px;
        background: #fff;
        border-radius: var(--radius-sm);
        padding: 16px;
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
        box-shadow: var(--shadow-lg);
        border: 1px solid var(--border);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-8px);
        pointer-events: none;
        transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
        max-height: 80vh;
        overflow-y: auto;
    }

        .navbar-collapse.show {
            display: flex;
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
            pointer-events: auto;
        }

    .navbar-nav {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        gap: 2px;
    }

        .navbar-nav .nav-item {
            width: 100%;
        }

    .nav-link {
        display: block;
        width: 100%;
        padding: 10px 8px;
        border-radius: var(--radius-sm);
    }

        .nav-link:hover,
        .nav-link.active {
            background: var(--sand);
        }

    .nav-cta {
        justify-content: center;
        width: 100%;
        margin-top: 8px;
    }

    .navbar-toggler {
        display: block;
    }

    .hero-title {
        font-size: 3rem;
    }

    .about-grid, .contact-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .pricing-card.featured {
        transform: none;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .navbar-collapse {
        left: 15px;
        right: 15px;
        width: auto;
        max-width: none;
    }
}

@media (max-width: 576px) {
    .stats-bar-inner {
        flex-direction: column;
    }

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

    .form-row {
        flex-direction: column;
        gap: 0;
    }
}
