/* 
  AYKA ADVISORS - PREMIUM AWWWARDS-LEVEL DESIGN SYSTEM
  Concepts: Minimal Luxury, Cinematic Lighting, Glassmorphism, Brutalist Layouts
*/

:root {
    /* Primary Palette - INVERTED for Light Mode */
    --navy: #0B2D5C;
    --gold: #D4AF37;
    --gold-rgb: 212, 175, 55;
    
    /* Secondary/Accent Palette */
    --teal: #146C74;
    --green: #2E8B57;
    --cream: #F2EFE6; /* Now the primary background */
    
    /* Surface Colors */
    --bg-light: #F2EFE6;
    --surface-1: rgba(11, 45, 92, 0.05);
    --surface-2: rgba(11, 45, 92, 0.02);
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(11, 45, 92, 0.1);
    
    /* Typography */
    --font-primary: 'Inter', sans-serif; /* Highly professional paragraph font */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif; /* Added missing variable */
    
    /* Cinematic Easing */
    --ease-expo: cubic-bezier(0.19, 1, 0.22, 1);
    --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
    --ease-in-out: cubic-bezier(0.76, 0, 0.24, 1);
    
    /* Spacing */
    --section-padding: 10rem 0; 
    --container-margin: 5%; 
    --container-width: 1400px;
}

/* Base Reset & Smooth Scroll */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: none !important; /* Force custom cursor */
}

html {
    overflow-x: hidden;
}

html.lenis {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

body {
    background-color: #fcfcfc;
    color: var(--navy);
    font-family: var(--font-body);
    overflow-x: hidden;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* Noise Overlay */
.noise {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://grainy-gradients.vercel.app/noise.svg');
    opacity: 0.05;
    pointer-events: none;
    z-index: 9999;
}

/* Custom Cursor */
.cursor-dot {
    width: 6px;
    height: 6px;
    background: var(--navy);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 10000;
    transform: translate(-50%, -50%);
}

.cursor-outline {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(11, 45, 92, 0.4);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width 0.4s cubic-bezier(0.19, 1, 0.22, 1), height 0.4s cubic-bezier(0.19, 1, 0.22, 1), background 0.4s;
}

/* ASYMMETRICAL UTILITIES */
.disalign-right { transform: translateY(100px); }
.disalign-left { transform: translateY(-50px); }
.split-layout { display: flex; gap: 10%; align-items: flex-start; }

.bg-watermark {
    position: absolute;
    top: 5rem;
    right: -5%;
    font-size: 25vw;
    font-weight: 900;
    color: rgba(11, 45, 92, 0.02);
    pointer-events: none;
    z-index: 0;
    line-height: 1;
    font-family: var(--font-primary);
}

.ambient-shape {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}

/* Typography Classes */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.1;
}

.text-reveal {
    overflow: hidden;
    display: inline-block;
}

.text-reveal span {
    display: inline-block;
    transform: translateY(100%);
}

/* Loading Screen */
/* Scroll Progress */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gold);
    transform-origin: 0% 50%;
    transform: scaleX(0);
    z-index: 10001;
}

/* Glass Header */
.nav-container {
    transition: all 0.6s var(--ease-expo);
    border-radius: 50px; /* Changed from 0 to curve matching scrolled state */
    position: fixed;
    top: 2rem;
    left: 50%;
    transform: translateX(-50%);
    width: 94%;
    max-width: 1600px;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 3rem; /* Increased padding */
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(11, 45, 92, 0.1);
    box-shadow: 0 30px 60px rgba(11, 45, 92, 0.05);
}

.nav-container.scrolled {
    top: 1rem;
    width: 90%;
    margin: 0;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    box-shadow: 0 10px 40px rgba(11, 45, 92, 0.1);
    padding: 0.8rem 2.5rem;
}



.logo img {
    height: 60px; /* Increased from 40px for maximum impact */
    width: auto;
    display: block;
}

.nav-links {
    display: flex;
    gap: 4rem; /* Increased gap */
    list-style: none;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--navy);
    font-family: 'Outfit', sans-serif; /* Top notch premium font */
    font-size: 0.95rem; 
    font-weight: 600;
    letter-spacing: 0.15rem;
    text-transform: uppercase;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.nav-links a:hover {
    opacity: 1;
}

.nav-cta {
    background: var(--gold);
    color: var(--navy);
    padding: 1rem 2.5rem; /* Increased padding */
    border-radius: 50px;
    text-decoration: none;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.15rem;
    transition: all 0.3s;
}

.mobile-menu-btn {
    display: none;
    color: var(--navy);
}

.mobile-menu-btn svg {
    width: 28px;
    height: 28px;
}

/* Hero Section - Compact & Aligned */
.hero {
    min-height: 100vh;
    padding-top: 13rem; /* Reduced to balance whitespace */
    background-color: var(--bg-light);
    display: flex;
    align-items: center;
    position: relative;
    margin-bottom: 0;
}

.hero-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
    width: 100%;
}

.hero-right {
    position: relative;
    padding: 3rem; /* Extra room for floating elements */
}

.mesh-gradient {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: radial-gradient(circle at 10% 10%, rgba(212, 175, 55, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 90% 90%, rgba(20, 108, 116, 0.05) 0%, transparent 50%);
}

.hero-img-wrapper {
    position: relative;
    border-radius: 30px; /* Enhanced radius */
    overflow: hidden;
    box-shadow: 0 50px 100px rgba(11, 45, 92, 0.25);
    height: 85vh; /* Massive cinematic scale */
}

.hero-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1.15); /* For parallax/reveal */
    transition: transform 1.5s var(--ease-expo);
}

.img-accent-border {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--gold);
    border-radius: 20px;
    z-index: -1;
}

.hero h1 {
    font-size: clamp(4rem, 11vw, 9.5rem); /* Massive editorial sizing */
    line-height: 0.85; /* Tighter for cinematic stack */
    letter-spacing: -0.05em;
    color: var(--navy);
    margin-bottom: 3rem;
    text-transform: uppercase;
    font-weight: 900;
    position: relative;
    z-index: 2;
}

.hero h1 .accent {
    color: transparent;
    -webkit-text-stroke: 2px var(--gold); /* Cinematic outline */
}

.hero-p {
    font-size: 1.15rem;
    color: var(--navy);
    font-weight: 400;
    margin-bottom: 3rem;
    max-width: 500px;
    line-height: 1.8;
}

.hero-btns {
    display: flex;
    gap: 2rem;
    padding-bottom: 4rem; /* Added bottom padding as requested */
}

/* Magnetic Button Wrapper */
.magnetic-wrap {
    display: inline-block;
}

.btn-premium {
    padding: 1rem 2rem; /* Reduced from 1.5rem 3.5rem */
    border-radius: 100px;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15rem;
    font-size: 0.95rem; /* Slightly smaller text */
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    position: relative;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.btn-premium.primary {
    background: var(--gold);
    color: var(--navy);
}

.btn-premium.secondary {
    border: 1px solid rgba(11, 45, 92, 0.2); /* Navy border for light bg */
    color: var(--navy); /* Navy text */
    background: transparent;
}

/* Section Common */
section {
    padding: var(--section-padding) 0;
    position: relative;
    width: 100%;
}

#home {
    padding-left: var(--container-margin) !important;
    padding-right: var(--container-margin) !important;
}

#home, #process, #clients, #contact, .unique-footer {
    padding-left: var(--container-margin) !important;
    padding-right: var(--container-margin) !important;
}

#services {
    padding-left: var(--container-margin) !important;
    padding-right: var(--container-margin) !important;
    padding-bottom: 12rem !important; /* Standardized architectural gap */
}

.section-title-wrap {
    margin-bottom: 4rem;
}

/* Service Title Layout Fix */
.service-title-mobile-fix {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    position: relative;
    z-index: 2;
}

.service-title-mobile-fix .title-left {
    flex: 1;
}

.service-title-mobile-fix .title-right {
    max-width: 400px;
    text-align: right;
}

.service-title-mobile-fix .title-right p {
    font-size: 1.1rem;
    opacity: 0.6;
    line-height: 1.6;
}

.section-tag {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.3rem;
    color: var(--gold);
    margin-bottom: 1rem;
    display: block;
}

.section-title {
    font-size: clamp(3.5rem, 8vw, 7rem);
    font-family: var(--font-heading);
    color: var(--navy);
    line-height: 0.9;
    letter-spacing: -0.03em;
    margin-bottom: 2rem;
    position: relative;
    text-transform: uppercase;
    word-wrap: break-word; /* Prevent long words from breaking viewport */
    overflow-wrap: break-word;
    hyphens: auto;
}

/* Cinematic Glass Chips */
.floating-chip {
    position: absolute;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    padding: 1.5rem 2rem;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(11, 45, 92, 0.1);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.chip-num {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--gold);
    line-height: 1;
    font-weight: 800;
}

.chip-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2rem;
    color: var(--navy);
    font-weight: 700;
}

.chip-1 { top: 10%; right: -5%; }
.chip-2 { bottom: 10%; right: -5%; }
.chip-3 { bottom: 25%; left: -10%; }


/* Architectural BG Numbers */
section::after {
    content: attr(data-index);
    position: absolute;
    top: 0;
    right: 5%;
    font-family: var(--font-heading);
    font-size: 20rem;
    color: rgba(11, 45, 92, 0.02);
    pointer-events: none;
    z-index: -1;
    line-height: 0.8;
}

/* Services Cards - 3x2 Architectural Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 boxes per row */
    gap: 2rem;
    padding: 2rem 0;
}

.service-card {
    background: linear-gradient(145deg, #0f3669, #082145) !important; /* Rich cinematic gradient */
    padding: 3rem 2.5rem;
    border-radius: 16px;
    color: #fff;
    min-height: 420px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-top: 2px solid transparent;
    aspect-ratio: auto;
    width: 100%;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(212, 175, 55, 0.15), transparent 60%);
    opacity: 0;
    transition: opacity 0.6s ease;
    z-index: 0;
    pointer-events: none;
}

.service-card:hover {
    transform: translateY(-15px);
    border-color: rgba(255, 255, 255, 0.1);
    border-top-color: var(--gold);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5);
}

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

.card-watermark {
    position: absolute;
    top: -30px;
    right: -20px;
    font-size: 12rem;
    font-family: var(--font-heading);
    color: rgba(255, 255, 255, 0.02);
    font-weight: 900;
    line-height: 1;
    pointer-events: none;
    transition: all 0.6s ease;
    z-index: 1;
}

.service-card:hover .card-watermark {
    color: rgba(212, 175, 55, 0.04);
    transform: scale(1.1) rotate(5deg);
}

.card-content {
    position: relative;
    z-index: 2;
}

.service-card .icon-box {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    border: 1px solid rgba(212, 175, 55, 0.3);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
    color: var(--gold);
    transition: all 0.4s ease;
}

.service-card:hover .icon-box {
    background: var(--gold);
    color: var(--navy);
    transform: scale(1.1) rotate(10deg);
}

.service-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #fff;
    font-family: 'Outfit', sans-serif; /* Modernized */
    font-weight: 600;
    letter-spacing: 0.02em;
}

.service-card p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    line-height: 1.6;
}

.card-footer {
    position: relative;
    z-index: 2;
    margin-top: 2rem;
    display: flex;
    align-items: center;
}

.explore-link {
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.15rem;
    color: var(--gold);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    opacity: 0.5;
    transform: translateY(10px);
    transition: all 0.4s ease;
}

.explore-link svg {
    width: 16px;
    height: 16px;
    transition: transform 0.4s ease;
}

.service-card:hover .explore-link {
    opacity: 1;
    transform: translateY(0);
}

.service-card:hover .explore-link svg {
    transform: translateX(5px);
}

/* Floating Stat Chips - Cinematic Redesign */
.floating-chip {
    position: absolute;
    background: rgba(11, 45, 92, 0.7); /* Navy Glass */
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 1rem 1.5rem;
    border-radius: 100px; /* Capsule shape */
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: row; /* Side-by-side */
    align-items: center;
    gap: 1rem;
    z-index: 5;
    animation: float 6s ease-in-out infinite;
    color: #fff;
    width: max-content; /* Prevent stretching */
}

.chip-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(212, 175, 55, 0.2);
    border-radius: 50%;
    color: var(--gold);
}

.chip-content {
    display: flex;
    flex-direction: column;
}

.chip-1 { top: 12%; left: -60px; animation-delay: 0s; }
.chip-2 { bottom: 15%; right: -40px; animation-delay: 1s; }
.chip-3 { top: 60%; left: -50px; animation-delay: 2s; }

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

.chip-num {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: #fff;
    line-height: 1;
    margin-bottom: 0.2rem;
}

.chip-label {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
    color: var(--gold);
    font-family: 'Outfit', sans-serif;
}

/* Who We Are - Light Premium */
.about-dark {
    background: #fff;
    color: var(--navy);
    padding: 10rem 10% !important;
    position: relative;
}

.about-split {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 8%;
    align-items: start;
}

.about-title {
    font-size: clamp(4rem, 8vw, 7.5rem);
    line-height: 0.9;
    margin-bottom: 4rem;
    font-family: var(--font-heading);
    color: var(--navy);
    letter-spacing: -0.04em;
    text-transform: uppercase;
}

.about-title .outline-text {
    color: transparent;
    -webkit-text-stroke: 2px var(--navy);
    opacity: 0.8;
    font-style: italic;
}

.est-badge {
    margin-bottom: 4rem;
}

.est-num {
    font-family: var(--font-heading);
    font-size: 8rem; /* Massive watermark scale */
    color: transparent;
    -webkit-text-stroke: 2px var(--gold);
    display: block;
    line-height: 0.8;
    margin-bottom: 1rem;
    opacity: 0.5;
}

.est-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.3rem;
    color: var(--navy);
    opacity: 0.5;
}

.about-intro p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--navy); /* Deep, solid professional color from palette */
    font-weight: 400;
    max-width: 500px;
    margin-bottom: 2rem;
}

.feature-list-dark {
    background: var(--navy); /* Deep cinematic contrast */
    color: #fff;
    border-radius: 40px;
    padding: 5rem 4rem;
    box-shadow: 0 40px 80px rgba(11, 45, 92, 0.2);
}

.feature-item-dark {
    margin-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1); /* Subtle glass line */
    padding-bottom: 2rem;
}

.feature-item-dark:last-child {
    margin-bottom: 0;
    border-bottom: none;
    padding-bottom: 0;
}

.feature-item-dark h4 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--gold); /* Pop gold */
    margin-bottom: 1rem;
    line-height: 1.1;
}

.feature-item-dark p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7); /* Light transparent text */
    line-height: 1.6;
}

/* Contact Section - Clean Asymmetry */
.contact-container {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    background: #fff;
    margin: 0 auto 4rem;
    max-width: 1200px; /* Restrict max width for decent sizing */
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(11, 45, 92, 0.08);
    border: 1px solid rgba(11, 45, 92, 0.05);
}

.contact-info {
    background: var(--navy);
    color: #fff;
    padding: 5rem 4rem;
}

.contact-info .section-title {
    color: #fff; /* Fix invisible text issue */
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    margin-bottom: 3rem;
}

.contact-info p {
    color: rgba(255, 255, 255, 0.8) !important;
}

.contact-form {
    padding: 5rem 4rem;
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-group {
    margin-bottom: 2rem;
    position: relative;
}

.form-submit-wrap {
    display: block !important;
}

.form-input {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(11, 45, 92, 0.15);
    padding: 0.8rem 0;
    color: var(--navy);
    font-family: var(--font-body);
    font-size: 1.1rem;
    transition: border-color 0.4s;
}

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

.form-label {
    position: absolute;
    left: 0;
    top: 1.2rem;
    color: rgba(11, 45, 92, 0.3);
    pointer-events: none;
    transition: all 0.3s;
}

.form-input:focus + .form-label,
.form-input:not(:placeholder-shown) + .form-label {
    top: -1rem;
    font-size: 0.8rem;
    color: var(--teal);
}

/* Unique Architectural Footer */
.unique-footer {
    background: var(--navy);
    color: #fff;
    padding: 8rem 8% 4rem;
    position: relative;
    overflow: hidden;
}

/* Enormous subtle watermark for cinematic depth */
.unique-footer::before {
    content: 'AYKA';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 35vw;
    font-family: var(--font-heading);
    color: rgba(255, 255, 255, 0.02);
    z-index: 0;
    pointer-events: none;
    line-height: 1;
}

.footer-main {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 10%;
    padding-bottom: 6rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    z-index: 1;
}

.footer-logo {
    height: 60px; /* Larger logo */
    margin-bottom: 3rem;
    filter: brightness(0) invert(1);
}

.footer-tagline {
    font-size: 1.4rem; /* More prominent */
    max-width: 400px;
    opacity: 0.8;
    line-height: 1.6;
}

.footer-nav-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
}

.footer-col h4 {
    color: var(--gold);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 2.5rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 1.2rem;
}

.footer-col a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.3s;
    font-size: 0.95rem;
}

.footer-col a:hover {
    color: var(--gold);
}

.footer-bottom-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 4rem;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.3);
}

.footer-legal {
    display: flex;
    gap: 4rem;
}

.legal-links {
    display: flex;
    gap: 2rem;
}

.legal-links a {
    color: inherit;
    text-decoration: none;
}

/* Remove old WA button styles */
.wa-btn { display: none; }

/* Particles Canvas */
#particles-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

/* --- FULL MOBILE RESPONSIVENESS --- */
@media (max-width: 1200px) {
    .nav-links { gap: 2rem; }
    .hero-split { gap: 3rem; }
    .about-split { gap: 3rem; }
}

@media (max-width: 1024px) {
    .nav-links { display: none; } /* Hide desktop nav */
    .nav-cta-wrap { display: none; } /* Hide Get Started button */
    .mobile-menu-btn { display: flex; align-items: center; justify-content: center; }
    
    /* Stack Splits */
    .hero-split, .about-split, .contact-container, .footer-main {
        grid-template-columns: 1fr !important;
        gap: 3rem;
    }
    
    .hero-img-wrapper { height: 60vh; }
    
    .hero { padding-top: 10rem; min-height: auto; padding-bottom: 5rem; }
    
    /* Grid Adjustments */
    .services-grid { 
        display: grid;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1.5rem;
        padding-bottom: 2rem;
    }
    
    .footer-nav-grid { grid-template-columns: 1fr 1fr; }
    .about-dark { padding: 8rem 5% !important; }
}

@media (max-width: 768px) {
    :root { --section-padding: 5rem 5%; }
    
    /* Typography */
    .hero h1 { font-size: clamp(3rem, 15vw, 5rem); line-height: 0.9; }
    .section-title { font-size: clamp(2.5rem, 10vw, 4rem); }
    .about-title { font-size: clamp(3rem, 12vw, 4.5rem); }
    .est-num { font-size: 5rem; }
    
    /* Title Wrappers */
    .service-title-mobile-fix {
        flex-direction: column;
        align-items: flex-start;
        gap: 2rem;
    }
    .service-title-mobile-fix .title-right {
        text-align: left;
    }

    /* Stack Everything */
    .services-grid { grid-template-columns: 1fr !important; }
    .hero-btns { flex-direction: column; width: 100%; padding-bottom: 2rem; gap: 1rem; }
    .btn-premium { width: 100%; justify-content: center; padding: 1rem 1.5rem; font-size: 0.8rem; }
    
    /* Section Tweaks */
    .service-card { padding: 2rem; min-height: auto; }
    .feature-list-dark { padding: 3rem 2rem; border-radius: 24px; }
    .contact-info, .contact-form { padding: 3rem 2rem; }
    
    /* Floating elements */
    .floating-chip { padding: 0.8rem 1rem; border-radius: 8px; transform: scale(0.8); }
    .chip-1 { top: 5%; left: -5%; }
    .chip-2 { bottom: 5%; right: -5%; }
    .chip-3 { display: none; } /* Hide 3rd on mobile to prevent clutter */
    
    /* Footer */
    .footer-nav-grid { grid-template-columns: 1fr; gap: 2rem; }
    .footer-legal { flex-direction: column; gap: 1rem; }
    .unique-footer { padding: 6rem 5% 3rem; }
    .unique-footer::before { font-size: 45vw; top: 30%; }
    
    /* Header */
    .nav-container { 
        width: 100%; 
        max-width: calc(100vw - 2rem);
        padding: 0.8rem 1.5rem; 
        justify-content: space-between; 
        left: 50%;
        transform: translateX(-50%);
    }
    .logo img { height: 45px; } /* Increased from 35px for mobile prominence */
}

/* Mobile Menu Overlay Styles */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(11, 45, 92, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 10005;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s var(--ease-expo);
    transform: translateY(-100%);
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mobile-menu-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    color: #fff;
    cursor: pointer;
}

.mobile-menu-close svg {
    width: 32px;
    height: 32px;
}

.mobile-nav-links {
    list-style: none;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.mobile-nav-links a {
    color: #fff;
    text-decoration: none;
    font-family: 'Outfit', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
    transition: color 0.3s;
}

.mobile-nav-links a:hover {
    color: var(--gold);
}
    

@media (max-width: 480px) {
    .hero { padding-top: 8rem; }
    .hero-img-wrapper { height: 50vh; border-radius: 20px; }
    .est-num { font-size: 4rem; }
    .section-title-wrap { margin-bottom: 2rem; }
}

/* =====================================================
   CLIENT LOGO SCROLL — Original Brand Colors
   ===================================================== */

.client-brands-section {
    padding: 6rem 0;
    background: #fff;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(11, 45, 92, 0.05);
    border-bottom: 1px solid rgba(11, 45, 92, 0.05);
}

.brand-scroll-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    white-space: nowrap;
}

.brand-scroll-track {
    display: flex;
    align-items: center;
    width: max-content;
    animation: brandScroll 40s linear infinite;
}

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

.brand-logo-item {
    flex-shrink: 0;
    width: 350px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 40px;
    transition: transform 0.3s var(--ease-out);
}

.brand-logo-item img {
    max-width: 100%;
    max-height: 130px;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: all 0.4s ease;
}

.brand-logo-item:hover img {
    transform: scale(1.1);
}

.brand-scroll-track:hover {
    animation-play-state: paused;
}

/* Vignette for smooth edges */
.client-brands-section::before,
.client-brands-section::after {
    content: '';
    position: absolute;
    top: 0;
    width: 200px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.client-brands-section::before {
    left: 0;
    background: linear-gradient(to right, #fff 0%, transparent 100%);
}

.client-brands-section::after {
    right: 0;
    background: linear-gradient(to left, #fff 0%, transparent 100%);
}

@media (max-width: 768px) {
    .client-brands-section { padding: 4rem 0; }
    .brand-logo-item { width: 260px; height: 150px; padding: 0 25px; }
    .brand-logo-item img { max-height: 90px; }
}


