:root {
    --gold: #D4AF37;
    --dark-gold: #B8941F;
    --black: #000000;
    --dark-gray: #1a1a1a;
    --light-gold: #F5E6A3;
    /* Default fixed navbar height used for offsetting anchored content (override per design if needed) */
    --nav-height: 64px;
}

* {
    scroll-behavior: smooth;
}

/* Make sure anchor scrolling and in-page jumps account for the fixed header */
html {
    scroll-padding-top: var(--nav-height);
}

.btn-primary {
    background: linear-gradient(135deg, #feecb7 0%, #d4af37 50%, #bd9848 100%);
    border: 2px solid rgba(189, 152, 72, 0.9);
    box-shadow: 
        0 4px 12px rgba(189, 152, 72, 0.4), 
        inset 0 1px 0 rgba(254, 236, 183, 0.6),
        0 0 20px rgba(254, 236, 183, 0.3);
    color: #000;
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 12px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    color: #ffffff;
}

.font-serif {
    font-family: 'Playfair Display', serif;
}

.gradient-gold {
    background: linear-gradient(135deg, var(--gold) 0%, var(--light-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bg-gold-gradient {
    background: linear-gradient(135deg, #d4af37 0%, #feecb7 100%);
}

.hover-gold {
    transition: all 0.3s ease;
    color: rgba(220, 220, 220, 0.85);
    position: relative;
}

.hover-gold:hover {
    color: #feecb7;
    transform: translateY(-2px);
    text-shadow: 0 0 8px rgba(254, 236, 183, 0.3);
}

.hover-gold::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #d4af37 0%, #feecb7 100%);
    transition: width 0.3s ease;
}

.hover-gold:hover::after {
    width: 100%;
}

.card-hover {
    transition: all 0.5s ease;
    backdrop-filter: blur(10px);
    background: rgba(26, 26, 26, 0.8);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.card-hover:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.2);
    border-color: var(--gold);
}

/* New Zalen Section Styles */
.zaal-card {
    position: relative;
    background: rgba(26, 26, 26, 0.9);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.2);
    backdrop-filter: blur(15px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(212, 175, 55, 0.1),
        0 0 40px rgba(212, 175, 55, 0.05);
}

.zaal-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0;
    transition: opacity 0.6s ease;
}

.zaal-card:hover::before {
    opacity: 1;
}

.zaal-card:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: var(--gold);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.4),
        0 0 60px rgba(212, 175, 55, 0.4),
        0 0 100px rgba(212, 175, 55, 0.2),
        0 0 140px rgba(212, 175, 55, 0.1),
        inset 0 1px 0 rgba(212, 175, 55, 0.2);
}

.zaal-image-container {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.zaal-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    filter: brightness(0.85) contrast(1.1);
}

.zaal-card:hover .zaal-image {
    transform: scale(1.08);
    filter: brightness(0.9) contrast(1.2);
}

.zaal-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg, 
        rgba(0,0,0,0.1) 0%, 
        rgba(0,0,0,0.3) 50%, 
        rgba(0,0,0,0.7) 100%
    );
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.6s ease;
}

.zaal-card:hover .zaal-overlay {
    background: linear-gradient(
        180deg, 
        rgba(0,0,0,0.2) 0%, 
        rgba(0,0,0,0.4) 50%, 
        rgba(0,0,0,0.8) 100%
    );
}

.zaal-number {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 700;
    color: rgba(212, 175, 55, 0.9);
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
    transform: scale(0.9);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.zaal-card:hover .zaal-number {
    transform: scale(1);
    color: rgba(212, 175, 55, 1);
    text-shadow: 0 4px 20px rgba(212, 175, 55, 0.4);
}

.zaal-capacity-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    color: var(--gold);
    padding: 8px 16px;
    border-radius: 12px;
    font-size: 0.875rem;
    font-weight: 600;
    border: 1px solid rgba(212, 175, 55, 0.3);
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
}

.zaal-card:hover .zaal-capacity-badge {
    background: rgba(212, 175, 55, 0.95);
    color: #000;
    border-color: var(--gold);
    transform: scale(1.05);
}

.zaal-content {
    padding: 2rem;
}

.zaal-header {
    margin-bottom: 1.5rem;
}

.zaal-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--gold) 0%, var(--light-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.zaal-subtitle {
    color: rgba(212, 175, 55, 0.8);
    font-size: 0.95rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.zaal-description {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.zaal-features {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.feature-item {
    display: flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.feature-item i {
    width: 20px;
    margin-right: 12px;
    font-size: 0.9rem;
}

.zaal-card:hover .feature-item {
    color: rgba(255, 255, 255, 0.95);
}

/* Glow animation keyframes */
@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 
            0 10px 30px rgba(0, 0, 0, 0.3),
            0 0 20px rgba(212, 175, 55, 0.1),
            0 0 40px rgba(212, 175, 55, 0.05);
    }
    50% {
        box-shadow: 
            0 10px 30px rgba(0, 0, 0, 0.3),
            0 0 25px rgba(212, 175, 55, 0.15),
            0 0 50px rgba(212, 175, 55, 0.08);
    }
}

.zaal-card {
    animation: pulseGlow 4s ease-in-out infinite;
}

.zaal-card:hover {
    animation: none; /* Stop the pulse animation on hover */
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .zaal-card {
        margin-bottom: 2rem;
    }
    
    .zaal-image-container {
        height: 240px;
    }
    
    .zaal-number {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .zaal-image-container {
        height: 220px;
    }
    
    .zaal-number {
        font-size: 2.5rem;
    }
    
    .zaal-content {
        padding: 1.5rem;
    }
    
    .zaal-title {
        font-size: 1.5rem;
    }
    
    .zaal-capacity-badge {
        top: 15px;
        right: 15px;
        padding: 6px 12px;
        font-size: 0.8rem;
    }
}

.hero-bg {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.8)), url('../images/restaurant-interior-elegant.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.parallax-section {
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
}

.floating-animation {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

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

.navbar-glass {
    backdrop-filter: blur(15px);
    background: rgba(0, 0, 0, 0.9);
    border-bottom: 2px solid rgba(212, 175, 55, 0.5);
}

/* New Desktop Navigation Styles */
.nav-logo-container {
    flex-shrink: 0;
}

.logo-wrapper {
    position: relative;
    padding: 8px;
    border-radius: 12px;
}

.nav-logo {
    height: 32px;
    width: auto;
    filter: brightness(1.1);
    transition: all 0.3s ease;
}

.logo-divider {
    width: 1px;
    height: 40px;
    background: linear-gradient(180deg, transparent, rgba(212, 175, 55, 0.6), transparent);
}

.logo-tagline {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.tagline-text {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gold);
    line-height: 1.1;
    letter-spacing: 0.5px;
}

.tagline-location {
    font-size: 0.65rem;
    color: rgba(212, 175, 55, 0.7);
    font-weight: 400;
    letter-spacing: 0.3px;
}

.desktop-nav {
    flex: 1;
    justify-content: center;
    margin: 0 2rem;
}

.nav-link {
    position: relative;
    display: flex;
    align-items: center;
    padding: 12px 20px;
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    background: transparent;
    border: none;
    font-family: inherit;
}

.nav-text {
    font-size: 0.95rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    transition: all 0.3s ease;
    letter-spacing: 0.3px;
}

.nav-link:hover .nav-text {
    color: var(--gold);
    transform: translateY(-1px);
}

.nav-indicator {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 60%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    transition: transform 0.4s ease;
}

.nav-link:hover .nav-indicator,
.nav-link.active .nav-indicator {
    transform: translateX(-50%) scaleX(1);
}

.nav-link.active .nav-text {
    color: var(--gold);
}

.external-icon {
    margin-left: 4px;
    font-size: 0.7rem;
    opacity: 0.6;
}

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

.dropdown-trigger {
    background: none !important;
}

.dropdown-arrow {
    margin-left: 6px;
    font-size: 0.7rem;
    transition: transform 0.3s ease;
    color: rgba(212, 175, 55, 0.8);
}

.nav-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-panel {
    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
}

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

.dropdown-content {
    background: rgba(15, 15, 15, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    padding: 12px;
    min-width: 280px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.4),
        0 0 30px rgba(212, 175, 55, 0.1);
}

.dropdown-item {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.3s ease;
    margin-bottom: 4px;
}

.dropdown-item:last-child {
    margin-bottom: 0;
}

.dropdown-item:hover {
    background: rgba(212, 175, 55, 0.1);
    transform: translateX(4px);
}

.dropdown-icon {
    width: 20px;
    color: var(--gold);
    margin-right: 12px;
    font-size: 0.9rem;
}

.dropdown-text {
    display: flex;
    flex-direction: column;
}

.dropdown-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.2;
}

.dropdown-desc {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 2px;
}

.dropdown-item:hover .dropdown-title {
    color: var(--gold);
}

.dropdown-item:hover .dropdown-desc {
    color: rgba(255, 255, 255, 0.8);
}

/* CTA Button */
.nav-cta-button {
    position: relative;
    display: flex;
    align-items: center;
    padding: 12px 24px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--dark-gold) 100%);
    color: #000;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 12px;
    transition: all 0.4s ease;
    overflow: hidden;
    letter-spacing: 0.3px;
}

.nav-cta-button:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, var(--light-gold) 0%, var(--gold) 100%);
}

/* Responsive adjustments */
@media (max-width: 1280px) {
    .desktop-nav {
        margin: 0 1rem;
    }
    
    .nav-link {
        padding: 10px 16px;
    }
    
    .nav-text {
        font-size: 0.9rem;
    }
    
    .logo-tagline {
        display: none;
    }
    
    .logo-divider {
        display: none;
    }
}

@media (max-width: 1024px) {
    .desktop-nav,
    .nav-cta-button {
        display: none;
    }
    
    .mobile-menu-button {
        display: flex;
    }
}

.dropdown-menu {
    transform: translateY(-10px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(212, 175, 55, 0.3);
}

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

.btn-gold {
    background: linear-gradient(135deg, #bd9848 0%, #d4af37 40%, #feecb7 100%);
    border: 1px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 2px 8px rgba(189, 152, 72, 0.2), inset 0 1px 0 rgba(254, 236, 183, 0.4);
    color: #000;
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 12px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(189, 152, 72, 0.4), inset 0 1px 0 rgba(254, 236, 183, 0.6);
    border: 1px solid rgba(212, 175, 55, 0.5);
    color: #000;
}

.btn-download {
    background: linear-gradient(135deg, #feecb7 0%, #d4af37 50%, #bd9848 100%);
    border: 2px solid rgba(189, 152, 72, 0.9);
    box-shadow: 
        0 4px 12px rgba(189, 152, 72, 0.4), 
        inset 0 1px 0 rgba(254, 236, 183, 0.6),
        0 0 20px rgba(254, 236, 183, 0.3);
    color: #000;
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 12px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.btn-download::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.btn-download:hover::before {
    left: 100%;
}

.btn-download:hover {
    transform: translateY(-4px);
    box-shadow: 
        0 15px 35px rgba(189, 152, 72, 0.6), 
        inset 0 1px 0 rgba(254, 236, 183, 0.8),
        0 0 30px rgba(254, 236, 183, 0.5);
    border: 2px solid rgba(189, 152, 72, 1);
    color: #000;
    scale: 1.02;
}

.btn-download i {
    animation: downloadPulse 2s ease-in-out infinite;
}

@keyframes downloadPulse {
    0%, 100% { 
        transform: translateY(0px) scale(1);
        opacity: 1;
    }
    50% { 
        transform: translateY(-2px) scale(1.1);
        opacity: 0.8;
    }
}

.section-divider {
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(212,175,55,0.4), transparent);
    margin: 80px auto;
    width: 200px;
}

    /* Global separator between consecutive sections
       - 1px high
       - gold color with 20% transparency
       - centered and 60% of viewport width (60vw) both on mobile and desktop
    */
    section + section {
        position: relative; /* establish containing block for the pseudo element */
    }

    section + section::before {
        content: '';
        position: absolute;
        left: 50%;
        top: 0; /* align to the top edge of the following section */
        transform: translate(-50%, -50%); /* center exactly on the boundary */
        width: 60vw;
        max-width: 1200px;
        height: 1px;
        /* match footer stroke: transparent -> gold (40% alpha) -> transparent */
        background: linear-gradient(90deg, transparent, rgba(212,175,55,0.4), transparent);
        pointer-events: none;
    }

    @media (max-width: 480px) {
        section + section::before {
            width: 60vw;
        }
    }

.logo-container {
    /* Removed outer glow/drop-shadow effect */
    filter: none;
}

/* Mobile Navigation */
.mobile-menu-button {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mobile-menu-button span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--gold);
    margin: 4px 0;
    transition: all 0.3s ease;
    border-radius: 1px;
}

.mobile-menu-button.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-button.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-button.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    z-index: 1205; /* raised so mobile menu floats above cookie banner */
    /* slightly reduced top padding so logo and first items sit higher on the screen */
    padding-top: calc(12px + env(safe-area-inset-top)); /* tightened from 22px */
    inset: 0;
    right: 0;
    bottom: 0;
    /* Defensive overrides: ensure the mobile menu overlay always covers the viewport and sits above everything */
    z-index: 2147483647 !important; /* near-maximum to avoid stacking issues */
    -webkit-tap-highlight-color: transparent;
    will-change: transform;
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    /* bring content up more on mobile so logo/menu sit closer to the top */
    padding: 0.25rem 0.4rem; /* tighter overall content padding */
    height: 100%;
    overflow-y: auto; /* allow scrolling on short viewports */
    -webkit-overflow-scrolling: touch;
    /* moderate bottom space so last menu item and footer are reachable on short screens */
    padding-bottom: calc(110px + env(safe-area-inset-bottom)); /* reduced from 150px */
}

.mobile-menu-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    /* allow it to grow but not push footer off-screen; footer uses margin-top:auto */
    flex: 1 1 auto;
    padding-top: 4px;
    padding-bottom: 4px;
}

.mobile-menu-item {
    display: block;
    color: #ffffff;
    text-decoration: none;
    font-size: 1.25rem;
    font-weight: 500;
    margin: 0.35rem 0; /* slightly reduced vertical gap */
    padding: 0.45rem 0.6rem; /* slightly tightened padding */
    /* border-bottom removed to avoid duplicate strokes; dividers are handled by ::after pseudo-elements */
    width: 100%;
    text-align: center;
    transition: all 0.3s ease;
}

.mobile-menu-item:hover {
    color: var(--gold);
    background: rgba(212, 175, 55, 0.1);
}

.mobile-submenu {
    display: none;
    background: rgba(26, 26, 26, 0.9);
    padding: 1rem 0;
    margin-top: 1rem;
    border-radius: 8px;
}

.mobile-submenu.active {
    display: block;
}

/* Mobile menu dividers matching footer strokes */
.mobile-menu-content .mobile-menu-item,
.mobile-menu-content .mobile-submenu-item,
.mobile-menu-content a.mobile-menu-item {
    position: relative;
}

.mobile-menu-content .mobile-menu-item:not(:last-child)::after,
.mobile-menu-content .mobile-submenu-item:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -8px; /* slightly less offset */
    width: 98%; /* increase from 92% to make divider longer */
    height: 1px;
    /* transparent -> solid gold (40% alpha) -> transparent */
    background: linear-gradient(90deg, transparent, rgba(212,175,55,0.4), transparent);
    opacity: 1;
    pointer-events: none;
}

/* Mobile menu close (golden cross) button */
.mobile-menu .close-mobile {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 40px;
    height: 40px;
    border-radius: 999px;
    background: var(--gold);
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    z-index: 1100;
    box-shadow: 0 6px 18px rgba(189,152,72,0.25);
    border: 1px solid rgba(212,175,55,0.9);
}

.mobile-menu .close-mobile:hover {
    transform: scale(1.03);
}

/* Top logo row inside mobile menu */
.mobile-logo-row {
    /* bring logo and strokes slightly closer together */
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px; /* smaller gap between strokes and logo */
    width: 100%;
    padding: 0 0 2px 0; /* reduce vertical space under logo */
}

.mobile-logo-row .logo-line {
    flex: 1 1 0;
    height: 1px;
    max-width: 50%; /* increased from 45% to lengthen strokes */
    background: linear-gradient(90deg, transparent, rgba(212,175,55,0.6), transparent);
}

.mobile-logo-row .mobile-logo {
    height: 32px; /* slightly smaller to save vertical space */
    width: auto;
    display: block;
    margin: 0 6px; /* reduced horizontal margin */
}

/* Mobile menu footer: social icons + contact button */
.mobile-menu .mobile-menu-footer {
    /* Make footer part of flow so it won't overlap on short screens; use margin-top:auto to stick to bottom when possible */
    position: relative;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px; /* reduce spacing in footer */
    padding: 3px 1rem 60px 1rem; /* smaller vertical padding */
    margin-top: auto;
}

/* end mobile menu footer adjustments */

.mobile-menu .mobile-menu-footer .contact-btn {
    padding-top: 12px;
    padding-bottom: 12px;
}

/* Center the main menu block vertically while allowing footer to sit at the bottom */
.mobile-menu-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    /* allow it to grow but not push footer off-screen; footer uses margin-top:auto */
    flex: 1 1 auto;
    padding-top: 4px;
    padding-bottom: 4px;
}

.mobile-menu .mobile-menu-footer .social-row {
    display: flex;
    gap: 8px; /* keep touch targets usable but more compact */
    margin-bottom: 4px; /* less space between icons and contact button */
    width: auto;
    justify-content: center;
}

.mobile-menu .mobile-menu-footer .social-row a {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    border: 1px solid rgba(212,175,55,0.35);
    color: var(--gold);
    background: transparent;
}

.mobile-menu .mobile-menu-footer .social-row a:hover {
    background: var(--gold);
    color: #000;
}

/* no divider between social icons and contact button */

.mobile-menu .mobile-menu-footer .contact-btn {
    /* make the button 80% of the viewport width on mobile and center it */
    width: 76vw; /* slightly narrower so it doesn't crowd */
    max-width: 420px; /* reasonable cap on larger devices */
    margin: 0 auto;
    background: linear-gradient(135deg, #bd9848 0%, #d4af37 40%, #feecb7 100%);
    color: #000;
    border-radius: 10px;
    padding: 10px 14px; /* reduced vertical padding */
    text-align: center;
    font-weight: 600;
    box-shadow: 0 8px 24px rgba(189,152,72,0.18);
    border: 1px solid rgba(212,175,55,0.6);
}

.mobile-menu .mobile-menu-footer .contact-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.mobile-menu .mobile-menu-footer .contact-btn .contact-label {
    display: inline-block;
}

/* rotate arrow when submenu active */
.mobile-menu .fa-chevron-down {
    transition: transform 0.25s ease;
}
.mobile-menu .fa-chevron-down.rotated {
    transform: rotate(180deg);
}

.mobile-submenu-item {
    display: block;
    color: #cccccc;
    text-decoration: none;
    font-size: 1rem; /* slightly smaller for submenu */
    padding: 0.7rem 1.25rem;
    transition: all 0.3s ease;
}

.mobile-submenu-item:hover {
    color: var(--gold);
    background: rgba(212, 175, 55, 0.1);
}

@media (max-width: 768px) {
    .mobile-menu-button {
        display: flex;
    }
    
    .desktop-nav {
        display: none;
    }
}

/* Cookie Consent Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(15px);
    border-top: 2px solid var(--gold);
    padding: 20px;
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.4s ease;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.5);
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.cookie-text {
    flex: 1;
    min-width: 300px;
    color: #ffffff;
    font-size: 14px;
    line-height: 1.5;
}

.cookie-text a {
    color: var(--gold);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.cookie-accept {
    background: var(--gold);
    color: #000;
    border: 1px solid var(--gold);
}

.cookie-accept:hover {
    background: var(--dark-gold);
    transform: translateY(-2px);
}

.cookie-decline {
    background: transparent;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.cookie-decline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.cookie-settings {
    background: transparent;
    color: var(--gold);
    border: 1px solid var(--gold);
}

.cookie-settings:hover {
    background: rgba(212, 175, 55, 0.1);
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-buttons {
        justify-content: center;
        width: 100%;
    }
    
    .cookie-btn {
        flex: 1;
        min-width: 100px;
    }
}

/* Form Enhancements */
.form-group {
    position: relative;
    margin-bottom: 24px;
}

.form-input, .form-textarea {
    width: 100%;
    /* extra right padding avoids overlap with native dropdown arrow */
    padding: 14px 40px 14px 18px;
    background: rgba(26, 26, 26, 0.8);
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 8px;
    color: #ffffff;
    font-size: 16px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.form-input:focus, .form-textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
    background: rgba(26, 26, 26, 0.9);
}

/* Make native date picker calendar icon white in WebKit browsers and ensure date text is visible */
input[type="date"] {
    color: #ffffff; /* date text color */
    background-clip: padding-box;
}

/* WebKit-based browsers (Chrome, Safari) */
input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(1) brightness(2) saturate(1);
    -webkit-filter: invert(1) brightness(2) saturate(1);
    cursor: pointer;
}

/* For older WebKit where indicator may be inside ::-webkit-inner-spin-button */
input[type="date"]::-webkit-inner-spin-button {
    filter: invert(1) brightness(2) saturate(1);
}

/* Firefox - try to ensure color consistency where possible */
input[type="date"]::-moz-focus-inner {
    border: 0;
}

/* Select-specific improvements: prevent label overlap and make floating label work when a value is selected */
select.form-input {
    /* keep native appearance but ensure space for arrow */
    -webkit-appearance: menulist;
    appearance: menulist;
    background-image: none; /* avoid custom backgrounds interfering */
    /* add extra right padding to account for Safari's larger native arrow */
    padding-right: 56px;
}

/* Float the label when select has a valid value or is focused */
select.form-input:focus + .form-label,
select.form-input:valid + .form-label,
/* For Safari where the select placeholder appears large, force the label to float by default */
select.form-input + .form-label {
    top: -14px; /* raise label more to avoid covering select text in Safari */
    left: 14px;
    font-size: 12px;
    color: var(--gold);
    background: rgba(0, 0, 0, 0.8);
    z-index: 3; /* ensure label sits above the native control */
    padding: 0 6px;
}

/* Reduce the font-size inside select to match inputs and avoid large placeholder-like text */
select.form-input {
    font-size: 16px;
}

/* WebKit / Safari specific tweaks to avoid native control differences that cause overlap */
@media screen and (-webkit-min-device-pixel-ratio:0) {
    select.form-input {
        /* Safari often displays a wider dropdown arrow and slightly different internal padding */
        padding-right: 64px; /* give extra room for the native arrow */
        padding-left: 20px;  /* nudge content right so the floating label doesn't overlap
                                selected value on smaller devices */
    -webkit-appearance: menulist-button;
    appearance: menulist-button;
    }

    /* make floated label sit slightly higher specifically for WebKit */
    select.form-input + .form-label,
    select.form-input:focus + .form-label,
    select.form-input:valid + .form-label {
        top: -16px;
        left: 12px;
    }
}

/* Extra small screen tweak: a slightly smaller offset so the label stays readable but not overlapping */
@media (max-width: 480px) {
    select.form-input {
        padding-right: 56px;
        padding-left: 18px;
    }

    select.form-input + .form-label,
    select.form-input:focus + .form-label,
    select.form-input:valid + .form-label {
        top: -12px;
        left: 12px;
        font-size: 12px;
    }
}

/* === Select-specific accessibility fix ===
   Some browsers (notably Safari on iOS/macOS) render native select controls with
   large internal chrome which can cause absolutely-positioned floating labels to
   overlap the selected value. To avoid layout and readability issues we render
   the label *above* select controls (only for selects) rather than floating over them.
   This change only affects select.form-input labels and leaves text inputs untouched.
*/

.form-input::placeholder, .form-textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
}

.form-input:focus::placeholder, .form-textarea:focus::placeholder {
    color: rgba(212, 175, 55, 0.8);
}

.form-label {
    position: absolute;
    top: 14px;
    left: 18px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 16px;
    pointer-events: none;
    transition: all 0.3s ease;
    background: transparent;
    padding: 0 4px;
}

.form-input:focus + .form-label,
.form-input:not(:placeholder-shown) + .form-label,
.form-textarea:focus + .form-label,
.form-textarea:not(:placeholder-shown) + .form-label {
    top: -8px;
    left: 14px;
    font-size: 12px;
    color: var(--gold);
    background: rgba(0, 0, 0, 0.8);
}

.form-error {
    color: #ff6b6b;
    font-size: 14px;
    margin-top: 5px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.form-error.show {
    opacity: 1;
}

.form-success {
    background: rgba(46, 204, 113, 0.1);
    border: 2px solid rgba(46, 204, 113, 0.5);
    color: #2ecc71;
    padding: 16px;
    border-radius: 8px;
    text-align: center;
    margin-top: 20px;
    display: none;
}

.form-success.show {
    display: block;
    animation: slideIn 0.5s ease;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Additional Responsive Improvements */
@media (max-width: 1024px) {
    .hero-bg {
        background-attachment: scroll;
    }
    
    .parallax-section {
        background-attachment: scroll;
    }
    
    .container {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

@media (max-width: 768px) {
    .mobile-menu-button {
        display: flex;
    }
    
    .desktop-nav {
        display: none;
    }
    
    /* Hero section mobile optimization */
    .hero-bg {
        min-height: 70vh;
        background-position: center;
        /* add top padding so hero content is visible below the fixed nav */
        padding-top: calc(var(--nav-height) + 0.5rem);
    }
    
    /* Typography mobile scaling */
    .font-serif {
        line-height: 1.2;
    }
    
    h1 {
        font-size: 2.5rem !important;
    }
    
    h2 {
        font-size: 2rem !important;
    }
    
    /* Button improvements */
    .btn-gold, .btn-primary, .btn-download {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    /* Form improvements */
    .form-input, .form-textarea {
        font-size: 16px; /* Prevents zoom on iOS */
    }
    
    /* Card spacing */
    .card-hover {
        margin-bottom: 2rem;
    }
    
    /* Grid improvements */
    .grid {
        gap: 1rem;
    }
}

@media (max-width: 640px) {
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    /* Further reduce font sizes */
    h1 {
        font-size: 2rem !important;
    }
    
    /* Improve touch targets */
    .hover-gold {
        padding: 0.5rem;
        margin: -0.5rem;
    }
    
    /* Stack navigation items better */
    .mobile-menu-content {
        padding: 1rem;
    }
    
    .mobile-menu-item {
        font-size: 1.125rem; /* slightly smaller on small screens */
        margin: 0.45rem 0;
        padding: 0.7rem 0.9rem;
    }
}

/* Compact Footer Styling */
footer {
    background: #111827; /* gray-900 */
    border-top: 2px solid rgba(189, 152, 72, 0.3);
}

footer img {
    transition: transform 0.2s ease;
}

footer img:hover {
    transform: scale(1.05);
}

footer a:hover {
    color: var(--color-gold) !important;
}

/* Footer centered logo with left/right gradient strokes (stroke - logo - stroke)
   Strokes use same gold gradient and opacity as the inline separators and scale with container.
*/
.footer-logo-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    position: relative;
    width: 100%;
    max-width: 720px; /* keep strokes from stretching too wide */
    margin: 0 auto;
    margin-bottom: 1.25rem; /* extra space between logo and tagline below */
}

.footer-logo-row::before,
.footer-logo-row::after {
    content: '';
    display: block;
    flex: 1 1 auto;
    height: 1px; /* match other separators */
    /* make each stroke proportional so combined visual width ~75% */
    max-width: 37.5%;
    background: linear-gradient(90deg, transparent, rgba(212,175,55,0.4), transparent); /* same style as footer separators */
    align-self: center;
}

.footer-logo-row img {
    display: block;
    margin: 0 12px;
}

/* Footer tagline: ensure the small italic tagline is rendered in brand gold */
footer p.text-gold.text-sm.italic {
    color: var(--gold) !important;
    /* subtle glow to increase contrast on dark background */
    text-shadow: 0 1px 0 rgba(0,0,0,0.5);
}

/* Make footer section headings use the same gold color as the tagline */
footer h4 {
    color: var(--gold) !important;
}

/* Footer social icons: gold by default, white icon on hover */
footer a[class*="w-8"][class*="h-8"] {
    color: var(--gold) !important;
    border-color: rgba(212,175,55,0.4) !important;
    background: transparent !important;
    transition: background-color 0.18s ease, color 0.18s ease;
}

footer a[class*="w-8"][class*="h-8"]:hover {
    color: #ffffff !important;
    background: var(--gold) !important;
    border-color: var(--gold) !important;
}

/* Mobile responsive */
@media (max-width: 768px) {
    footer .grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    footer .border-r {
        border-right: none;
        border-bottom: 1px solid #374151;
        padding-bottom: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    footer .md\\:pr-8 {
        padding-right: 0;
    }
}

/* Footer menu item separators (desktop only)
   - 1px height
   - 60% width centered
   - positioned exactly in the middle of the vertical gap between items
   - gradient: transparent -> solid gold -> transparent
*/
/* Tailwind's space-y-2 equals 0.5rem (8px); expose as a variable so it's easy to tweak */
footer .grid .space-y-2 {
    --footer-link-gap: 8px; /* adjust if your spacing differs */
}

footer .grid .space-y-2 > div {
    position: relative;
}

footer .grid .space-y-2 > div:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    /* place the line halfway into the gap between this link and the next */
    bottom: calc(-1 * var(--footer-link-gap) / 2);
    width: 75%;
    height: 1px;
    /* transparent -> solid gold (40% alpha) -> transparent */
    background: linear-gradient(90deg, transparent, rgba(212,175,55,0.4), transparent);
    opacity: 1;
    pointer-events: none;
}

/* Add same separator between contact column items (address -> phone) */
/* Ensure the container exposes the gap variable for contact column */
footer .grid > div:first-child .space-y-2 {
    --footer-link-gap: 8px; /* same base as menu links */
}

footer .grid > div:first-child .space-y-2 > p {
    position: relative;
}

footer .grid > div:first-child .space-y-2 > p:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: calc(-1 * var(--footer-link-gap) / 2);
    width: 75%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212,175,55,0.4), transparent);
    pointer-events: none;
}

/* Scroll-to-top button */
.scroll-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: var(--color-gold);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 14px;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(189, 152, 72, 0.3);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

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

.scroll-to-top:hover {
    transform: scale(1.1);
}

@media (max-width: 480px) {
    /* Ultra-small screens */
    .btn-gold, .btn-primary, .btn-download {
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .grid {
        grid-template-columns: 1fr !important;
    }
    
    /* Logo sizing - slightly smaller on very small screens */
    .logo-container img {
        height: 1.6rem;
    }
    
    /* Cookie banner mobile */
    .cookie-content {
        flex-direction: column;
        gap: 15px;
    }
    
    .cookie-buttons {
        flex-direction: column;
        gap: 8px;
    }
}

/* High DPI displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .logo-container img {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* Dark mode support (future-proofing) */
@media (prefers-color-scheme: dark) {
    body {
        background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    }
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    
    .floating-animation {
        animation: none;
    }
    
    .parallax-section {
        background-attachment: scroll;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .gradient-gold {
        background: #FFD700;
        -webkit-background-clip: unset;
        -webkit-text-fill-color: unset;
        background-clip: unset;
        color: #FFD700;
    }
    
    .btn-gold {
        border: 2px solid #FFD700;
    }
}

/* Focus improvements for accessibility */
.btn-gold:focus,
.btn-primary:focus,
.btn-download:focus,
.form-input:focus,
.form-textarea:focus {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
}

/* Skip to content link for screen readers */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: var(--gold);
    color: #000;
    padding: 8px;
    text-decoration: none;
    z-index: 1000;
}

.skip-link:focus {
    top: 6px;
}

/* Hero Section USP Cards, CTA Buttons, and Trust Badges */
.hero-usp-card {
    background: rgba(26, 26, 26, 0.85);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.hero-usp-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.hero-usp-card:hover::before {
    opacity: 1;
}

.hero-usp-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 0 30px rgba(212, 175, 55, 0.3);
}

.hero-usp-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--light-gold) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.4s ease;
}

.hero-usp-icon i {
    font-size: 1.5rem;
    color: #000;
}

.hero-usp-card:hover .hero-usp-icon {
    transform: scale(1.1) rotateY(360deg);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
}

.hero-usp-title {
    font-size: 1.25rem;
    font-weight: 600;
    background: linear-gradient(135deg, var(--gold) 0%, var(--light-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.hero-usp-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

/* Hero CTA Buttons */
.hero-cta-primary, .hero-cta-secondary, .hero-cta-outline {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    padding: 1.25rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    min-width: 200px;
    text-align: center;
}

.hero-cta-primary i, .hero-cta-secondary i, .hero-cta-outline i {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.hero-cta-primary span, .hero-cta-secondary span, .hero-cta-outline span {
    font-size: 1rem;
    line-height: 1.2;
}

.hero-cta-subtitle {
    font-size: 0.75rem;
    margin-top: 0.25rem;
    opacity: 0.9;
    font-weight: 400;
}

.hero-cta-primary {
    background: linear-gradient(135deg, var(--gold) 0%, var(--light-gold) 100%);
    color: #000;
    border: 1px solid var(--gold);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.hero-cta-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.4);
    background: linear-gradient(135deg, var(--light-gold) 0%, var(--gold) 100%);
}

.hero-cta-secondary {
    background: rgba(26, 26, 26, 0.8);
    color: var(--gold);
    border: 2px solid var(--gold);
    backdrop-filter: blur(10px);
}

.hero-cta-secondary:hover {
    transform: translateY(-4px);
    background: var(--gold);
    color: #000;
    box-shadow: 0 12px 30px rgba(212, 175, 55, 0.4);
}

.hero-cta-outline {
    background: transparent;
    color: rgba(255, 255, 255, 0.9);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.hero-cta-outline:hover {
    transform: translateY(-4px);
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(212, 175, 55, 0.1);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.2);
}

/* Trust Badges */
.text-gold\/60 {
    color: rgba(212, 175, 55, 0.6);
}

.text-gold\/60 i {
    color: var(--gold);
    margin-right: 0.5rem;
}

/* Responsive adjustments for hero elements */
@media (max-width: 1024px) {
    .hero-usp-card {
        padding: 1.5rem 1rem;
    }
    
    .hero-cta-primary, .hero-cta-secondary, .hero-cta-outline {
        min-width: 180px;
        padding: 1rem 1.5rem;
    }
}

@media (max-width: 768px) {
    .hero-usp-icon {
        width: 50px;
        height: 50px;
    }
    
    .hero-usp-icon i {
        font-size: 1.25rem;
    }
    
    .hero-usp-title {
        font-size: 1.1rem;
    }
    
    .hero-cta-primary, .hero-cta-secondary, .hero-cta-outline {
        min-width: 160px;
        padding: 0.875rem 1.25rem;
    }
    
    .hero-cta-primary span, .hero-cta-secondary span, .hero-cta-outline span {
        font-size: 0.9rem;
    }
    
    .hero-cta-subtitle {
        font-size: 0.7rem;
    }
}
