/* Page-specific styles for contact.html */
:root {
            --signal-red: #E63946;
            --warm-gold: #D4A84B;
            --deep-navy: #1D3557;
            --cream: #FAF8F5;
            --warm-white: #FFFFFF;
            --soft-gray: #6B7280;
            --charcoal: #2D3748;
            --blush: #FDF2F0;
            
            --font-display: 'Playfair Display', Georgia, serif;
            --font-body: 'Space Grotesk', system-ui, sans-serif;
            
            --space-xs: 4px;
            --space-sm: 8px;
            --space-md: 16px;
            --space-lg: 24px;
            --space-xl: 32px;
            --space-2xl: 48px;
            --space-3xl: 64px;
            --space-4xl: 96px;
            
            --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
            --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
            --shadow-lg: 0 12px 24px rgba(0,0,0,0.12);
            --shadow-xl: 0 20px 40px rgba(0,0,0,0.15);
            --shadow-glow: 0 0 24px rgba(230,57,70,0.15);
        }
        
        * { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; }
        
        body {
            font-family: var(--font-body);
            font-size: 16px;
            line-height: 1.6;
            color: var(--charcoal);
            background: var(--cream);
            -webkit-font-smoothing: antialiased;
        }
        
        /* ═══════════════════════════════════════════════════════════
           NAVIGATION
           ═══════════════════════════════════════════════════════════ */
        
        .nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: var(--space-lg) var(--space-2xl);
            background: rgba(250, 248, 245, 0.95);
            backdrop-filter: blur(10px);
            transition: box-shadow 0.3s ease;
        }
        
        .nav.scrolled { box-shadow: var(--shadow-md); }
        
        .nav-logo {
            font-family: var(--font-display);
            font-size: 24px;
            font-weight: 700;
            color: var(--deep-navy);
            text-decoration: none;
        }
        
        .nav-logo span { color: var(--signal-red); }
        
        .nav-links {
            display: flex;
            align-items: center;
            gap: var(--space-xl);
        }
        
        .nav-links a {
            font-family: var(--font-body);
            font-size: 15px;
            font-weight: 500;
            color: var(--charcoal);
            text-decoration: none;
            transition: color 0.2s ease;
        }
        
        .nav-links a:hover { color: var(--signal-red); }
        
        .nav-links a.active::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            right: 0;
            height: 2px;
            background: var(--signal-red);
            border-radius: 1px;
        }
        
        .nav-cta {
            background: var(--signal-red) !important;
            color: white !important;
            padding: 12px 24px !important;
            border-radius: 8px;
            font-weight: 600 !important;
            transition: all 0.2s ease !important;
        }
        
        .nav-cta:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-md), var(--shadow-glow);
        }
        
        .nav-mobile {
            display: none;
            background: none;
            border: none;
            cursor: pointer;
            padding: var(--space-sm);
        }
        
        .nav-mobile svg {
            width: 24px;
            height: 24px;
            stroke: var(--charcoal);
        }
        
        .mobile-menu {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: var(--cream);
            z-index: 999;
            padding: 100px var(--space-xl) var(--space-xl);
            flex-direction: column;
            gap: var(--space-lg);
        }
        
        .mobile-menu.open { display: flex; }
        
        .mobile-menu a {
            font-family: var(--font-display);
            font-size: 32px;
            color: var(--charcoal);
            text-decoration: none;
            padding: var(--space-md) 0;
            border-bottom: 1px solid rgba(0,0,0,0.1);
        }
        
        /* ═══════════════════════════════════════════════════════════
           HERO
           ═══════════════════════════════════════════════════════════ */
        
        .hero {
            padding: 160px var(--space-2xl) var(--space-4xl);
            background: var(--cream);
            text-align: center;
        }
        
        .hero-inner {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--warm-gold);
            color: white;
            font-family: var(--font-body);
            font-size: 12px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            padding: 8px 16px;
            border-radius: 100px;
            margin-bottom: var(--space-lg);
        }
        
        .hero h1 {
            font-family: var(--font-display);
            font-size: clamp(42px, 5vw, 64px);
            font-weight: 700;
            line-height: 1.1;
            color: var(--charcoal);
            margin-bottom: var(--space-xl);
        }
        
        .hero h1 em {
            font-style: italic;
            color: var(--signal-red);
        }
        
        .hero-subtitle {
            font-family: var(--font-body);
            font-size: 19px;
            color: var(--soft-gray);
            line-height: 1.7;
            max-width: 600px;
            margin: 0 auto;
        }
        
        /* ═══════════════════════════════════════════════════════════
           CONTACT OPTIONS
           ═══════════════════════════════════════════════════════════ */
        
        .contact-section {
            padding: 0 var(--space-2xl) var(--space-4xl);
            background: var(--cream);
        }
        
        .contact-inner {
            max-width: 1000px;
            margin: 0 auto;
        }
        
        .contact-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: var(--space-xl);
        }
        
        .contact-card {
            background: var(--warm-white);
            border-radius: 20px;
            padding: var(--space-2xl);
            text-align: center;
            transition: all 0.3s ease;
            border: 2px solid transparent;
            text-decoration: none;
            display: block;
        }
        
        .contact-card:hover {
            transform: translateY(-6px);
            box-shadow: var(--shadow-lg);
            border-color: var(--signal-red);
        }
        
        .contact-card.featured {
            background: var(--deep-navy);
            color: white;
            grid-row: span 2;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        
        .contact-card.featured:hover {
            border-color: var(--warm-gold);
        }
        
        .contact-icon {
            width: 64px;
            height: 64px;
            background: var(--blush);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto var(--space-lg);
            font-size: 28px;
        }
        
        .contact-card.featured .contact-icon {
            background: rgba(255,255,255,0.1);
        }
        
        .contact-card h3 {
            font-family: var(--font-display);
            font-size: 24px;
            font-weight: 600;
            color: var(--charcoal);
            margin-bottom: var(--space-sm);
        }
        
        .contact-card.featured h3 {
            color: white;
        }
        
        .contact-card p {
            font-family: var(--font-body);
            font-size: 15px;
            color: var(--soft-gray);
            line-height: 1.6;
            margin-bottom: var(--space-lg);
        }
        
        .contact-card.featured p {
            color: rgba(255,255,255,0.8);
        }
        
        .contact-detail {
            font-family: var(--font-body);
            font-size: 18px;
            font-weight: 600;
            color: var(--signal-red);
        }
        
        .contact-card.featured .contact-detail {
            color: var(--warm-gold);
        }
        
        .contact-cta {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: var(--signal-red);
            color: white;
            font-family: var(--font-body);
            font-weight: 600;
            font-size: 16px;
            padding: 16px 32px;
            border-radius: 8px;
            text-decoration: none;
            transition: all 0.2s ease;
            margin-top: var(--space-lg);
        }
        
        .contact-cta:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-md), var(--shadow-glow);
        }
        
        .contact-cta svg {
            width: 20px;
            height: 20px;
            stroke: currentColor;
        }
        
        /* ═══════════════════════════════════════════════════════════
           WHAT TO EXPECT
           ═══════════════════════════════════════════════════════════ */
        
        .expect-section {
            padding: var(--space-4xl) var(--space-2xl);
            background: var(--warm-white);
        }
        
        .expect-inner {
            max-width: 900px;
            margin: 0 auto;
        }
        
        .expect-header {
            text-align: center;
            margin-bottom: var(--space-3xl);
        }
        
        .section-label {
            font-family: var(--font-body);
            font-size: 12px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: var(--signal-red);
            margin-bottom: var(--space-md);
            display: inline-block;
        }
        
        .section-headline {
            font-family: var(--font-display);
            font-size: clamp(32px, 4vw, 44px);
            font-weight: 600;
            color: var(--charcoal);
            line-height: 1.2;
        }
        
        .section-headline em {
            font-style: italic;
            color: var(--signal-red);
        }
        
        .expect-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: var(--space-xl);
        }
        
        .expect-item {
            text-align: center;
            padding: var(--space-xl);
        }
        
        .expect-number {
            width: 48px;
            height: 48px;
            background: var(--signal-red);
            color: white;
            font-family: var(--font-display);
            font-size: 20px;
            font-weight: 700;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto var(--space-lg);
        }
        
        .expect-item h3 {
            font-family: var(--font-display);
            font-size: 20px;
            font-weight: 600;
            color: var(--charcoal);
            margin-bottom: var(--space-md);
        }
        
        .expect-item p {
            font-family: var(--font-body);
            font-size: 15px;
            color: var(--soft-gray);
            line-height: 1.7;
        }
        
        /* ═══════════════════════════════════════════════════════════
           FAQ SECTION
           ═══════════════════════════════════════════════════════════ */
        
        .faq-section {
            padding: var(--space-4xl) var(--space-2xl);
            background: var(--blush);
        }
        
        .faq-inner {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .faq-header {
            text-align: center;
            margin-bottom: var(--space-3xl);
        }
        
        .faq-list {
            display: flex;
            flex-direction: column;
            gap: var(--space-lg);
        }
        
        .faq-item {
            background: var(--warm-white);
            border-radius: 16px;
            padding: var(--space-xl);
            box-shadow: var(--shadow-sm);
        }
        
        .faq-question {
            font-family: var(--font-display);
            font-size: 20px;
            font-weight: 600;
            color: var(--charcoal);
            margin-bottom: var(--space-md);
            display: flex;
            align-items: flex-start;
            gap: var(--space-md);
        }
        
        .faq-question::before {
            content: 'Q';
            flex-shrink: 0;
            width: 28px;
            height: 28px;
            background: var(--signal-red);
            color: white;
            font-family: var(--font-display);
            font-size: 14px;
            font-weight: 700;
            border-radius: 6px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .faq-answer {
            font-family: var(--font-body);
            font-size: 16px;
            color: var(--soft-gray);
            line-height: 1.7;
            padding-left: 44px;
        }
        
        /* ═══════════════════════════════════════════════════════════
           LOCATION SECTION
           ═══════════════════════════════════════════════════════════ */
        
        .location-section {
            padding: var(--space-4xl) var(--space-2xl);
            background: var(--cream);
        }
        
        .location-inner {
            max-width: 900px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: var(--space-3xl);
            align-items: center;
        }
        
        .location-content h2 {
            font-family: var(--font-display);
            font-size: 32px;
            font-weight: 600;
            color: var(--charcoal);
            margin-bottom: var(--space-lg);
        }
        
        .location-content h2 em {
            font-style: italic;
            color: var(--signal-red);
        }
        
        .location-content p {
            font-family: var(--font-body);
            font-size: 17px;
            color: var(--soft-gray);
            line-height: 1.7;
            margin-bottom: var(--space-xl);
        }
        
        .location-details {
            display: flex;
            flex-direction: column;
            gap: var(--space-md);
        }
        
        .location-detail {
            display: flex;
            align-items: center;
            gap: var(--space-md);
            font-family: var(--font-body);
            font-size: 16px;
            color: var(--charcoal);
        }
        
        .location-detail svg {
            width: 20px;
            height: 20px;
            stroke: var(--signal-red);
            flex-shrink: 0;
        }
        
        .location-map {
            background: var(--warm-white);
            border-radius: 20px;
            overflow: hidden;
            box-shadow: var(--shadow-lg);
            aspect-ratio: 4/3;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }
        
        .location-map-placeholder {
            text-align: center;
            padding: var(--space-2xl);
        }
        
        .location-map-placeholder p {
            font-family: var(--font-body);
            font-size: 14px;
            color: var(--soft-gray);
        }
        
        .location-badge {
            position: absolute;
            bottom: var(--space-lg);
            left: var(--space-lg);
            background: var(--deep-navy);
            color: white;
            font-family: var(--font-body);
            font-size: 12px;
            font-weight: 600;
            padding: 12px 20px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .location-badge svg {
            width: 16px;
            height: 16px;
            stroke: var(--warm-gold);
        }
        
        /* ═══════════════════════════════════════════════════════════
           FINAL CTA
           ═══════════════════════════════════════════════════════════ */
        
        .cta-section {
            padding: var(--space-4xl) var(--space-2xl);
            background: var(--deep-navy);
            text-align: center;
        }
        
        .cta-content {
            max-width: 700px;
            margin: 0 auto;
        }
        
        .cta-headline {
            font-family: var(--font-display);
            font-size: clamp(32px, 4vw, 48px);
            font-weight: 700;
            color: white;
            margin-bottom: var(--space-lg);
            line-height: 1.15;
        }
        
        .cta-headline em {
            font-style: italic;
            color: var(--warm-gold);
        }
        
        .cta-text {
            font-family: var(--font-body);
            font-size: 18px;
            color: rgba(255,255,255,0.8);
            margin-bottom: var(--space-2xl);
            line-height: 1.7;
        }
        
        .btn-primary {
            background: var(--signal-red);
            color: white;
            font-family: var(--font-body);
            font-weight: 600;
            font-size: 16px;
            padding: 18px 36px;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: all 0.2s ease;
            box-shadow: var(--shadow-md);
        }
        
        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-lg), var(--shadow-glow);
        }
        
        .btn-primary svg {
            width: 20px;
            height: 20px;
            stroke: currentColor;
        }
        
        /* ═══════════════════════════════════════════════════════════
           FOOTER
           ═══════════════════════════════════════════════════════════ */
        
        .footer {
            background: var(--charcoal);
            color: white;
            padding: var(--space-3xl) var(--space-2xl);
        }
        
        .footer-inner {
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .footer-main {
            display: grid;
            grid-template-columns: 1.5fr 1fr 1fr 1fr;
            gap: var(--space-2xl);
            padding-bottom: var(--space-2xl);
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }
        
        .footer-brand h3 {
            font-family: var(--font-display);
            font-size: 24px;
            font-weight: 700;
            margin-bottom: var(--space-md);
        }
        
        .footer-brand h3 span { color: var(--signal-red); }
        
        .footer-brand p {
            font-size: 15px;
            color: rgba(255,255,255,0.7);
            margin-bottom: var(--space-lg);
            line-height: 1.7;
        }
        
        .footer-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--warm-gold);
            color: white;
            font-size: 11px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            padding: 8px 14px;
            border-radius: 100px;
        }
        
        .footer-column h4 {
            font-family: var(--font-body);
            font-size: 13px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: rgba(255,255,255,0.5);
            margin-bottom: var(--space-lg);
        }
        
        .footer-column a {
            display: block;
            font-size: 15px;
            color: rgba(255,255,255,0.8);
            text-decoration: none;
            margin-bottom: var(--space-md);
            transition: color 0.2s ease;
        }
        
        .footer-column a:hover { color: var(--warm-gold); }
        
        .footer-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: var(--space-xl);
        }
        
        .footer-bottom p {
            font-size: 14px;
            color: rgba(255,255,255,0.5);
        }
        
        /* ═══════════════════════════════════════════════════════════
           RESPONSIVE
           ═══════════════════════════════════════════════════════════ */
        
        @media (max-width: 1024px) {
            .contact-grid {
                grid-template-columns: 1fr 1fr;
            }
            
            .contact-card.featured {
                grid-column: span 2;
                grid-row: span 1;
            }
            
            .location-inner {
                grid-template-columns: 1fr;
            }
            
            .footer-main { grid-template-columns: 1fr 1fr; }
        }
        
        @media (max-width: 768px) {
            .nav-links { display: none; }
            .nav-mobile { display: block; }
            
            .hero { padding: 120px var(--space-lg) var(--space-3xl); }
            
            .contact-grid {
                grid-template-columns: 1fr;
            }
            
            .contact-card.featured {
                grid-column: span 1;
            }
            
            .expect-grid {
                grid-template-columns: 1fr;
            }
            
            .footer-main { grid-template-columns: 1fr; text-align: center; }
            
            .footer-bottom {
                flex-direction: column;
                gap: var(--space-md);
                text-align: center;
            }
        }
        
        /* ═══════════════════════════════════════════════════════════
           ANIMATIONS
           ═══════════════════════════════════════════════════════════ */
        
        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        .hero-inner { animation: fadeInUp 0.8s ease; }
        
        .contact-card { animation: fadeInUp 0.6s ease both; }
        .contact-card:nth-child(1) { animation-delay: 0.1s; }
        .contact-card:nth-child(2) { animation-delay: 0.2s; }
        .contact-card:nth-child(3) { animation-delay: 0.3s; }
        
        .expect-item { animation: fadeInUp 0.5s ease both; }
        .expect-item:nth-child(1) { animation-delay: 0.1s; }
        .expect-item:nth-child(2) { animation-delay: 0.15s; }
        .expect-item:nth-child(3) { animation-delay: 0.2s; }
        
        .faq-item { animation: fadeInUp 0.5s ease both; }
        .faq-item:nth-child(1) { animation-delay: 0.1s; }
        .faq-item:nth-child(2) { animation-delay: 0.15s; }
        .faq-item:nth-child(3) { animation-delay: 0.2s; }
        .faq-item:nth-child(4) { animation-delay: 0.25s; }
