/* ==========================================================================
   Design System & Variables
   Official Abitha Brand Colour System (BLACK + #C51F35 + WHITE)
   ========================================================================== */
:root {
    /* Official Abitha Brand Colour Palette */
    --clr-bg: #000000;                      /* Primary Background: Pure Black */
    --clr-bg-alt: #050505;                  /* Subtle deep black for contrast sections */
    --clr-surface: #0A0A0A;                 /* Cards & elevated neutral surfaces */
    --clr-border: rgba(255, 255, 255, 0.08); /* Subtle white border */
    --clr-border-light: rgba(255, 255, 255, 0.15); /* Interactive border */
    
    --clr-text: #FFFFFF;                    /* Primary Text: Crisp White */
    --clr-text-light: #FFFFFF;              /* Body Text: Crisp White (unbolded) */
    --clr-text-muted: #A3A3A3;              /* Muted details / placeholders */
    
    --clr-accent: #C51F35;                  /* Big Headings & Signature Accent: Deep Red */
    --clr-accent-hover: #A0192A;            /* Deep red hover */
    --clr-black: #000000;                   /* Pure Black */
    --clr-white: #FFFFFF;                   /* Pure White */
    
    /* Typography */
    --font-heading: 'Space Grotesk', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Fluid Typography Scale */
    --fs-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
    --fs-sm: clamp(0.875rem, 0.8rem + 0.375vw, 1rem);
    --fs-base: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
    --fs-lg: clamp(1.25rem, 1.15rem + 0.5vw, 1.5rem);
    --fs-xl: clamp(1.5rem, 1.35rem + 0.75vw, 2rem);
    --fs-2xl: clamp(2rem, 1.75rem + 1.25vw, 3rem);
    --fs-3xl: clamp(2.5rem, 2rem + 2.5vw, 4rem);
    --fs-hero: clamp(3rem, 1.5rem + 6vw, 7rem);
    
    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 4rem;
    --space-xl: 8rem;
    
    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    
    /* Layout */
    --container-width: 1280px;
    --border-radius: 4px;
}

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

::selection {
    background-color: var(--clr-accent);
    color: var(--clr-white);
}

html {
    scroll-behavior: smooth;
    background-color: var(--clr-bg);
}

/* Body text in white, not bold */
body {
    font-family: var(--font-body);
    font-size: var(--fs-base);
    font-weight: 400; /* Do not bold body text */
    line-height: 1.6;
    color: var(--clr-white); /* Body text in white */
    background-color: var(--clr-bg);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Prevent scrolling when mobile menu is open or page is initially loading */
body.loading, body.no-scroll {
    overflow: hidden;
}

/* Big headings in #C51F35 */
h1, h2, .hero-title, .section-title, .intro-statement, .cta-title {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.1;
    color: var(--clr-accent); /* Big headings in #C51F35 */
    margin-bottom: var(--space-sm);
}

/* Subheadings in white in bold */
h3, h4, h5, h6, .section-title-small, .project-title, .step-title, .diff-title, .faq-question {
    font-family: var(--font-heading);
    font-weight: 700; /* Subheadings in bold */
    line-height: 1.2;
    color: var(--clr-white); /* Subheadings in white */
    margin-bottom: var(--space-sm);
}

/* Body text paragraphs in white, not bold */
p {
    margin-bottom: var(--space-sm);
    max-width: 70ch;
    color: var(--clr-white); /* Body text in white */
    font-weight: 400; /* Do not bold body text */
}

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

ul {
    list-style: none;
}

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

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

/* ==========================================================================
   Utility Classes
   ========================================================================== */
.container {
    width: 90%;
    max-width: var(--container-width);
    margin: 0 auto;
}

.section {
    padding: var(--space-xl) 0;
}

@media (max-width: 768px) {
    .section {
        padding: var(--space-lg) 0;
    }
}

.bg-light {
    background-color: var(--clr-bg-alt);
    border-top: 1px solid var(--clr-border);
    border-bottom: 1px solid var(--clr-border);
}

.highlight-bg {
    background-color: var(--clr-bg);
    color: var(--clr-white);
    border-top: 1px solid var(--clr-border);
    border-bottom: 1px solid var(--clr-border);
}

.highlight-bg h2 {
    color: var(--clr-accent);
}

.highlight-bg h3 {
    color: var(--clr-white);
    font-weight: 700;
}

.text-center {
    text-align: center;
}

.section-title {
    font-size: var(--fs-3xl);
    margin-bottom: var(--space-md);
    letter-spacing: -0.02em;
    color: var(--clr-accent); /* Big heading in #C51F35 */
}

.section-title-small {
    font-size: var(--fs-2xl);
    margin-bottom: var(--space-md);
    color: var(--clr-white); /* Subheading in white in bold */
    font-weight: 700;
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    font-size: var(--fs-sm);
    font-weight: 600;
    border-radius: var(--border-radius);
    transition: all var(--transition-fast);
    text-align: center;
}

/* Primary CTA: Background #C51F35, Text #FFFFFF */
.btn-primary {
    background-color: var(--clr-accent);
    color: var(--clr-white);
    border: 1px solid var(--clr-accent);
}

.btn-primary:hover {
    background-color: var(--clr-accent-hover);
    border-color: var(--clr-accent-hover);
    color: var(--clr-white);
}

/* Secondary CTA: Background Transparent, Text #FFFFFF, Subtle Border */
.btn-secondary {
    background-color: transparent;
    color: var(--clr-white);
    border: 1px solid rgba(255, 255, 255, 0.35);
}

.btn-secondary:hover {
    background-color: var(--clr-accent);
    border-color: var(--clr-accent);
    color: var(--clr-white);
}

.btn-outline {
    background-color: transparent;
    color: var(--clr-white);
    border: 1px solid rgba(255, 255, 255, 0.35);
}

.btn-outline:hover {
    background-color: var(--clr-white);
    border-color: var(--clr-white);
    color: var(--clr-black);
}

.btn-text {
    padding: 1rem 0;
    position: relative;
    font-weight: 600;
    color: var(--clr-white);
}

.btn-text::after {
    content: '';
    position: absolute;
    bottom: 0.5rem;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--clr-accent);
    transition: width var(--transition-fast);
}

.btn-text:hover {
    color: var(--clr-white);
}

.btn-text:hover::after {
    width: 100%;
}

@keyframes blink {
    0% { opacity: 1; }
    50% { opacity: 0.3; }
    100% { opacity: 1; }
}
.blink-button {
    animation: blink 2.5s infinite;
}

/* ==========================================================================
   Navigation
   ========================================================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: var(--space-sm) 0;
    transition: all var(--transition-normal);
    background-color: transparent;
}

.header.scrolled {
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--clr-border);
    padding: calc(var(--space-sm) * 0.75) 0;
}

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

.logo {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: var(--fs-lg);
    letter-spacing: 0.05em;
    color: var(--clr-white);
}

.desktop-nav {
    display: flex;
    gap: var(--space-md);
}

.desktop-nav a {
    font-size: var(--fs-sm);
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    position: relative;
}

.desktop-nav a:hover, .desktop-nav a.active {
    color: var(--clr-white);
}

.desktop-nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--clr-accent);
    transition: width var(--transition-fast);
}

.desktop-nav a:hover::after, .desktop-nav a.active::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 24px;
    z-index: 101;
}

.mobile-menu-btn span {
    width: 100%;
    height: 2px;
    background-color: var(--clr-white);
    transition: all 0.3s linear;
    transform-origin: 1px;
}

.mobile-menu-btn.active span:nth-child(1) { transform: rotate(45deg); }
.mobile-menu-btn.active span:nth-child(2) { opacity: 0; }
.mobile-menu-btn.active span:nth-child(3) { transform: rotate(-45deg); }

.mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--clr-black);
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translateY(-100%);
    transition: transform var(--transition-normal);
    z-index: 99;
}

.mobile-nav.active {
    transform: translateY(0);
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-md);
}

.mobile-link {
    font-family: var(--font-heading);
    font-size: var(--fs-2xl);
    font-weight: 700;
    color: var(--clr-white);
}

.mobile-link:hover {
    color: var(--clr-accent);
}

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

/* ==========================================================================
   Hero Section - Scroll-Driven Canvas Image Sequence
   ========================================================================== */
.hero-sequence-container {
    position: relative;
    height: 480vh; /* Extended cinematic scroll track to view all 100 frames smoothly */
    background-color: var(--clr-bg);
}

.hero-sticky-frame {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #000000;
}

.hero-sequence-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    z-index: 1;
    pointer-events: none;
}

/* Minimal top clearance vignette for header readability */
.hero-sequence-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.45) 0%, transparent 10%);
    z-index: 2;
}

/* Section Immediately Following the Video Sequence */
.hero-text-section {
    padding-top: var(--space-xl);
    padding-bottom: var(--space-xl);
    background-color: var(--clr-bg);
    border-top: 1px solid var(--clr-border);
    position: relative;
    z-index: 5;
}

/* Big Heading in #C51F35 */
.hero-title {
    font-size: var(--fs-hero);
    line-height: 1;
    margin-bottom: var(--space-md);
    letter-spacing: -0.03em;
    color: var(--clr-accent); /* Big heading in #C51F35 */
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.9);
}

.hero-line {
    display: block;
}

.hero-body {
    max-width: 620px;
    margin: 0 auto;
}

.hero-subtitle {
    font-size: var(--fs-lg);
    color: var(--clr-white); /* Body text in white */
    font-weight: 400; /* Not bold */
    margin-bottom: var(--space-md);
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.9);
}

.hero-subtitle strong {
    color: var(--clr-white); /* Subheading in white in bold */
    font-weight: 700; /* Bold */
    display: block;
    margin-bottom: 0.5rem;
}

.hero-ctas {
    display: flex;
    gap: var(--space-sm);
    align-items: center;
    justify-content: center;
}

/* Scroll Prompt Indicator */
.hero-scroll-prompt {
    position: absolute;
    bottom: 2.2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    color: rgba(255, 255, 255, 0.75);
    font-size: var(--fs-xs);
    font-family: var(--font-heading);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: opacity 0.3s ease-out;
    pointer-events: none;
}

.scroll-arrow-icon {
    font-size: 1.2rem;
    animation: bounceDown 2s infinite ease-in-out;
    color: var(--clr-accent);
}

@keyframes bounceDown {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(6px); }
}

@media (max-width: 768px) {
    .hero-sequence-container {
        height: 380vh;
    }
    .hero-title {
        font-size: clamp(2.4rem, 1.2rem + 6vw, 4.2rem);
    }
    .hero-ctas {
        flex-direction: column;
        align-items: center;
    }
}

/* ==========================================================================
   Intro Section
   ========================================================================== */
.intro {
    background-color: var(--clr-bg);
}

.intro-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
    align-items: center;
}

/* Big Heading in #C51F35 */
.intro-statement {
    font-size: var(--fs-2xl);
    line-height: 1.2;
    color: var(--clr-accent); /* Big heading in #C51F35 */
    font-weight: 700;
}

.intro-right p {
    color: var(--clr-white); /* Body text in white */
    font-weight: 400; /* Not bold */
}

@media (max-width: 768px) {
    .intro-container {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }
}

/* ==========================================================================
   Services Section
   ========================================================================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--space-md);
}

.service-card {
    background: var(--clr-surface);
    padding: var(--space-md);
    border-radius: var(--border-radius);
    border: 1px solid var(--clr-border);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal), border-color var(--transition-normal);
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: rgba(197, 31, 53, 0.4);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

/* Subheadings in white in bold */
.service-card h3 {
    font-size: var(--fs-lg);
    margin-bottom: var(--space-sm);
    position: relative;
    display: inline-block;
    color: var(--clr-white); /* Subheading in white */
    font-weight: 700; /* Bold */
}

.service-card h3::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 20px;
    height: 2px;
    background-color: var(--clr-accent);
    transition: width var(--transition-normal);
}

.service-card:hover h3::after {
    width: 100%;
}

.service-card p {
    color: var(--clr-white); /* Body text in white */
    font-weight: 400; /* Not bold */
}

.service-list {
    margin-top: var(--space-sm);
}

.service-list li {
    font-size: var(--fs-sm);
    color: var(--clr-white); /* Body text in white */
    font-weight: 400; /* Not bold */
    margin-bottom: 0.25rem;
    padding-left: 1rem;
    position: relative;
}

.service-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--clr-accent);
    font-size: 0.8em;
}

/* ==========================================================================
   Core Differentiator
   ========================================================================== */
.differentiator {
    background-color: var(--clr-bg);
}

.differentiator-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--space-xl);
}

.diff-subtitle {
    font-size: var(--fs-lg);
    color: var(--clr-white); /* Body text in white */
    font-weight: 400; /* Not bold */
}

.diff-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.diff-side {
    flex: 1;
    padding: var(--space-md);
    background: var(--clr-surface);
    border: 1px solid var(--clr-border);
    border-radius: var(--border-radius);
}

/* Subheadings in white in bold */
.diff-title {
    font-size: var(--fs-2xl);
    margin-bottom: var(--space-sm);
    color: var(--clr-white); /* Subheading in white */
    font-weight: 700; /* Bold */
}

.diff-strategy .diff-title { color: var(--clr-white); font-weight: 700; }
.diff-creative .diff-title { color: var(--clr-white); font-weight: 700; }

.diff-list li {
    font-size: var(--fs-lg);
    margin-bottom: 0.5rem;
    font-family: var(--font-heading);
    color: var(--clr-white); /* Body text in white */
    font-weight: 400; /* Not bold */
}

.diff-connector {
    width: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.connector-line {
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.2) 0%, var(--clr-accent) 100%);
}

.connector-circle {
    position: absolute;
    width: 12px;
    height: 12px;
    background: var(--clr-bg);
    border: 2px solid var(--clr-accent);
    border-radius: 50%;
}

@media (max-width: 768px) {
    .diff-split {
        flex-direction: column;
        gap: var(--space-md);
    }
    .diff-connector {
        width: 2px;
        height: 50px;
    }
    .connector-line {
        width: 2px;
        height: 100%;
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.2) 0%, var(--clr-accent) 100%);
    }
}

/* ==========================================================================
   Portfolio / Work
   ========================================================================== */
.work-header {
    margin-bottom: var(--space-lg);
}

.work-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-lg);
}

.project-card {
    group: work-card;
}

.project-thumb {
    aspect-ratio: 4/3;
    border-radius: var(--border-radius);
    overflow: hidden;
    margin-bottom: var(--space-sm);
    background-color: var(--clr-surface);
    border: 1px solid var(--clr-border);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.placeholder-text {
    font-family: var(--font-heading);
    color: var(--clr-text-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: var(--fs-sm);
}

.project-category {
    font-size: var(--fs-xs);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--clr-accent);
    font-weight: 700;
    margin-bottom: 0.25rem;
    display: block;
}

/* Subheadings in white in bold */
.project-title {
    font-size: var(--fs-lg);
    margin-bottom: 0.5rem;
    color: var(--clr-white); /* Subheading in white */
    font-weight: 700; /* Bold */
}

.project-desc {
    font-size: var(--fs-sm);
    color: var(--clr-white); /* Body text in white */
    font-weight: 400; /* Not bold */
    margin-bottom: 1rem;
}

.project-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: var(--fs-xs);
    color: var(--clr-text-muted);
    border-top: 1px solid var(--clr-border);
    padding-top: 0.5rem;
    font-weight: 400;
}

/* ==========================================================================
   About Section
   ========================================================================== */
.about {
    background-color: var(--clr-bg);
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: center;
}

.image-wrapper {
    position: relative;
    border-radius: var(--border-radius);
    background-color: var(--clr-surface);
    border: 1px solid var(--clr-border);
    overflow: hidden;
}

.image-wrapper img,
.image-wrapper:hover img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--border-radius);
    filter: none !important;
    -webkit-filter: none !important;
    transition: none !important;
}

.about-text p {
    font-size: var(--fs-lg);
    margin-bottom: var(--space-md);
    color: var(--clr-white); /* Body text in white */
    font-weight: 400; /* Not bold */
}

.about-quote {
    font-family: var(--font-heading);
    font-size: var(--fs-xl);
    line-height: 1.3;
    color: var(--clr-white);
    font-weight: 500;
    margin-top: var(--space-lg);
    padding-left: var(--space-sm);
    border-left: 2px solid var(--clr-accent);
}

@media (max-width: 900px) {
    .about-container {
        grid-template-columns: 1fr;
    }
    .about-image {
        order: -1;
        max-width: 500px;
        margin: 0 auto;
    }
}

/* ==========================================================================
   Process Section
   ========================================================================== */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-lg);
    counter-reset: process-counter;
}

.process-step {
    position: relative;
}

.step-number {
    font-family: var(--font-heading);
    font-size: var(--fs-hero);
    font-weight: 700;
    color: rgba(255, 255, 255, 0.06);
    line-height: 1;
    margin-bottom: -1rem;
    position: relative;
    z-index: 1;
}

.step-content {
    position: relative;
    z-index: 2;
    padding-top: var(--space-sm);
    border-top: 1px solid var(--clr-border);
}

/* Subheadings in white in bold */
.step-title {
    font-size: var(--fs-lg);
    margin-bottom: 0.5rem;
    color: var(--clr-white); /* Subheading in white */
    font-weight: 700; /* Bold */
}

.step-content p {
    color: var(--clr-white); /* Body text in white */
    font-weight: 400; /* Not bold */
}

/* ==========================================================================
   Skills & Ideal Clients
   ========================================================================== */
.skills-clients {
    background-color: var(--clr-bg);
}

.dual-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
}

.skills-group {
    margin-bottom: var(--space-md);
}

/* Subheadings in white in bold */
.skills-group h3 {
    font-size: var(--fs-base);
    color: var(--clr-white); /* Subheading in white */
    font-weight: 700; /* Bold */
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.skills-group p {
    font-size: var(--fs-lg);
    font-family: var(--font-heading);
    color: var(--clr-white); /* Body text in white */
    font-weight: 400; /* Not bold */
}

.clients-intro {
    font-size: var(--fs-lg);
    margin-bottom: var(--space-md);
    color: var(--clr-white); /* Body text in white */
    font-weight: 400; /* Not bold */
}

.clients-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.clients-list li {
    background-color: var(--clr-surface);
    border: 1px solid var(--clr-border);
    color: var(--clr-white); /* Body text in white */
    font-weight: 400; /* Not bold */
    padding: 0.5rem 1rem;
    border-radius: 100px;
    font-size: var(--fs-sm);
}

@media (max-width: 768px) {
    .dual-section { grid-template-columns: 1fr; }
}

/* ==========================================================================
   CTA Section
   ========================================================================== */
.cta {
    background-color: var(--clr-bg);
    position: relative;
}

/* Big Heading in #C51F35 */
.cta-title {
    font-size: var(--fs-3xl);
    margin-bottom: var(--space-sm);
    color: var(--clr-accent); /* Big heading in #C51F35 */
    font-weight: 700;
}

.cta-subtitle {
    font-size: var(--fs-lg);
    color: var(--clr-white); /* Body text in white */
    font-weight: 400; /* Not bold */
    margin: 0 auto var(--space-md);
}

.cta-actions {
    display: flex;
    gap: var(--space-sm);
    justify-content: center;
}

@media (max-width: 768px) {
    .cta-actions { flex-direction: column; align-items: stretch; }
}

/* ==========================================================================
   FAQ Section
   ========================================================================== */
.faq-container {
    max-width: 800px;
}

.faq-accordion {
    border-top: 1px solid var(--clr-border);
}

.faq-item {
    border-bottom: 1px solid var(--clr-border);
}

/* Subheadings in white in bold */
.faq-question {
    width: 100%;
    text-align: left;
    padding: var(--space-md) 0;
    font-size: var(--fs-lg);
    font-family: var(--font-heading);
    font-weight: 700; /* Subheading in bold */
    color: var(--clr-white); /* Subheading in white */
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color var(--transition-fast);
}

.faq-question:hover {
    color: var(--clr-accent);
}

.faq-icon {
    position: relative;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-left: 1rem;
}

.faq-icon::before, .faq-icon::after {
    content: '';
    position: absolute;
    background-color: var(--clr-white);
    transition: transform var(--transition-fast), background-color var(--transition-fast);
}

.faq-icon::before {
    top: 50%; left: 0; right: 0; height: 2px;
    transform: translateY(-50%);
}

.faq-icon::after {
    top: 0; bottom: 0; left: 50%; width: 2px;
    transform: translateX(-50%);
}

.faq-question[aria-expanded="true"] .faq-icon::after {
    transform: translateX(-50%) rotate(90deg);
}

.faq-question:hover .faq-icon::before,
.faq-question:hover .faq-icon::after,
.faq-question[aria-expanded="true"] .faq-icon::before,
.faq-question[aria-expanded="true"] .faq-icon::after {
    background-color: var(--clr-accent);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal);
}

.faq-answer-inner {
    padding-bottom: var(--space-md);
    padding-right: var(--space-lg);
    color: var(--clr-white); /* Body text in white */
    font-weight: 400; /* Not bold */
}

/* ==========================================================================
   Contact Section
   ========================================================================== */
.contact {
    background-color: var(--clr-bg);
}

.contact-container {
    max-width: 1000px;
}

.contact-header {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.contact-desc {
    font-size: var(--fs-lg);
    margin: 0 auto;
    color: var(--clr-white); /* Body text in white */
    font-weight: 400; /* Not bold */
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: var(--space-xl);
}

.form-group {
    margin-bottom: var(--space-md);
    position: relative;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: var(--fs-sm);
    color: var(--clr-white);
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 1rem;
    background: var(--clr-surface);
    border: 1px solid var(--clr-border-light);
    border-radius: var(--border-radius);
    font-family: inherit;
    font-size: var(--fs-base);
    color: var(--clr-white);
    font-weight: 400; /* Not bold */
    transition: border-color var(--transition-fast), background-color var(--transition-fast);
}

.contact-form select option {
    background-color: #0A0A0A;
    color: #FFFFFF;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    outline: none;
    border-color: var(--clr-accent);
    background: #0E0E0E;
}

.error-msg {
    color: var(--clr-accent);
    font-size: var(--fs-xs);
    position: absolute;
    bottom: -1.5rem;
    left: 0;
    display: none;
}

.form-group.error input,
.form-group.error textarea,
.form-group.error select {
    border-color: var(--clr-accent);
}

.form-group.error .error-msg {
    display: block;
}

.submit-btn {
    width: 100%;
    margin-top: var(--space-sm);
}

.form-success {
    margin-top: var(--space-md);
    padding: 1rem;
    background-color: rgba(197, 31, 53, 0.1);
    border-left: 3px solid var(--clr-accent);
    color: var(--clr-white);
    border-radius: var(--border-radius);
    font-weight: 400;
}

.form-info {
    margin-top: 1rem;
    font-size: var(--fs-xs);
    color: var(--clr-text-muted);
    text-align: center;
    font-weight: 400;
}

.hidden { display: none; }

.info-card {
    background-color: var(--clr-surface);
    border: 1px solid var(--clr-border);
    padding: var(--space-lg);
    border-radius: var(--border-radius);
}

/* Subheading in white in bold */
.info-card h3 {
    color: var(--clr-white); /* Subheading in white */
    font-weight: 700; /* Bold */
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.social-link {
    display: flex;
    justify-content: space-between;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--clr-border);
}

.social-name {
    font-weight: 600;
    color: var(--clr-white);
}

.social-handle {
    color: var(--clr-text-muted);
    font-weight: 400;
}

.social-link:hover .social-name {
    color: var(--clr-accent);
}

@media (max-width: 768px) {
    .contact-wrapper { grid-template-columns: 1fr; gap: var(--space-lg); }
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
    background-color: var(--clr-bg);
    color: var(--clr-white);
    border-top: 1px solid var(--clr-border);
    padding: var(--space-xl) 0 var(--space-md);
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: var(--space-xl);
    border-bottom: 1px solid var(--clr-border);
    padding-bottom: var(--space-md);
}

.footer-brand h2 {
    color: var(--clr-white);
    font-size: var(--fs-xl);
    font-weight: 700;
    margin-bottom: 0.25rem;
    letter-spacing: 0.05em;
}

.footer-descriptor {
    color: var(--clr-white);
    font-size: var(--fs-sm);
    font-weight: 400;
}

.footer-nav {
    display: flex;
    gap: var(--space-md);
}

.footer-nav a {
    color: var(--clr-white);
    font-size: var(--fs-sm);
    font-weight: 400;
    transition: color var(--transition-fast);
}

.footer-nav a:hover {
    color: var(--clr-accent);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: var(--fs-sm);
    color: var(--clr-white);
    font-weight: 400;
}

.footer-social-icons {
    display: flex;
    gap: var(--space-sm);
}

.footer-social-icons a {
    color: var(--clr-white);
    transition: color var(--transition-fast);
}

.footer-social-icons a:hover {
    color: var(--clr-accent);
}

@media (max-width: 768px) {
    .footer-top { flex-direction: column; gap: var(--space-md); }
    .footer-nav { flex-wrap: wrap; gap: var(--space-sm); }
    .footer-bottom { flex-direction: column-reverse; gap: var(--space-sm); text-align: center; }
}

/* ==========================================================================
   Animations & Reveals
   ========================================================================== */
.reveal-text .hero-line {
    display: block;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
    opacity: 0;
    transform: translateY(50px);
    transition: transform var(--transition-slow), opacity var(--transition-slow);
}

.reveal-text.active .hero-line {
    opacity: 1;
    transform: translateY(0);
}
.reveal-text.active .hero-line:nth-child(2) {
    transition-delay: 0.2s;
}

.reveal-fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity var(--transition-normal), transform var(--transition-normal);
}

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

.reveal-fade-right {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity var(--transition-normal), transform var(--transition-normal);
}
.reveal-fade-right.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-fade-left {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity var(--transition-normal), transform var(--transition-normal);
}
.reveal-fade-left.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.95);
    transition: opacity var(--transition-normal), transform var(--transition-normal);
}
.reveal-scale.active {
    opacity: 1;
    transform: scale(1);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
