/* 
   B.E.S.T. Business Alliance Style Sheet
   Theme: Executive Portal (Obsidian, Sandstone Gold, Compliance Emerald Accents)
*/

:root {
    --primary-color: #0f172a;       /* Slate 900 */
    --primary-dark: #0a0f1d;        /* Deep Obsidian */
    --accent-color: #d97706;        /* Sandstone Gold */
    --accent-dark: #c2410c;         /* Sunset Copper */
    --compliance-color: #10b981;    /* Compliance Green */
    --bg-light: #f8fafc;            /* Light Slate (Slate 50) */
    --bg-card: #ffffff;
    --text-main: #475569;           /* Slate 600 */
    --text-dark: #0f172a;
    --border-color: #e2e8f0;        /* Slate 200 */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --transition-speed: 0.4s;
    --transition-ease: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-main);
    background-color: #ffffff;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Typography */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    color: var(--text-dark);
    font-weight: 700;
}

.text-gradient {
    background: linear-gradient(135deg, var(--accent-color), #fbbf24);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Buttons */
.cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    border-radius: 6px;
    transition: all var(--transition-speed) var(--transition-ease);
    cursor: pointer;
    border: none;
}

.primary-btn {
    background-color: var(--accent-color);
    color: #ffffff;
    box-shadow: 0 4px 14px rgba(217, 119, 6, 0.3);
}

.primary-btn:hover {
    background-color: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(217, 119, 6, 0.5);
}

.secondary-btn {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.secondary-btn:hover {
    background-color: #ffffff;
    color: var(--primary-color);
    border-color: #ffffff;
    transform: translateY(-2px);
}

.small-btn {
    padding: 8px 16px;
    font-size: 0.7rem;
    letter-spacing: 0.1em;
}

.w-full-btn {
    width: 100%;
    text-align: center;
}

/* Section Common Styling */
section {
    padding: 100px 0;
    position: relative;
}

.section-badge {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--accent-color);
    font-weight: 700;
    display: block;
    margin-bottom: 12px;
}

.h-divider {
    width: 60px;
    height: 3px;
    background-color: var(--accent-color);
    margin: 20px 0 30px 0;
    border-radius: 2px;
}

.h-divider.align-center {
    margin-left: auto;
    margin-right: auto;
}

.text-center-box {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px auto;
}

.text-center-box h2 {
    font-size: 2.5rem;
    line-height: 1.15;
}

/* Shadow Card System */
.shadow-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.02);
    transition: all var(--transition-speed) var(--transition-ease);
}

.border-glow {
    position: relative;
    border-color: var(--border-color);
}

.border-glow:hover {
    border-color: rgba(217, 119, 6, 0.4);
    box-shadow: 0 10px 30px rgba(217, 119, 6, 0.05);
}

/* Header & Logo */
.main-header {
    background-color: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    display: flex;
    flex-direction: column;
}

.logo-main {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--primary-dark);
    line-height: 1;
    letter-spacing: -0.02em;
}

.logo-sub {
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--accent-color);
    margin-top: 2px;
    line-height: 1;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.main-nav a:not(.cta-btn) {
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-main);
    padding: 6px 0;
}

.main-nav a:not(.cta-btn):hover {
    color: var(--accent-color);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.mobile-toggle .line {
    width: 24px;
    height: 2px;
    background-color: var(--primary-dark);
    transition: all 0.3s ease;
}

/* Hero Section (Cinema Split screen) */
.hero {
    position: relative;
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 120px 0;
    color: #ffffff;
}

.hero-bg-split {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.hero-bg-left, .hero-bg-right {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('assets/hero.jpg');
    background-size: cover;
    background-position: center;
    z-index: 0;
    will-change: transform;
}

.hero-bg-left {
    clip-path: inset(0 50% 0 0);
    transform: translateX(-100%);
}

.hero-bg-right {
    clip-path: inset(0 0 0 50%);
    transform: translateX(100%);
}

@keyframes slideInLeft {
    from { transform: translateX(-100%); }
    to { transform: translateX(0); }
}

@keyframes slideInRight {
    from { transform: translateX(100%); }
    to { transform: translateX(0); }
}

@keyframes zoomDrift {
    0% { transform: scale(1) translate(0, 0); }
    50% { transform: scale(1.03) translate(-0.5%, -0.5%); }
    100% { transform: scale(1) translate(0, 0); }
}

.hero-bg-left.animate-entry {
    animation: slideInLeft 1.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-bg-right.animate-entry {
    animation: slideInRight 1.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-bg-left.drift, .hero-bg-right.drift {
    animation: zoomDrift 24s ease-in-out infinite;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: gradient;
    background: radial-gradient(circle at 20% 50%, rgba(10, 15, 29, 0.95) 0%, rgba(10, 15, 29, 0.7) 100%);
    z-index: 10;
}

.hero-content {
    position: relative;
    z-index: 20;
}

.hero-content h1 {
    font-size: 3.8rem;
    line-height: 1.15;
    color: #ffffff;
    margin-bottom: 20px;
    letter-spacing: -0.03em;
}

.hero-content p {
    font-size: 1.15rem;
    max-width: 620px;
    color: #cbd5e1;
    margin-bottom: 36px;
}

.hero-content .badge {
    display: inline-block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--accent-color);
    background-color: rgba(217, 119, 6, 0.1);
    border: 1px solid rgba(217, 119, 6, 0.3);
    padding: 6px 14px;
    margin-bottom: 24px;
    font-weight: 700;
    border-radius: 30px;
}

.hero-actions {
    display: flex;
    gap: 16px;
}

/* Staggered Content entrance animation for Hero */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content .badge,
.hero-content h1,
.hero-content p,
.hero-content .hero-actions {
    opacity: 0;
}

.hero-content.animate-content .badge {
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.4s;
}

.hero-content.animate-content h1 {
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.6s;
}

.hero-content.animate-content p {
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.8s;
}

.hero-content.animate-content .hero-actions {
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 1.0s;
}

/* Horizontal Ticker / Marquee */
.marquee-bar {
    background-color: var(--primary-dark);
    border-y: 1px solid rgba(255, 255, 255, 0.05);
    py: 16px;
    overflow: hidden;
    position: relative;
    padding: 16px 0;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.marquee-content {
    display: flex;
    width: max-content;
    animation: marquee 30s linear infinite;
    gap: 48px;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #cbd5e1;
}

.marquee-content:hover {
    animation-play-state: paused;
}

.marquee-content .dot {
    color: var(--accent-color);
}

.marquee-content .compliance-highlight {
    color: var(--compliance-color);
}

/* About Section */
.about-section {
    background-color: #ffffff;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-text h2 {
    font-size: 2.8rem;
    line-height: 1.15;
    margin-bottom: 24px;
}

.about-text p.lead {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-weight: 500;
}

.about-text p {
    margin-bottom: 24px;
}

.stat-boxes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 36px;
    border-top: 1px solid var(--border-color);
    padding-top: 28px;
}

.stat-box h3 {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 4px;
}

.stat-box p {
    font-size: 0.75rem;
    color: var(--text-main);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 700;
    margin: 0;
}

.about-illustration {
    position: relative;
}

.illus-card {
    padding: 40px;
}

.illus-card h4 {
    font-size: 1.3rem;
    margin-bottom: 24px;
    letter-spacing: -0.01em;
}

.illus-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.illus-list li {
    display: flex;
    gap: 16px;
}

.illus-list li .bullet {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: rgba(217, 119, 6, 0.1);
    color: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.8rem;
    flex-shrink: 0;
}

.illus-list li strong {
    display: block;
    font-size: 0.95rem;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.illus-list li p {
    font-size: 0.85rem;
    color: var(--text-main);
    margin: 0;
    line-height: 1.5;
}

/* How It Works Section */
.how-section {
    background-color: var(--bg-light);
}

.how-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.how-card {
    padding: 40px;
    position: relative;
}

.how-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 900;
    color: rgba(217, 119, 6, 0.1);
    position: absolute;
    top: 24px;
    right: 32px;
    line-height: 1;
}

.how-card h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
    margin-top: 16px;
}

.how-card p {
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Meeting Section & Countdown Widget */
.meeting-section {
    background-color: #ffffff;
}

.meeting-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.meeting-details-box h2 {
    font-size: 2.8rem;
    margin-bottom: 24px;
}

.rule-bullets {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 36px;
}

.rule-item {
    display: flex;
    gap: 16px;
}

.rule-icon {
    font-size: 1.8rem;
    line-height: 1;
    flex-shrink: 0;
}

.rule-item strong {
    display: block;
    font-size: 0.95rem;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.rule-item p {
    font-size: 0.85rem;
    color: var(--text-main);
    margin: 0;
    line-height: 1.5;
}

/* Countdown Card */
.countdown-card {
    padding: 48px;
    background-color: var(--primary-dark);
    color: #ffffff;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(10, 15, 29, 0.25);
}

.calc-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--accent-color);
    font-weight: 700;
    display: block;
    margin-bottom: 24px;
}

.countdown-display {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 28px;
}

.countdown-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 64px;
}

.countdown-unit .num {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
}

.countdown-unit .label {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #94a3b8;
    margin-top: 8px;
    font-weight: 700;
}

.meeting-date-display {
    font-size: 0.85rem;
    color: #cbd5e1;
    margin-bottom: 32px;
    font-weight: 500;
}

/* Member Benefits Section */
.benefits-section {
    background-color: var(--bg-light);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.benefit-card {
    padding: 40px;
}

.benefit-icon {
    font-size: 2rem;
    margin-bottom: 24px;
    line-height: 1;
}

.benefit-card h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.benefit-card p {
    font-size: 0.85rem;
    line-height: 1.6;
}

/* Category Checker Widget */
.checker-section {
    background-color: #ffffff;
}

.checker-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 80px;
    align-items: center;
}

.checker-text h2 {
    font-size: 2.8rem;
    margin-bottom: 24px;
}

.checker-text p.lead {
    font-size: 1.15rem;
    color: var(--text-dark);
    font-weight: 500;
    margin-bottom: 20px;
}

.checker-text p {
    margin-bottom: 20px;
}

.checker-card {
    padding: 40px;
}

.checker-card h3 {
    font-size: 1.3rem;
    margin-bottom: 24px;
    color: var(--text-dark);
}

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

.form-group label {
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-dark);
    font-weight: 700;
    margin-bottom: 8px;
}

/* Select Styling Wrapper */
.select-wrapper {
    position: relative;
}

.select-wrapper select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    background-color: var(--bg-light);
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--text-dark);
    border-radius: 6px;
    appearance: none;
    cursor: pointer;
}

.select-wrapper::after {
    content: '';
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 5px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="8" height="5" viewBox="0 0 8 5"><path fill="%23475569" d="M0 0h8L4 5z"/></svg>');
    background-size: cover;
    pointer-events: none;
}

/* Result Box */
.checker-result-box {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--border-color);
    animation: fadeInUp 0.4s ease forwards;
}

.result-badge {
    display: inline-block;
    padding: 4px 16px;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 12px;
}

.result-badge.available {
    background-color: rgba(16, 185, 129, 0.1);
    color: var(--compliance-color);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.result-badge.locked {
    background-color: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.result-message {
    font-size: 0.85rem;
    color: var(--text-main);
    margin-bottom: 24px;
    line-height: 1.5;
}

/* Contact Portal & Form */
.contact-section {
    background-color: var(--bg-light);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
}

.contact-form-card {
    padding: 40px;
}

.contact-form-card h3 {
    font-size: 1.5rem;
}

.attendance-form {
    margin-top: 28px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact-form-card input, 
.contact-form-card textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    background-color: var(--bg-light);
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: var(--text-dark);
    border-radius: 6px;
    transition: all 0.3s ease;
}

.contact-form-card input:focus, 
.contact-form-card textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    background-color: #ffffff;
}

.contact-form-card textarea {
    height: 100px;
    resize: vertical;
}

.submit-btn {
    margin-top: 10px;
}

.form-feedback {
    display: none;
    padding: 12px 16px;
    font-size: 0.85rem;
    border-radius: 6px;
    margin-bottom: 16px;
}

.form-feedback.success {
    display: block;
    background-color: #ecfdf5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}

.form-feedback.error {
    display: block;
    background-color: #fef2f2;
    color: #991b1b;
    border: 1px solid #fca5a5;
}

.newsletter-card-box {
    display: flex;
    flex-direction: column;
}

.n-item h4 {
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.contact-email {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--accent-color);
}

.contact-email a:hover {
    color: var(--primary-color);
}

.n-desc {
    font-size: 0.85rem;
    color: #cbd5e1;
    margin-bottom: 20px;
    line-height: 1.5;
}

.n-form {
    display: flex;
    gap: 12px;
}

.n-form input {
    flex-1;
    width: 65%;
    padding: 10px 14px;
    border: 1px solid rgba(255,255,255,0.1);
    background-color: var(--primary-dark);
    font-family: var(--font-body);
    font-size: 0.8rem;
    color: #ffffff;
    border-radius: 6px;
}

.n-form input:focus {
    outline: none;
    border-color: var(--accent-color);
}

/* Footer Section */
.site-footer {
    background-color: var(--primary-dark);
    color: #94a3b8;
    padding: 80px 0 0 0;
}

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

.footer-brand .footer-logo {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 900;
    color: #ffffff;
    display: block;
    line-height: 1;
}

.footer-brand .footer-tag {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.35em;
    color: var(--accent-color);
    display: block;
    margin-top: 4px;
    margin-bottom: 20px;
    font-weight: 700;
}

.footer-brand p {
    font-size: 0.85rem;
    line-height: 1.6;
}

.footer-links h4, .footer-info h4 {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #ffffff;
    margin-bottom: 24px;
    font-weight: 700;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 0.85rem;
}

.footer-links a:hover {
    color: #ffffff;
    padding-left: 4px;
}

.footer-info p {
    font-size: 0.85rem;
    margin-bottom: 12px;
}

.footer-copy-box {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 30px 24px;
    font-size: 0.8rem;
    color: #64748b;
}

/* Outreach Claim Banner */
.outreach-banner {
    background-color: #05070c;
    border-top: 1px solid rgba(255,255,255,0.05);
    color: #64748b;
    padding: 24px 0;
    font-size: 0.75rem;
    text-align: center;
    line-height: 1.5;
}

.banner-highlight {
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 700;
}

/* Pulse animation for category search indicator */
.animate-pulse-indicator h3 {
    animation: indicatorPulse 2s infinite;
}

@keyframes indicatorPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); color: #fbbf24; }
    100% { transform: scale(1); }
}

/* Scroll Reveal */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s var(--transition-ease), transform 0.8s var(--transition-ease);
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Overrides */
@media (max-width: 1024px) {
    .about-grid, .meeting-grid, .checker-grid, .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .how-grid, .benefits-grid {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    .footer-info {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }
    .header-container {
        height: 70px;
    }
    .main-nav {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: #ffffff;
        flex-direction: column;
        justify-content: center;
        gap: 28px;
        transform: translateX(100%);
        transition: transform 0.4s var(--transition-ease);
        z-index: 99;
        box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    }
    .main-nav.active {
        transform: translateX(0);
    }
    .main-nav a:not(.cta-btn) {
        font-size: 1rem;
    }
    .mobile-toggle {
        display: flex;
    }
    .mobile-toggle.active .line:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    .mobile-toggle.active .line:nth-child(2) {
        opacity: 0;
    }
    .mobile-toggle.active .line:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    .hero {
        height: 70vh;
        min-height: 460px;
    }
    .hero-content h1 {
        font-size: 2.4rem;
    }
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .footer-info {
        grid-column: span 1;
    }
}
