/* landing.css - Premium Stylesheet for ClearOak Redesigned Landing Page */

/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

:root {
    /* Color Palette */
    --color-dark-navy: #0b0f19;
    --color-brand-navy: #151e33;
    --color-brand-blue: #1e2d4a;
    --color-accent-gold: #c5a880;
    --color-accent-gold-hover: #b4966e;
    --color-text-white: #ffffff;
    --color-text-muted: #9ca3af;
    --color-text-dark: #e5e7eb;
    --color-bg-light: #0b0f19;
    --color-bg-white: #151e33;
    
    /* Subtle borders */
    --border-light: rgba(21, 30, 51, 0.08);
    --border-dark: rgba(255, 255, 255, 0.08);
    
    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    
    /* Transitions */
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Base Settings */
html {
    scroll-behavior: smooth;
}

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

body {
    font-family: var(--font-body);
    color: var(--color-text-white);
    background-color: var(--color-dark-navy);
    line-height: 1.65;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    transition: background-color 0.8s ease;
}

/* Animated Ambient Background */
.animated-bg {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.35;
    animation: floatOrb 20s infinite alternate ease-in-out;
}

.orb-1 {
    width: 40vw; height: 40vw;
    background: radial-gradient(circle, rgba(197, 168, 128, 0.15) 0%, transparent 70%);
    top: -10%; left: -10%;
    animation-duration: 25s;
}

.orb-2 {
    width: 35vw; height: 35vw;
    background: radial-gradient(circle, rgba(30, 45, 74, 0.4) 0%, transparent 70%);
    bottom: -10%; right: -5%;
    animation-delay: -5s;
    animation-duration: 22s;
}

.orb-3 {
    width: 30vw; height: 30vw;
    background: radial-gradient(circle, rgba(197, 168, 128, 0.1) 0%, transparent 70%);
    top: 40%; left: 60%;
    animation-delay: -10s;
    animation-duration: 28s;
}

@keyframes floatOrb {
    0% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(5%, 10%) scale(1.1); }
    66% { transform: translate(-5%, 5%) scale(0.9); }
    100% { transform: translate(10%, -5%) scale(1); }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--color-dark-navy);
}
::-webkit-scrollbar-thumb {
    background: var(--color-accent-gold);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--color-accent-gold-hover);
}

/* Global Typography & Containers */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    color: var(--color-text-white);
    font-weight: 600;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.9rem 2.2rem;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: 1px solid transparent;
    text-decoration: none;
}

.btn-gold {
    background-color: var(--color-accent-gold);
    color: var(--color-dark-navy);
}

.btn-gold:hover {
    background-color: var(--color-accent-gold-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(197, 168, 128, 0.15);
}

.btn-outline-light {
    border-color: var(--border-dark);
    color: var(--color-text-white);
    background: transparent;
    backdrop-filter: blur(5px);
}

.btn-outline-light:hover {
    background: var(--color-text-white);
    color: var(--color-dark-navy);
    transform: translateY(-2px);
}

.btn-outline-dark {
    border-color: var(--color-dark-navy);
    color: var(--color-dark-navy);
    background: transparent;
}

.btn-outline-dark:hover {
    background: var(--color-dark-navy);
    color: var(--color-text-white);
    transform: translateY(-2px);
}

/* Floating Navigation Header */
header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1.5rem 0;
}

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

.logo img {
    height: 54px;
    width: auto;
}

.nav-menu ul {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-menu a {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    text-decoration: none;
    font-weight: 400;
    transition: var(--transition-smooth);
    position: relative;
    padding-bottom: 4px;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--color-accent-gold);
    transition: var(--transition-smooth);
}

.nav-menu a:hover {
    color: var(--color-text-white);
}

.nav-menu a:hover::after {
    width: 100%;
}

.mobile-toggle {
    display: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Premium Hero Section */
.hero {
    position: relative;
    background-color: transparent;
    background-image: radial-gradient(circle at 70% 30%, rgba(30, 45, 74, 0.35) 0%, transparent 60%), url('hero-bg-horizon.png');
    background-size: cover;
    background-position: center;
    min-height: 100vh;
    display: flex;
    align-items: center;
    color: var(--color-text-white);
    padding-top: 8rem;
    padding-bottom: 4rem;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(11, 15, 25, 0.5) 0%, rgba(11, 15, 25, 0.9) 100%);
    z-index: 1;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-glass-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.01) 100%);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 4rem;
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    animation: fadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-tagline {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--color-accent-gold);
    margin-bottom: 1.5rem;
    display: inline-block;
}

.hero h1 {
    font-size: 4.2rem;
    color: var(--color-text-white);
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero h1 span {
    font-style: italic;
    color: var(--color-accent-gold);
    font-weight: 400;
    display: block;
    margin-top: 0.5rem;
}

.hero p {
    font-size: 1.15rem;
    color: var(--color-text-muted);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.hero-ctas {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

/* Floating Mockup / Dashboard Panel */
.hero-visual {
    position: relative;
    animation: floatPanel 6s ease-in-out infinite;
}

.dashboard-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.card-header-sub {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-accent-gold);
    margin-bottom: 0.5rem;
}

.dashboard-card h3 {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.metrics-list {
    display: grid;
    gap: 1.25rem;
}

.metric-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 0.75rem;
}

.metric-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

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

.metric-val {
    font-family: var(--font-body);
    font-weight: 600;
    color: white;
}

.metric-val.positive {
    color: #34d399;
}

/* Trust & Stats Section */
.stats-bar {
    background-color: var(--color-dark-navy);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 3rem 0;
    position: relative;
    z-index: 5;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.stat-item {
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.stat-item:last-child {
    border-right: none;
}

.stat-num {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    color: var(--color-accent-gold);
    line-height: 1;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.stat-lbl {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-text-muted);
}

/* Interactive Tabs Section - Our Process */
.process-section {
    padding: 8rem 0;
    background-color: transparent;
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.section-title span {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--color-accent-gold);
    display: block;
    margin-bottom: 1rem;
}

.section-title h2 {
    font-size: 3.2rem;
    line-height: 1.15;
    color: var(--color-text-white);
}

.timeline-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding-left: 2rem;
}

.timeline-line {
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
}

.timeline-progress {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 0;
    background: var(--color-accent-gold);
    border-radius: 4px;
    transition: height 0.1s ease;
    box-shadow: 0 0 10px rgba(197, 168, 128, 0.5);
}

.timeline-progress::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: -2px;
    width: 8px;
    height: 8px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 0 12px 4px rgba(197, 168, 128, 0.8);
}

.timeline-step {
    position: relative;
    margin-bottom: 4rem;
    padding-left: 3rem;
}

.timeline-step:last-child {
    margin-bottom: 0;
}

.timeline-dot {
    position: absolute;
    left: -2.8rem;
    top: 2rem;
    width: 48px;
    height: 48px;
    background: var(--color-brand-navy);
    border: 2px solid var(--color-accent-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: white;
    font-family: var(--font-heading);
    z-index: 2;
    box-shadow: 0 0 15px rgba(197, 168, 128, 0.2);
}

.timeline-content {
    background-color: var(--color-brand-navy);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 3rem;
    box-shadow: 
        -8px -8px 16px rgba(255, 255, 255, 0.04), 
        8px 8px 16px rgba(0, 0, 0, 0.6),
        inset 1px 1px 2px rgba(255, 255, 255, 0.08),
        inset -1px -1px 2px rgba(0, 0, 0, 0.4);
}

.tab-text {
    max-width: 100%;
}

.tab-num {
    font-size: 1.25rem;
    font-family: var(--font-body);
    font-weight: 600;
    color: var(--color-accent-gold);
    margin-bottom: 1rem;
    display: inline-block;
}

.tab-text h3 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.tab-text p {
    color: var(--color-text-muted);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.tab-features {
    display: grid;
    gap: 1rem;
}

.tab-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-text-white);
}

.tab-feature svg {
    color: var(--color-accent-gold);
    flex-shrink: 0;
}

.tab-image img {
    border-radius: 8px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border-light);
    max-height: 350px;
    width: 100%;
    object-fit: cover;
}

/* Capabilities Grid Section */
.capabilities-section {
    padding: 8rem 0;
    background-color: transparent;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.capability-card {
    background-color: var(--color-brand-navy);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 3rem 2.5rem;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    /* Embossed Neumorphism */
    box-shadow: 
        -8px -8px 16px rgba(255, 255, 255, 0.04), 
        8px 8px 16px rgba(0, 0, 0, 0.6),
        inset 1px 1px 2px rgba(255, 255, 255, 0.08),
        inset -1px -1px 2px rgba(0, 0, 0, 0.4);
}

.capability-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: var(--color-accent-gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition-smooth);
}

.capability-card:hover {
    transform: translateY(-8px);
    box-shadow: 
        -12px -12px 24px rgba(255, 255, 255, 0.05), 
        12px 12px 24px rgba(0, 0, 0, 0.8),
        inset 1px 1px 3px rgba(255, 255, 255, 0.1),
        inset -1px -1px 3px rgba(0, 0, 0, 0.5);
    border-color: rgba(197, 168, 128, 0.3);
}

.capability-card:hover::before {
    transform: scaleX(1);
}

.card-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: rgba(197, 168, 128, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    color: var(--color-accent-gold);
    transition: var(--transition-smooth);
}

.capability-card:hover .card-icon {
    background-color: var(--color-accent-gold);
    color: var(--color-dark-navy);
}

@keyframes iconDrawQuick {
    0% { stroke-dasharray: 200; stroke-dashoffset: 200; }
    100% { stroke-dasharray: 200; stroke-dashoffset: 0; }
}

.capability-card:hover .card-icon svg {
    animation: iconDrawQuick 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.capability-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1.25rem;
    font-weight: 500;
}

.capability-card p {
    color: var(--color-text-muted);
    font-size: 0.98rem;
    line-height: 1.7;
}

/* Comparison Advantage Section */
.comparison-section {
    padding: 8rem 0;
    background-color: transparent;
}

.comparison-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    overflow: hidden;
    background: var(--color-brand-navy);
    /* Embossed Neumorphism */
    box-shadow: 
        -10px -10px 20px rgba(255, 255, 255, 0.03), 
        10px 10px 20px rgba(0, 0, 0, 0.6),
        inset 1px 1px 2px rgba(255, 255, 255, 0.08),
        inset -1px -1px 2px rgba(0, 0, 0, 0.4);
}

.comparison-col {
    padding: 4rem 3.5rem;
}

.comparison-col.brand {
    background-color: var(--color-dark-navy);
    color: white;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.comparison-col h3 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    font-weight: 400;
}

.comparison-col.brand h3 {
    color: white;
}

.comparison-col.brand h3 span {
    color: var(--color-accent-gold);
}

.comparison-list {
    display: grid;
    gap: 1.75rem;
}

.comparison-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.comparison-item svg {
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.comparison-item-text h4 {
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.comparison-col.brand .comparison-item-text h4 {
    color: white;
}

.comparison-item-text p {
    font-size: 0.95rem;
    color: var(--color-text-muted);
}

.comparison-col.brand .comparison-item-text p {
    color: var(--color-text-muted);
}

/* Luxury Testimonial Section */
.testimonial-section {
    padding: 8rem 0;
    background-color: transparent;
    color: white;
    position: relative;
    background-image: radial-gradient(circle at 10% 80%, rgba(30, 45, 74, 0.2) 0%, transparent 50%);
}

.testimonial-card {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.quote-icon {
    font-family: var(--font-heading);
    font-size: 6rem;
    color: rgba(197, 168, 128, 0.15);
    line-height: 1;
    height: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.testimonial-card blockquote {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-style: italic;
    font-weight: 400;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
}

.client-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.client-name {
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: white;
}

.client-title {
    font-size: 0.85rem;
    color: var(--color-accent-gold);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Call to Action Banner */
.cta-banner {
    padding: 6rem 0;
    background-color: transparent;
}

.cta-box {
    background-color: var(--color-brand-navy);
    border-radius: 12px;
    padding: 5rem 4rem;
    text-align: center;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.05);
    /* Embossed Neumorphism */
    box-shadow: 
        -12px -12px 24px rgba(255, 255, 255, 0.03), 
        12px 12px 24px rgba(0, 0, 0, 0.6),
        inset 1px 1px 3px rgba(255, 255, 255, 0.08),
        inset -1px -1px 3px rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at center, rgba(197, 168, 128, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.cta-box h2 {
    color: white;
    font-size: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 400;
    line-height: 1.2;
}

.cta-box p {
    color: var(--color-text-muted);
    font-size: 1.15rem;
    max-width: 600px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
}

/* Premium Footer */
footer {
    background-color: var(--color-dark-navy);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: white;
    padding: 4rem 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo img {
    height: 52px;
}

/* Animations */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes floatPanel {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0);
    }
}

/* Reveal on Scroll styling */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* Responsive Media Queries */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 3.5rem;
    }
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    .hero-content {
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .hero-ctas {
        justify-content: center;
    }
    .hero-visual {
        max-width: 500px;
        margin: 0 auto;
        width: 100%;
    }
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem 1.5rem;
    }
    .stat-item {
        border-right: none;
    }
    .stat-item:nth-child(odd) {
        border-right: 1px solid rgba(255, 255, 255, 0.05);
    }
    .comparison-box {
        grid-template-columns: 1fr;
    }
    .comparison-col.brand {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
}

@media (max-width: 900px) {
    .capabilities-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .tab-pane {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .tab-image {
        order: -1;
    }
    .tab-image img {
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    header {
        background-color: var(--color-dark-navy);
        position: fixed;
    }
    .nav-menu {
        display: none;
        position: absolute;
        top: 74px;
        left: 0;
        width: 100%;
        background-color: var(--color-dark-navy);
        padding: 2rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
    .nav-menu.active {
        display: block;
    }
    .nav-menu ul {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }
    .header-cta {
        display: none;
    }
    .mobile-toggle {
        display: block;
    }
    .hero h1 {
        font-size: 2.8rem;
    }
    .section-title h2 {
        font-size: 2.4rem;
    }
    .tabs-nav {
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    .tab-btn {
        font-size: 0.95rem;
        padding: 0.5rem 1rem;
    }
    .testimonial-card blockquote {
        font-size: 1.6rem;
    }
    .cta-box {
        padding: 3.5rem 2rem;
    }
    .cta-box h2 {
        font-size: 2.2rem;
    }
    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
}

/* FAQ Section */
.faq-section {
    padding: 8rem 0;
    min-height: 80vh;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.faq-item {
    cursor: pointer;
    background-color: var(--color-brand-navy);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition-smooth);
    /* Embossed Neumorphism */
    box-shadow: 
        -6px -6px 12px rgba(255, 255, 255, 0.03), 
        6px 6px 12px rgba(0, 0, 0, 0.5),
        inset 1px 1px 2px rgba(255, 255, 255, 0.06),
        inset -1px -1px 2px rgba(0, 0, 0, 0.3);
}

.faq-item:hover {
    box-shadow: 
        -8px -8px 16px rgba(255, 255, 255, 0.04), 
        8px 8px 16px rgba(0, 0, 0, 0.6);
    border-color: rgba(197, 168, 128, 0.2);
}

.faq-question {
    padding: 2rem 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.3rem;
    font-weight: 500;
}

.dropdown-icon {
    width: 14px;
    height: 14px;
    border-right: 2px solid var(--color-accent-gold);
    border-bottom: 2px solid var(--color-accent-gold);
    transform: rotate(45deg);
    transition: transform 0.3s ease;
    margin-top: -5px;
}

.faq-item.active .dropdown-icon {
    transform: rotate(-135deg);
    margin-top: 5px;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 2.5rem;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
    padding: 0 2.5rem 2rem 2.5rem;
    max-height: 800px;
}

.faq-answer p {
    color: var(--color-text-white);
    line-height: 1.7;
    margin: 0;
}

/* Contact Section */
.contact-section {
    padding: 10rem 0;
    min-height: 80vh;
}

.contact-container {
    max-width: 900px;
    margin: 0 auto;
}

.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem 2rem;
    background-color: var(--color-brand-navy);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 4rem;
    /* Embossed Neumorphism */
    box-shadow: 
        -10px -10px 20px rgba(255, 255, 255, 0.04), 
        10px 10px 20px rgba(0, 0, 0, 0.6),
        inset 1px 1px 2px rgba(255, 255, 255, 0.08),
        inset -1px -1px 2px rgba(0, 0, 0, 0.4);
}

.form-group {
    position: relative;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    display: block;
    margin-bottom: 0.8rem;
    color: var(--color-text-white);
    font-size: 1.05rem;
    font-weight: 500;
}

.form-input {
    width: 100%;
    padding: 1rem 1.25rem;
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    color: white;
    font-family: var(--font-body);
    font-size: 1rem;
    outline: none;
    transition: var(--transition-smooth);
}

.form-input:focus {
    background-color: rgba(255, 255, 255, 0.05);
    border-color: var(--color-accent-gold);
    box-shadow: 0 0 10px rgba(197, 168, 128, 0.15);
}

.contact-form .submit-btn {
    grid-column: 1 / -1;
    margin-top: 1.5rem;
    width: 100%;
}
 
 