:root {
    --primary-bg: #ffffff;
    --secondary-bg: #f8f9fa;
    --text-color: #1e293b;
    --heading-color: #0f172a;
    /* AMK Brand — Gold & Navy (from company logo) */
    --accent-blue: #c49a3c;
    --accent-gold: #c49a3c;
    --accent-dark: #1c2b4a;
    --dark-navy: #0d1525;
    --white: #ffffff;
    --glass-bg: rgba(255, 255, 255, 0.95);
    --glass-border: rgba(255, 255, 255, 0.2);
    --shadow-soft: 0 10px 40px -10px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 20px 40px -5px rgba(196, 154, 60, 0.20);
    --transition: cubic-bezier(0.4, 0, 0.2, 1);
    /* Theme-derived rgba helpers — overridden dynamically by JS */
    --accent-10: rgba(196, 154, 60, 0.10);
    --accent-15: rgba(196, 154, 60, 0.15);
    --accent-20: rgba(196, 154, 60, 0.20);
    --accent-25: rgba(196, 154, 60, 0.25);
    --accent-35: rgba(196, 154, 60, 0.35);
    --accent-50: rgba(196, 154, 60, 0.50);
    --navy-80: rgba(13, 21, 37, 0.80);
    --navy-90: rgba(13, 21, 37, 0.90);
    --navy-95: rgba(13, 21, 37, 0.95);
}

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

html {
    overflow-x: hidden;
    width: 100%;
}

img, video, iframe, svg {
    max-width: 100%;
    height: auto;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-color);
    background-color: var(--primary-bg);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    -webkit-font-smoothing: antialiased;
    opacity: 0;
    transition: opacity 0.6s ease-out, filter 0.4s ease;
    /* Added filter transition */
}

body.menu-active {
    overflow: hidden;
    /* Lock scroll */
}

body.menu-active .main-wrapper,
body.menu-active section,
body.menu-active footer {
    filter: blur(8px) brightness(0.9);
    /* Blur background */
    pointer-events: none;
}

body.loaded {
    opacity: 1;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Poppins', sans-serif;
    color: var(--heading-color);
    font-weight: 600;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s var(--transition);
}

ul {
    list-style: none;
}

/* Utilities */
.container {
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
    padding: 0 clamp(1rem, 5vw, 2rem);
}

.section-padding {
    padding: 6rem 0;
}

@media (max-width: 768px) {
    .section-padding { padding: 3.5rem 0; }
}

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

.flex {
    display: flex;
}

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

.justify-between {
    justify-content: space-between;
}

.grid {
    display: grid;
    gap: 2rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    /* Slightly more compact */
    border-radius: 50px;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 0.5px;
    transition: all 0.3s var(--transition);
    cursor: pointer;
    border: none;
    white-space: nowrap;
    line-height: 1;
    /* Prevent vertical stretching */
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-blue), #b8893a);
    color: var(--white);
    box-shadow: 0 4px 15px var(--accent-20);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--accent-25);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--accent-blue);
    color: var(--accent-blue);
}

.btn-outline:hover {
    background: var(--accent-blue);
    color: var(--white);
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 2000;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    padding: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    min-height: 88px;
}

header.scrolled {
    min-height: 76px;
    background: rgba(255, 255, 255, 0.99);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 clamp(1rem, 5vw, 2rem);
    position: relative;
}

nav {
    display: flex;
    align-items: center;
}

/* ── Logo ── */
/* ── Nav logo: image-based ── */
.logo {
    flex-shrink: 0;
    z-index: 10;
    display: flex;
    align-items: center;
    text-decoration: none;
    line-height: 1;
    transition: transform 0.28s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.logo:hover {
    transform: scale(1.07);
}

/* Logo image */
.logo-img {
    height: 52px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    background: transparent;
    border-radius: 0;
    padding: 0;
    display: block;
    box-shadow: none;
    transition: transform 0.28s cubic-bezier(0.34, 1.56, 0.64, 1);
    user-select: none;
    -webkit-user-drag: none;
    animation: logo-fadein 0.55s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

@keyframes logo-fadein {
    0%   { opacity: 0; transform: scale(0.92) translateY(-4px); }
    100% { opacity: 1; transform: none; }
}

/* Header nav logo hover — zoom only, no effects */
.logo:hover .logo-img {
    filter: none;
}

/* Footer brand card logo hover — zoom only, no effects */
.footer-logo {
    transition: transform 0.28s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.footer-logo:hover {
    transform: scale(1.06);
}
.footer-logo:hover .logo-img {
    filter: none;
}

/* Keep legacy text-based fallback hidden — JS replaces with img */
.logo .logo-brand,
.logo .logo-sub,
.logo span:not(.logo-brand):not(.logo-sub) { display: none; }

nav ul {
    display: flex;
    gap: 0.85rem;
    align-items: center;
    margin: 0;
    padding: 0;
}

nav a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-color);
    position: relative;
    padding: 8px 0;
    white-space: nowrap;
    display: inline-block;
}

nav a:hover,
nav a.active {
    color: var(--accent-blue);
}

/* Underline removed — replaced with icon+hover style on desktop */
nav>ul>li>a::after { display: none !important; content: none !important; }
nav>ul>li>a:hover::after { display: none !important; }

/* Mega Menu Dropdown */
.dropdown {
    position: static;
}

.dropdown-menu {
    position: fixed;
    top: 88px;
    left: 50vw;
    transform: translateX(-50%) translateY(14px);
    width: min(1180px, 94vw);
    /* Safety net: never taller than visible screen */
    max-height: calc(100vh - 110px);
    max-height: calc(100dvh - 110px);
    /* Card */
    background: #ffffff;
    border-radius: 20px;
    border: 1.5px solid #e0d9cc;
    box-shadow:
        0 2px 8px rgba(0,0,0,0.06),
        0 16px 40px rgba(0,0,0,0.12),
        0 48px 96px rgba(0,0,0,0.09);
    /* Layout — 3 columns across, wraps to 2nd row for Business + Tax */
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    /* State */
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
    z-index: 1100;
    /* Clip rounded corners on x, allow y scroll if content overflows */
    overflow-x: hidden;
    overflow-y: auto;
}

/* Gold accent bar across the top */
.dropdown-menu::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, #1c2b4a 0%, var(--accent-blue) 50%, #d4b06a 100%);
    z-index: 2;
}

.mega-column {
    grid-column: auto;
    display: flex;
    flex-direction: column;
    text-align: left;
    padding: 1.4rem 1.25rem 1.6rem;
    border-right: 1px solid #e8e3d8;
    min-width: 0;
    background: #ffffff;
}

/* First column in every row gets extra left padding */
.mega-column:nth-child(3n+1) { padding-left: 1.75rem; }
/* Last column in every row gets no right border */
.mega-column:nth-child(3n)   { border-right: none; }
/* True last child always gets extra right padding and no border */
.mega-column:last-child      { padding-right: 1.75rem; border-right: none; }

.dropdown.open .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

/* ── Extra-compact dropdown for short screens (laptops, landscape tablets) ── */
@media (max-height: 750px) {
    .dropdown-menu {
        max-height: calc(100vh - 100px);
        max-height: calc(100dvh - 100px);
    }
    .mega-column {
        padding: 1rem 1.1rem 1.2rem !important;
    }
    .mega-column:nth-child(3n+1) { padding-left: 1.4rem !important; }
    .mega-column:last-child      { padding-right: 1.4rem !important; }
    .mega-column h4 {
        font-size: 0.7rem !important;
        margin-bottom: 0.45rem !important;
        padding-bottom: 0.4rem !important;
    }
    .mega-links li a {
        padding: 0.28rem 0.5rem !important;
        font-size: 0.85rem !important;
    }
}

@media (max-height: 620px) {
    .mega-column {
        padding: 0.75rem 1rem 0.9rem !important;
    }
    .mega-column h4 {
        font-size: 0.65rem !important;
        margin-bottom: 0.3rem !important;
        padding-bottom: 0.3rem !important;
    }
    .mega-links li a {
        padding: 0.2rem 0.45rem !important;
        font-size: 0.8rem !important;
    }
}

/* ── Dropdown backdrop overlay ── */
#dropdown-backdrop {
    position: fixed;
    inset: 0;
    z-index: 1050;
    background: rgba(10, 15, 30, 0.45);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    pointer-events: none;
}

#dropdown-backdrop.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/* Prevent body scroll and hide floating widgets when dropdown is open */
body.dropdown-open {
    overflow: hidden;
}

body.dropdown-open .mobile-bottom-nav {
    z-index: 900;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease, z-index 0s 0.25s;
}


/* Category Columns inside Mega Menu - definition moved above to support centering */

.mega-column h4 {
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--accent-blue);
    text-transform: uppercase;
    letter-spacing: 0.11em;
    margin-bottom: 0.65rem;
    padding-bottom: 0.55rem;
    border-bottom: 1.5px solid var(--accent-25);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.45rem;
    white-space: nowrap;
}

.mega-column h4 svg {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    margin: 0;
    color: var(--accent-blue);
    stroke-width: 2.5px;
}

.mega-links li a svg {
    flex-shrink: 0;
    width: 15px;
    height: 15px;
    margin: 0;
    color: #94a3b8;
    transition: color 0.15s;
}

.mega-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
    align-items: flex-start;
}

.mega-links li {
    width: 100%;
}

.mega-links li a {
    font-size: 0.9rem;
    font-weight: 500;
    color: #334155;
    padding: 0.4rem 0.6rem;
    border-radius: 8px;
    transition: background 0.15s, color 0.15s, transform 0.15s;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    line-height: 1.35;
    width: 100%;
    text-align: left;
    justify-content: flex-start;
}

.mega-links li a:hover {
    background: var(--accent-10);
    color: var(--accent-blue);
    transform: translateX(3px);
}

.mega-links li a:hover svg {
    color: var(--accent-blue);
}

.mega-links li a::after {
    display: none;
}

/* Mega Menu Items */
.dropdown-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    border-radius: 12px;
    transition: all 0.2s ease;
    text-decoration: none;
    /* Just in case */
}

.dropdown-item:hover {
    background: var(--secondary-bg);
    transform: translateY(-2px);
}

.dropdown-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(196, 154, 60, 0.05);
    border-radius: 10px;
    color: var(--accent-blue);
    transition: all 0.3s ease;
}

.dropdown-item:hover .dropdown-icon {
    background: var(--accent-blue);
    color: var(--white);
}

.dropdown-text h4 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--heading-color);
}

.dropdown-text p {
    font-size: 0.8rem;
    color: #64748b;
    line-height: 1.4;
    margin: 0;
}

.dropdown-menu li a:after {
    display: none;
}


/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    font-size: 1.8rem;
    color: var(--heading-color);
    cursor: pointer;
    z-index: 10001;
    transition: all 0.3s ease;
}

.menu-toggle.active {
    color: var(--accent-blue);
    transform: rotate(90deg);
}

/* Nav Actions (CTA Button) */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

/* Hero Section */
.hero {
    position: relative;
    padding: 12rem 0 8rem;
    overflow: hidden;
    background: linear-gradient(135deg, #faf8f4 0%, #ffffff 100%);
}

.hero-content {
    max-width: 650px;
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    letter-spacing: -1.5px;
    line-height: 1.1;
}

.hero p {
    font-size: 1.25rem;
    color: #64748b;
    margin-bottom: 2.5rem;
    max-width: 500px;
}

/* Floating Elements */
@keyframes float-slow {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(2deg);
    }
}

@keyframes float-medium {

    0%,
    100% {
        transform: translateY(0px) translateX(0px);
    }

    33% {
        transform: translateY(-30px) translateX(10px);
    }

    66% {
        transform: translateY(-10px) translateX(-10px);
    }
}

.floating-shape {
    position: absolute;
    pointer-events: none;
    z-index: 0;
}

.shape-1 {
    top: -5%;
    right: 0%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(196, 154, 60, 0.04) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    animation: float-slow 15s infinite ease-in-out;
}

.shape-2 {
    bottom: 10%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(196, 154, 60, 0.04) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    animation: float-medium 20s infinite ease-in-out;
}

.shape-3 {
    top: 20%;
    right: 20%;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent-10), transparent);
    border-radius: 12px;
    transform: rotate(45deg);
    animation: float-medium 12s infinite ease-in-out;
}

.hero-visual {
    position: relative;
    z-index: 1;
}

/* Footer */
/* Mobile-only nav items — hidden on desktop */
.mobile-menu-cta { display: none !important; }
.mobile-nav-bottom { display: none !important; }
.nav-arrow { display: none; }

/* ── Desktop nav icon box ── */
.nav-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 7px;
    background: rgba(196, 154, 60, 0.12);
    border: 1px solid rgba(196, 154, 60, 0.3);
    flex-shrink: 0;
    transition: background 0.2s, border-color 0.2s, transform 0.15s;
}
.nav-icon svg {
    width: 14px;
    height: 14px;
    stroke: var(--accent-dark);
    fill: none;
    display: block;
    transition: stroke 0.2s;
}

/* ── Desktop nav links: icon LEFT of label (row) ── */
/* Hide mobile-only logo item on desktop */
.nav-menu-logo-item { display: none; }

header nav .nav-links > li > a {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 8px !important;
    padding: 8px 16px !important;
    font-size: 0.86rem !important;
    font-weight: 500 !important;
    color: #475569 !important;
    white-space: nowrap !important;
    border-radius: 9px !important;
    transition: background 0.2s, color 0.2s !important;
    line-height: 1.2 !important;
}

header nav .nav-links > li > a {
    transition: background 0.22s ease, color 0.22s ease, transform 0.22s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.22s ease !important;
}

header nav .nav-links > li > a:hover,
header nav .nav-links > li > a.active {
    background: var(--accent-10) !important;
    color: var(--accent-blue) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 18px rgba(196, 154, 60, 0.18) !important;
}

header nav .nav-links > li > a:hover .nav-icon,
header nav .nav-links > li > a.active .nav-icon {
    background: var(--accent-blue) !important;
    border-color: var(--accent-blue) !important;
    transform: scale(1.12) rotate(-6deg) !important;
    transition: transform 0.25s cubic-bezier(0.34,1.56,0.64,1), background 0.22s ease !important;
}

header nav .nav-links > li > a:hover .nav-icon svg,
header nav .nav-links > li > a.active .nav-icon svg {
    stroke: #ffffff !important;
}

/* Keep the dropdown trigger looking right */
.dropdown > a {
    position: relative;
}

footer {
    background: linear-gradient(145deg, #4a2508 0%, #6b3a10 35%, #5a2e0a 65%, #3d1e06 100%);
    color: #f0e0c0;
    padding: 10rem 0 4rem;
    position: relative;
    overflow: hidden;
    border-top: 3px solid rgba(212, 168, 60, 0.70);
}

.footer-glow {
    display: none;
}

@keyframes footer-glow-float {
    0% {
        transform: translate(0, 0) scale(1) rotate(0deg);
    }

    100% {
        transform: translate(150px, 100px) scale(1.2) rotate(15deg);
    }
}

/* Gold shimmer overlay */
footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 50% at 50% 0%,   rgba(255, 200, 80, 0.18) 0%, transparent 60%),
        radial-gradient(ellipse 50% 40% at 0%  100%,  rgba(220, 160, 40, 0.14) 0%, transparent 55%),
        radial-gradient(ellipse 50% 40% at 100% 90%,  rgba(220, 160, 40, 0.12) 0%, transparent 55%);
    pointer-events: none;
    z-index: 1;
}

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

/* Redesigned Asymmetric Grid */
.footer-main-grid {
    display: grid;
    grid-template-columns: 1.5fr 3fr;
    gap: 4rem;
    margin-bottom: 8rem;
    align-items: start;
}

.footer-brand-side {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: #ffffff;
    border-radius: 24px;
    padding: 1.75rem 1.75rem 1.5rem;
    border: 1px solid rgba(196, 154, 60, 0.35);
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.28),
        0 4px 16px rgba(0, 0, 0, 0.14),
        inset 0 1px 0 rgba(255, 255, 255, 1);
    align-self: flex-start;
    position: relative;
    overflow: hidden;
}

/* Subtle inner gold shimmer at top */
.footer-brand-side::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #c49a3c, #d4b06a, #c49a3c, transparent);
    border-radius: 24px 24px 0 0;
}

/* Hide tagline — keeps card compact to match column height */
.footer-brand-side .footer-desc {
    display: none !important;
}

/* Divider between logo and text */
.footer-brand-side .footer-logo {
    margin-bottom: 0.5rem;
}
.footer-brand-side .footer-logo::after {
    display: none;
}

.footer-brand-side .footer-social-strip {
    justify-content: center !important;
    gap: 0.85rem !important;
}

.footer-brand-side .footer-social-strip a {
    background: rgba(196, 154, 60, 0.12) !important;
    color: #b8893a !important;
    border: 1px solid rgba(196, 154, 60, 0.40) !important;
    width: 40px !important;
    height: 40px !important;
}

.footer-brand-side .footer-social-strip a:hover {
    background: #c49a3c !important;
    border-color: #c49a3c !important;
    color: #ffffff !important;
    box-shadow: 0 6px 18px rgba(196, 154, 60, 0.45) !important;
    transform: translateY(-4px) !important;
}

/* ── Footer logo: image-based ── */
.footer-logo {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    width: 100%;
}

/* Footer logo — large transparent PNG, centered */
.footer-logo .logo-img {
    height: 230px;
    max-width: 100%;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
    background: transparent;
    object-fit: contain;
    mix-blend-mode: normal;
    display: block;
    margin: 0 auto;
}

/* Keep legacy text-based fallback hidden — JS replaces with img */
.footer-logo .logo-brand,
.footer-logo .logo-sub,
.footer-logo span:not(.logo-brand):not(.logo-sub) { display: none; }

.footer-desc {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.75);
    max-width: 380px;
    margin-bottom: 3rem;
}

.footer-social-strip {
    display: flex;
    gap: 1.5rem;
}

.footer-social-strip a {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.footer-social-strip a:hover {
    background: #c49a3c;
    border-color: #d4b06a;
    color: #fff;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.30);
}

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

.footer-nav-col h4 {
    color: #ffffff;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 2.5rem;
    position: relative;
}

.footer-nav-col h4::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 20px;
    height: 2px;
    background: rgba(255, 255, 255, 0.5);
}

.footer-link-list {
    list-style: none;
    padding: 0;
}

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

.footer-link-list a {
    color: rgba(255, 255, 255, 0.78);
    text-decoration: none;
    font-size: 1.05rem;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-link-list a:hover {
    color: #ffffff;
    transform: translateX(8px);
}

.footer-contact-item {
    margin-bottom: 1.4rem;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.footer-contact-item span,
.footer-contact-item .fcp-name {
    font-size: 0.68rem;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
    letter-spacing: 0.12em;
    font-weight: 600;
}

.footer-contact-item strong,
.footer-contact-item .fcp-num {
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.5;
    display: block;
}

/* Contact person rows */
.footer-contact-person {
    margin-bottom: 0.75rem;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    padding: 0.65rem 0.9rem 0.65rem 1rem;
    background: rgba(255, 255, 255, 0.10);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-left: 3px solid rgba(255, 255, 255, 0.60);
    cursor: pointer;
    transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
    text-decoration: none;
    display: flex;
}

.footer-contact-person:hover {
    background: rgba(255, 255, 255, 0.18);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.20);
    transform: translateY(-2px);
}

.footer-contact-person .fcp-name {
    color: rgba(255, 255, 255, 0.70);
}

.footer-contact-person .fcp-num {
    color: #ffffff;
}

/* Second row — slightly warmer tint */
.footer-contact-person + .footer-contact-person {
    border-left-color: rgba(255, 210, 120, 0.70);
    background: rgba(255, 200, 80, 0.08);
}

.footer-contact-person .fcp-name {
    font-size: 0.78rem;
    text-transform: none;
    letter-spacing: 0;
    font-weight: 500;
    white-space: nowrap;
}

.footer-contact-person .fcp-num {
    font-size: 0.88rem;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.2s;
}

.footer-contact-person:hover .fcp-num {
    color: #fff !important;
}

.footer-bottom-strip {
    padding-top: 4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.20);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.9rem;
}

.estro-credit a {
    color: rgba(255, 255, 255, 0.80);
    text-decoration: none;
    font-weight: 600;
    margin-left: 0.3rem;
    transition: color 0.3s ease;
}

.estro-credit a:hover {
    color: #ffffff;
}

/* Responsive */
@media (max-width: 1024px) {
    .footer-main-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .footer-links-grid {
        gap: 3rem;
    }
}

@media (max-width: 900px) {
    body.menu-active {
        overflow: hidden;
    }

    header {
        min-height: 70px !important;
    }

    .nav-actions .btn {
        display: none !important;
    }

    .nav-container {
        padding: 0 clamp(1rem, 5vw, 1.25rem);
    }

    .menu-toggle {
        display: flex !important;
        order: 3;
    }

    nav {
        display: block !important;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        height: calc(100vh - 70px);
        background: #faf9f6;
        flex-direction: column;
        align-items: stretch;
        padding: 1rem 1.25rem 1rem;
        display: none;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        overscroll-behavior: contain;
        border-top: 3px solid var(--accent-blue);
        gap: 0.5rem;
    }

    /* ── Button items share 70% of nav height (flex 7 × 4 = 28 / 40 total) ── */
    .nav-links > li:not(.nav-menu-logo-item):not(.mobile-nav-bottom) {
        flex: 7 1 0;
        display: flex;
        flex-direction: column;
    }

    /* ── Make anchor fill the taller li ── */
    header nav .nav-links > li:not(.nav-menu-logo-item):not(.mobile-nav-bottom) > a {
        flex: 1;
        height: auto !important;
        min-height: unset !important;
        display: flex;
        align-items: center;
    }

    .nav-links.active { display: flex !important; }

    /* ── Logo takes 30% of nav height (flex 12 / 40 total) ── */
    .nav-menu-logo-item {
        flex: 12 1 0;
        margin: 0;
        padding: 0.5rem 0;
        display: flex !important;
        justify-content: center;
        align-items: center;
        background: transparent !important;
        border: none !important;
        box-shadow: none !important;
        outline: none !important;
        /* visible gold separator LINE ABOVE logo */
        border-top: 1px solid rgba(196, 154, 60, 0.40) !important;
    }

    /* Higher specificity than .nav-links > li > a to strip its white box */
    .nav-links > li.nav-menu-logo-item > .nav-menu-logo-link {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        background: transparent !important;
        border: none !important;
        border-radius: 0 !important;
        box-shadow: none !important;
        padding: 0 !important;
        width: auto !important;
        transition: transform 0.28s cubic-bezier(0.34, 1.56, 0.64, 1);
    }

    .nav-links > li.nav-menu-logo-item > .nav-menu-logo-link:hover {
        transform: scale(1.05);
        background: transparent !important;
        border: none !important;
        box-shadow: none !important;
    }

    .nav-menu-logo-img {
        width: 130px;
        height: auto;
        object-fit: contain;
        display: block;
        background: transparent !important;
        border: none !important;
        box-shadow: none !important;
    }

    .nav-links::before { display: none; }

    /* Reset desktop underline pseudo-element */
    .nav-links a::after,
    .nav-links li a::after,
    .nav-links > li > a::after {
        display: none !important;
        content: none !important;
    }

    .nav-links li {
        margin: 0;
        width: 100%;
        border: none;
        list-style: none;
        flex-shrink: 0; /* Prevent items from shrinking so overflow-y scroll works */
    }

    .nav-links > li > a {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 0.65rem !important;
        font-size: 0.95rem !important;
        font-weight: 600 !important;
        color: #1e293b !important;
        width: 100% !important;
        padding: 0.9rem 1.4rem !important;
        background: #ffffff !important;
        border-radius: 12px !important;
        border: 1.5px solid #e0d9cc !important;
        transition: all 0.2s !important;
        text-decoration: none !important;
        opacity: 1 !important;
        box-shadow: 0 1px 4px rgba(0,0,0,0.04) !important;
        line-height: 1.4 !important;
        text-align: center !important;
    }

    .nav-links > li > a:hover,
    .nav-links > li > a.active {
        background: var(--accent-blue) !important;
        color: #ffffff !important;
        border-color: var(--accent-blue) !important;
        box-shadow: 0 4px 14px var(--accent-35) !important;
    }

    .nav-links > li > a:hover .nav-icon svg,
    .nav-links > li > a.active .nav-icon svg {
        stroke: #ffffff;
    }

    /* Icon inside nav item */
    .nav-links .nav-icon {
        display: flex !important;
        align-items: center;
        justify-content: center;
        width: 32px;
        height: 32px;
        border-radius: 8px;
        background: rgba(196, 154, 60, 0.10);
        flex-shrink: 0;
        transition: background 0.2s;
    }

    .nav-links > li > a:hover .nav-icon,
    .nav-links > li > a.active .nav-icon {
        background: rgba(255,255,255,0.2);
    }

    .nav-links .nav-icon svg { display: block; stroke: var(--accent-blue); }

    /* Hide the arrow on centered card layout */
    .nav-links .nav-arrow { display: none !important; }

    /* Dropdown toggle */
    .nav-links .dropdown > a::after { display: none !important; }
    .nav-links .dropdown.active > a {
        background: var(--accent-blue) !important;
        color: #ffffff !important;
        border-color: var(--accent-blue) !important;
        border-bottom-left-radius: 0 !important;
        border-bottom-right-radius: 0 !important;
    }

    /* Chevron — absolutely positioned on right so icon+text stay centered */
    .nav-links .dropdown > a {
        position: relative !important;
    }
    .nav-links .dropdown > a .nav-arrow {
        display: inline-block !important;
        position: absolute !important;
        right: 1.1rem !important;
        top: 50% !important;
        transform: translateY(-50%) rotate(0deg) !important;
        margin-left: 0 !important;
        font-size: 1.1rem !important;
        line-height: 1 !important;
        transition: transform 0.3s ease !important;
        color: inherit !important;
    }
    .nav-links .dropdown.active > a .nav-arrow {
        transform: translateY(-50%) rotate(90deg) !important;
    }

    /* ── Mobile nav bottom panel ── */
    .mobile-nav-bottom {
        display: none !important;
    }

    /* ── Tagline ── */
    .mnb-tagline {
        font-size: 0.82rem;
        font-style: italic;
        color: #64748b;
        text-align: center;
        margin: 0 0 0.35rem;
        line-height: 1.4;
    }

    /* ── Quick links 2-col grid — hidden ── */
    .mnb-links-grid { display: none !important; }

    /* ── Address row — hidden ── */
    .mnb-info-row { display: none !important; }

    /* ── Contact cards — stacked full width ── */
    .mobile-nav-quick {
        display: flex;
        flex-direction: column;
        gap: 0.45rem;
    }
    .mobile-nav-quick-link {
        display: flex !important;
        align-items: center;
        gap: 0.55rem;
        font-size: 0.82rem !important;
        font-weight: 500 !important;
        color: #334155 !important;
        background: #ffffff !important;
        border: 1.5px solid #e0d9cc !important;
        border-radius: 10px !important;
        padding: 0.65rem 0.9rem !important;
        text-decoration: none;
        box-shadow: 0 1px 4px rgba(0,0,0,0.04) !important;
        justify-content: center !important;
        text-align: center !important;
        transition: background 0.15s, border-color 0.15s, color 0.15s !important;
        min-width: 0;
    }
    .mobile-nav-quick-link span {
        min-width: 0;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
    .mobile-nav-quick-link:hover {
        background: rgba(196, 154, 60, 0.10) !important;
        border-color: var(--accent-blue) !important;
        color: var(--accent-blue) !important;
    }
    .mobile-nav-quick-link svg { stroke: var(--accent-blue); flex-shrink: 0; }
    .mobile-nav-quick-link .nav-icon { display: none !important; }

    /* ── Social icons ── */
    .mobile-nav-socials {
        display: flex;
        justify-content: center;
        gap: 0.55rem;
        padding-top: 0.1rem;
    }
    .mobile-nav-social {
        width: 34px;
        height: 34px;
        border-radius: 8px;
        background: #faf9f6;
        border: 1px solid #e0d9cc;
        display: flex !important;
        align-items: center;
        justify-content: center;
        color: #64748b;
        transition: all 0.2s;
        box-shadow: none !important;
    }
    .mobile-nav-social:hover {
        background: var(--accent-blue) !important;
        border-color: var(--accent-blue) !important;
        color: #ffffff;
    }
    .mobile-nav-social svg { stroke: currentColor; display: block; }
    .mobile-nav-social .nav-icon { display: none !important; }
    .mobile-nav-social .nav-arrow { display: none !important; }

    /* ── Copyright line ── */
    .mnb-copyright {
        font-size: 0.7rem;
        color: #94a3b8;
        text-align: center;
        line-height: 1.5;
        padding-top: 0.25rem;
    }

    /* ── Mobile dropdown: smooth accordion (max-height animation) ── */

    /* Prevent desktop :hover from ever opening the menu on touch devices */
    .dropdown:hover .dropdown-menu {
        max-height: 0 !important;
    }

    /* Base state: always in document flow, collapsed via max-height */
    .dropdown-menu {
        position: static !important;
        width: 100% !important;
        background: rgba(196, 154, 60, 0.03) !important;
        padding: 0 !important;
        box-shadow: none !important;
        border: none !important;
        border-radius: 0 !important;
        transform: none !important;
        margin-top: 0 !important;
        /* Accordion mechanics */
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        max-height: 0 !important;
        overflow: hidden !important;
        opacity: 1 !important;
        visibility: visible !important;
        transition: max-height 0.38s cubic-bezier(0.4, 0, 0.2, 1) !important;
    }

    /* Active (expanded) — large enough to fit all 5 service columns */
    .dropdown.active .dropdown-menu {
        max-height: 1600px !important;
        border-top: 2px solid var(--accent-blue) !important;
        gap: 0 !important;
    }

    /* Kill the top accent bar — not needed inside nav panel */
    .dropdown-menu::before {
        display: none !important;
    }

    .mega-column {
        padding: 1.1rem 1rem 1rem !important;
        display: flex !important;
        flex-direction: column !important;
        text-align: left !important;
        border-right: 1px solid #e0d9cc !important;
        border-bottom: 1px solid #e0d9cc !important;
        min-width: 0 !important;
    }

    /* No right border on right-edge columns (even positions) */
    .mega-column:nth-child(2n) {
        border-right: none !important;
    }

    /* Last item has no bottom border */
    .mega-column:last-child {
        border-bottom: none !important;
        border-right: none !important;
    }

    /* If odd item count — last item alone spans both columns */
    .mega-column:last-child:nth-child(odd) {
        grid-column: 1 / -1 !important;
    }

    .mega-column h4 {
        font-size: 0.72rem;
        font-weight: 800;
        letter-spacing: 1.2px;
        margin-bottom: 0.6rem;
        padding-bottom: 0.5rem;
        color: var(--accent-blue);
        text-transform: uppercase;
        display: flex;
        align-items: center;
        gap: 0.4rem;
        white-space: normal;
    }

    .mega-column h4 svg {
        width: 14px !important;
        height: 14px !important;
        flex-shrink: 0;
    }

    .mega-links {
        display: flex;
        flex-direction: column;
        gap: 0;
    }

    .mega-links li {
        margin: 0 !important;
    }

    .mega-links li a {
        display: flex !important;
        align-items: center !important;
        gap: 0.45rem !important;
        padding: 0.42rem 0 !important;
        font-size: 0.8rem !important;
        font-weight: 500 !important;
        color: var(--text-color) !important;
        text-align: left !important;
        border-bottom: 1px solid rgba(0,0,0,0.04) !important;
        border-radius: 0 !important;
        transform: none !important;
        opacity: 1 !important;
        white-space: normal !important;
        line-height: 1.35 !important;
    }

    .mega-links li a svg {
        flex-shrink: 0 !important;
        width: 12px !important;
        height: 12px !important;
        opacity: 0.55;
    }

    .mega-links li:last-child a {
        border-bottom: none !important;
    }



    /* Mobile menu CTA strip */
    .mobile-menu-cta {
        display: flex !important;
        border-bottom: none !important;
        padding: 1.5rem 1.5rem 2rem;
        background: #faf9f6;
        flex-direction: column;
        gap: 1rem;
        margin-top: 0.5rem;
        border-top: 1px solid #e0d9cc !important;
    }

    .mobile-cta-btn {
        display: block;
        background: var(--accent-blue);
        color: #ffffff !important;
        text-align: center;
        padding: 0.9rem 1.5rem !important;
        border-radius: 100px;
        font-size: 0.92rem !important;
        font-weight: 700 !important;
        letter-spacing: 0.01em;
        text-decoration: none;
        box-shadow: 0 4px 16px var(--accent-35);
    }

    .mobile-cta-btn::after { display: none !important; }

    .mobile-menu-contacts {
        display: flex;
        flex-direction: column;
        gap: 0.6rem;
    }

    .mobile-contact-link {
        display: flex !important;
        align-items: center;
        gap: 0.6rem;
        font-size: 0.85rem !important;
        font-weight: 500 !important;
        color: #475569 !important;
        padding: 0 !important;
        background: transparent !important;
        text-decoration: none;
    }

    .mobile-contact-link::after { display: none !important; }

    .mobile-contact-link svg { flex-shrink: 0; color: var(--accent-blue); }

    .logo {
        z-index: 10001;
    }
    .logo-img {
        height: 42px;
        max-width: 160px;
        padding: 0;
        border-radius: 0;
        background: transparent;
    }

    /* Hide bottom nav when menu is open */
    body.menu-active .mobile-bottom-nav {
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(20px);
    }

    footer {
        padding: 2.5rem 0 1.5rem !important;
    }

    footer {
        padding-bottom: 7rem !important;
    }

    /* ── Brand section: stacked centered like desktop ── */
    .footer-main-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 1.75rem;
    }

    .footer-brand-side {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        gap: 0.75rem;
        padding: 1.75rem 1.75rem 1.5rem;
        border-radius: 24px;
        align-self: auto;
    }

    .footer-logo {
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 0;
    }

    .footer-logo .logo-img {
        height: 140px;
        max-width: 260px;
        padding: 0;
        border-radius: 0;
        box-shadow: none;
        background: transparent;
        mix-blend-mode: normal;
        margin: 0 auto;
    }

    .footer-desc {
        display: none;
    }

    .footer-social-strip {
        gap: 0.75rem;
        justify-content: center;
    }

    .footer-social-strip a {
        width: 36px;
        height: 36px;
    }

    .footer-social-strip a svg {
        width: 17px;
        height: 17px;
    }

    /* ── Expertise + Explore: 2 columns, centered ── */
    .footer-links-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem 1.25rem;
    }

    /* Connect — 2-col grid: address left, contacts right, email full-width below */
    .footer-links-grid .footer-nav-col:last-child {
        grid-column: 1 / -1;
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto auto auto;
        gap: 0.55rem 0.9rem;
        align-items: start;
        border-top: 1px solid rgba(255,255,255,0.07);
        padding-top: 1.25rem;
        text-align: left;
    }

    /* CONNECT title — full width, centered */
    .footer-links-grid .footer-nav-col:last-child h4 {
        grid-column: 1 / -1;
        grid-row: 1;
        width: 100%;
        margin-bottom: 0.5rem;
        text-align: center;
    }

    /* HQ Address — left col, spans rows 2–3 */
    .footer-links-grid .footer-nav-col:last-child > div:nth-of-type(1) {
        grid-column: 1;
        grid-row: 2 / 4;
        text-align: left;
        padding: 0;
        border: none;
        min-width: 0;
    }

    /* Email — full width, row 4 with top divider */
    .footer-links-grid .footer-nav-col:last-child > div:nth-of-type(2) {
        grid-column: 1 / -1;
        grid-row: 4;
        text-align: center;
        padding: 0.6rem 0 0;
        border: none;
        border-top: 1px solid rgba(255,255,255,0.06);
        margin-top: 0.2rem;
    }

    /* Kiran — right col, row 2 */
    .footer-links-grid .footer-nav-col:last-child > div:nth-of-type(3) {
        grid-column: 2;
        grid-row: 2;
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 0.15rem !important;
        padding: 0.45rem 0.65rem !important;
        min-width: 0;
        margin-bottom: 0;
    }

    /* Maninder — right col, row 3 */
    .footer-links-grid .footer-nav-col:last-child > div:nth-of-type(4) {
        grid-column: 2;
        grid-row: 3;
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 0.15rem !important;
        padding: 0.45rem 0.65rem !important;
        min-width: 0;
        margin-bottom: 0;
    }

    /* Smaller text for contact cards in narrow right col */
    .footer-links-grid .footer-nav-col:last-child > div:nth-of-type(3) .fcp-name,
    .footer-links-grid .footer-nav-col:last-child > div:nth-of-type(4) .fcp-name {
        font-size: 0.7rem;
        white-space: normal;
    }

    .footer-links-grid .footer-nav-col:last-child > div:nth-of-type(3) .fcp-num,
    .footer-links-grid .footer-nav-col:last-child > div:nth-of-type(4) .fcp-num {
        font-size: 0.78rem;
        white-space: normal;
    }

    .footer-nav-col {
        text-align: center;
    }

    .footer-nav-col h4 {
        font-size: 0.68rem;
        margin-bottom: 0.75rem;
        text-align: center;
    }

    .footer-nav-col h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-link-list {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-link-list li {
        margin-bottom: 0.45rem;
    }

    .footer-link-list a {
        font-size: 0.83rem;
    }

    .footer-contact-item {
        padding: 0.3rem 0;
    }

    .footer-contact-item span {
        font-size: 0.65rem;
        margin-bottom: 0.2rem;
        display: block;
        text-align: center;
    }

    .footer-contact-item strong {
        font-size: 0.8rem;
        line-height: 1.5;
        display: block;
        text-align: center;
    }

}

.estro-credit {
    margin-top: 0.5rem;
}

.dropdown-item {
    padding: 0.8rem;
    background: #faf9f6;
}

/* Service Icon Animations */
.service-card .service-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
}

/* Document Icon Lines */
.service-card .anim-icon-doc line {
    transition: transform 0.3s ease;
    transform-origin: center;
}

.service-card:hover .anim-icon-doc line:nth-child(3) {
    transform: translateX(2px);
}

.service-card:hover .anim-icon-doc line:nth-child(4) {
    transform: translateX(-2px);
}

/* Pen Icon Tilt */
.service-card .anim-icon-pen {
    transform-origin: center;
    transition: transform 0.3s ease;
}

.service-card:hover .anim-icon-pen {
    animation: pen-wiggle 0.5s ease-in-out infinite;
}

@keyframes pen-wiggle {

    0%,
    100% {
        transform: rotate(0deg);
    }

    25% {
        transform: rotate(-10deg);
    }

    75% {
        transform: rotate(10deg);
    }
}

/* Graph Icon Grow */
.service-card .anim-icon-graph line {
    transform-origin: bottom;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.service-card:hover .anim-icon-graph line:nth-child(1) {
    transform: scaleY(0.5);
}

.service-card:hover .anim-icon-graph line:nth-child(2) {
    transform: scaleY(1.2);
    transition-delay: 0.1s;
}

.service-card:hover .anim-icon-graph line:nth-child(3) {
    transform: scaleY(0.8);
    transition-delay: 0.2s;
}

/* Parallax Wrapper */
.parallax-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

/* Why Choose Us Section */
.why-choose-us {
    position: relative;
    padding: 6rem 0;
    background: linear-gradient(rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.85)), url('https://images.unsplash.com/photo-1556761175-5973dc0f32e7?ixlib=rb-1.2.1&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    /* Parallax feel */
    color: #ffffff;
    overflow: hidden;
}

.why-choose-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.section-badge {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    background: var(--accent-gold);
    color: var(--heading-color);
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    margin-bottom: 2rem;
}

.why-choose-us h2 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--white);
}

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

.stat-circle-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.progress-ring {
    width: 120px;
    height: 120px;
    position: relative;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.progress-ring svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.progress-ring circle {
    fill: transparent;
    stroke-width: 8;
    stroke-linecap: round;
}

.ring-bg {
    stroke: rgba(255, 255, 255, 0.1);
}

.ring-progress {
    stroke: var(--accent-gold);
    stroke-dasharray: 327;
    /* 2 * PI * r (r=52) ≈ 326.7 */
    stroke-dashoffset: 327;
    transition: stroke-dashoffset 1.5s ease-out;
}

.stat-value {
    position: absolute;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.stat-desc {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.4;
}

/* Our Process Section */
.our-process {
    padding: 8rem 0;
    background: var(--secondary-bg);
    text-align: center;
}

.process-header {
    max-width: 800px;
    margin: 0 auto 5rem;
}

.process-header h2 {
    font-size: 3rem;
    margin-top: 1.5rem;
    color: var(--heading-color);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: left;
    position: relative;
}

/* Connective line for desktop */
.process-grid::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 10%;
    right: 10%;
    height: 1px;
    background: rgba(196, 154, 60, 0.25);
    z-index: 0;
    display: none;
    /* Can enable if desired, but image didn't strictly show it */
}

.process-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 1px;
    /* Sharp corners per image or slight style choice */
    border: 1px solid #e8e3d8;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.step-number {
    font-size: 4rem;
    font-weight: 700;
    color: transparent;
    -webkit-text-stroke: 1px #94a3b8;
    line-height: 1;
    margin-bottom: 2rem;
    font-family: 'Montserrat', sans-serif;
    opacity: 0.5;
}

.process-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--heading-color);
}

.process-card p {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.6;
}

/* Responsive adjustments */
@media (max-width: 900px) {
    .why-choose-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .why-choose-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
        max-width: 100%;
        margin: 0 auto;
    }

    .process-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .why-choose-us h2,
    .process-header h2 {
        font-size: 2.2rem;
    }
}

/* FAQ Section */
.faq-section {
    padding: 6rem 0;
    background: #faf9f6;
    background: var(--white);
}

.faq-container {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 4rem;
    align-items: flex-start;
}

.faq-left {
    position: sticky;
    top: 100px;
}

.faq-left h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--heading-color);
}

.faq-left p {
    color: #64748b;
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

.faq-right {
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    /* Subtle shadow for the card look */
    border: 1px solid rgba(0, 0, 0, 0.04);
    overflow: hidden;
}

.faq-item {
    border-bottom: 1px solid #e0d9cc;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    padding: 1.5rem 2rem;
    font-weight: 600;
    color: var(--heading-color);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.2s ease, color 0.2s ease;
    font-size: 1.05rem;
}

.faq-question:hover {
    background-color: #faf9f6;
    color: var(--accent-blue);
}

.faq-question.active {
    color: var(--accent-blue);
    background-color: #faf9f6;
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 400;
    transition: transform 0.3s ease;
    color: var(--accent-gold);
}

.faq-question.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background-color: #faf9f6;
}

.faq-answer p {
    padding: 0 2rem 1.5rem 2rem;
    color: #475569;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Specific keyword highlights in question */
.faq-question strong {
    color: var(--accent-blue);
}

@media (max-width: 900px) {
    .faq-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .faq-left {
        position: static;
        text-align: center;
        margin-bottom: 1rem;
    }

    .faq-right {
        box-shadow: none;
        border: none;
        background: transparent;
    }

    .faq-item {
        background: var(--white);
        margin-bottom: 1rem;
        border: 1px solid #e0d9cc;
        border-radius: 8px;
    }

    .faq-item:last-child {
        border-bottom: 1px solid #e0d9cc;
    }
}

/* Services Section Enhanced */
.services-section-enhanced {
    position: relative;
    padding: 8rem 0;
    overflow: hidden;
    background: #faf9f6;
}

/* Background Floating Elements */
.service-bg-element {
    position: absolute;
    opacity: 0.03;
    pointer-events: none;
    z-index: 0;
    animation: float-service-bg 20s infinite ease-in-out;
    color: var(--accent-blue);
}

.s-bg-1 {
    top: 10%;
    left: 5%;
    width: 100px;
    height: 100px;
    animation-duration: 25s;
}

.s-bg-2 {
    bottom: 15%;
    right: 5%;
    width: 150px;
    height: 150px;
    animation-duration: 30s;
}

.s-bg-3 {
    top: 40%;
    right: 15%;
    width: 60px;
    height: 60px;
    animation-duration: 18s;
}

.s-bg-4 {
    bottom: 30%;
    left: 10%;
    width: 80px;
    height: 80px;
    animation-duration: 22s;
    transform: rotate(45deg);
}

@keyframes float-service-bg {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    33% {
        transform: translate(30px, -50px) rotate(10deg);
    }

    66% {
        transform: translate(-20px, 20px) rotate(-5deg);
    }
}

/* Service Card Enhanced */
.service-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02), 0 2px 4px -1px rgba(0, 0, 0, 0.02);
    /* Clean subtle shadow initially */
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    z-index: 1;
    border: 1px solid rgba(0, 0, 0, 0.03);
    height: 100%;
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px -5px var(--accent-15);
    border-color: var(--accent-20);
}

/* Icon Container */
.service-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: rgba(196, 154, 60, 0.08);
    /* Light blue tint */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    color: var(--accent-blue);
}

.service-card:hover .service-icon-wrapper {
    background: var(--accent-blue);
    color: var(--white);
    transform: rotateY(180deg);
}

.service-card:hover .service-icon-wrapper svg {
    transform: rotateY(-180deg);
    /* Counter rotate icon so it stays readable if needed, or just let it flip */
}

/* Typography */
.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.service-card p {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* Learn More Link */
.service-link {
    font-weight: 600;
    color: var(--accent-blue);
    font-size: 0.9rem;
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.2s ease;
}

.service-card:hover .service-link {
    gap: 0.8rem;
}

/* View All Button */
.btn-view-all {
    background: var(--accent-blue);
    color: var(--white);
    padding: 0.8rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px -5px var(--accent-35);
    display: inline-block;
}

.btn-view-all:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px -5px var(--accent-50);
    background: #1e9acb;
    /* Slightly darker on hover */
}

/* Hero Slider Styles */
.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0f172a;
    padding: 80px 0 0;
    margin: 0;
    box-sizing: border-box;
}

.home-hero-revamp {
    position: relative;
    padding: 80px 0 0; /* offset fixed header */
    overflow: hidden;
    color: #fff;
    height: 100vh;
    min-height: 750px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

.hero-bg-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    transform: scale(1.1);
}

.hero-bg-slide.active {
    opacity: 1;
    animation: hero-ken-burns 8s linear forwards;
}

@keyframes hero-ken-burns {
    from { transform: scale(1.1); }
    to   { transform: scale(1); }
}

/* ── Footer Particle Canvas ────────────────────────────── */
#footer-particle-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;   /* behind footer-content-wrapper (z-index:2) */
}

/* ── Hero Particle Canvas ──────────────────────────────── */
#hero-particle-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 3;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom,
            rgba(15, 23, 42, 0.7) 0%,
            rgba(15, 23, 42, 0.4) 50%,
            rgba(15, 23, 42, 0.8) 100%);
    z-index: 2;
}

.hero-center-container {
    position: relative;
    z-index: 10;
    width: 100%;
}

.home-hero-center {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

/* Trust badge */
.hero-trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.55rem 1.5rem;
    background: rgba(196, 154, 60, 0.15);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(196, 154, 60, 0.40);
    border-radius: 100px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.9);
    margin-bottom: 1.6rem;
}

.hero-trust-badge svg { opacity: 0.7; color: var(--accent-blue); }

/* "Welcome to" line */
.hero-welcome-line {
    font-family: 'Inter', sans-serif;
    font-size: clamp(1.1rem, 3vw, 1.5rem);
    font-weight: 300;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.65);
    margin-bottom: 0.5rem;
}

/* ── Hero logo display — transparent logo, no circle ── */
.hero-logo-display {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0.25rem 0 1rem;
    width: clamp(320px, 40vw, 460px);
    height: clamp(230px, 28vw, 330px);
    flex-shrink: 0;
    cursor: pointer;
    transition: transform 0.32s cubic-bezier(0.34, 1.56, 0.64, 1);
    animation: hero-logo-entrance 0.9s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

/* Soft white radial glow behind the logo — fades to transparent so it
   reads as a halo, not a hard circle, lifting the navy logo off dark photos */
.hero-logo-display::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 118%;
    height: 128%;
    border-radius: 50%;
    background: radial-gradient(ellipse at center,
        rgba(255, 255, 255, 0.92) 0%,
        rgba(255, 255, 255, 0.82) 32%,
        rgba(255, 255, 255, 0.45) 56%,
        rgba(255, 255, 255, 0.0) 75%);
    filter: blur(6px);
    z-index: 0;
    pointer-events: none;
}

.hero-logo-display:hover {
    transform: scale(1.06) translateY(-5px);
}

.hero-logo-img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 0;
    padding: 0;
    background: transparent;
    display: block;
    /* Extra soft glow so the navy lettering stays crisp on the dark photo */
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.85))
            drop-shadow(0 6px 24px rgba(0, 0, 0, 0.35));
}

@keyframes hero-logo-entrance {
    0%   { opacity: 0; transform: scale(0.85) translateY(14px); }
    100% { opacity: 1; transform: scale(1) translateY(0); }
}

/* Company name — the centrepiece */
.hero-company-headline {
    font-family: 'Montserrat', 'Poppins', sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    margin: 0 0 1.2rem;
    line-height: 1;
}

.hch-main {
    display: block;
    font-size: clamp(5rem, 18vw, 11rem);
    font-weight: 900;
    color: #ffffff;
    letter-spacing: -0.03em;
    line-height: 0.9;
    text-shadow: 0 4px 40px rgba(0,0,0,0.4);
    position: relative;
    overflow: hidden;
}

/* Flash shimmer — same sweep as nav & footer AMK */
.hch-main::after {
    content: '';
    position: absolute;
    top: -20%; left: -120%;
    width: 55%; height: 140%;
    background: linear-gradient(105deg, transparent 20%, rgba(255,255,255,0.55) 50%, transparent 80%);
    transform: skewX(-15deg);
    animation: amk-shimmer 5s ease-in-out 2s infinite;
    pointer-events: none;
}

.hch-sub {
    display: inline-block;
    font-size: clamp(0.75rem, 2.2vw, 1.1rem);
    font-weight: 600;
    color: #ffffff;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-top: 0.35em;
    padding: 0.3em 1.2em;
    background: rgba(196, 154, 60, 0.25);
    border: 1px solid rgba(196, 154, 60, 0.50);
    border-radius: 2px;
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
}

/* Decorative divider */
.hero-rule {
    display: flex;
    align-items: center;
    gap: 1rem;
    width: 100%;
    max-width: 480px;
    margin-bottom: 1.6rem;
}

.hero-rule-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(255,255,255,0.3), transparent);
}

/* Tagline wrapper — fixed height so layout doesn't jump */
.hero-tagline-wrapper {
    position: relative;
    width: 100%;
    min-height: 3rem;
    margin-bottom: 2.8rem;
}

.hero-text-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transform: translateY(14px);
    transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-text-slide.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    position: relative;
}

.hero-tagline {
    font-size: clamp(1.05rem, 2.5vw, 1.3rem);
    font-weight: 400;
    color: rgba(255,255,255,0.85);
    letter-spacing: 0.02em;
    line-height: 1.5;
    margin: 0;
}

/* Hide old per-slide h1/p — company headline uses .hero-company-headline instead */
.hero-text-slide h1 { display: none; }
.hero-text-slide > p:not(.hero-tagline) { display: none; }

.hero-btns-revamp {
    display: flex;
    gap: 1.25rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Updated Dots for premium feel */
.slider-dots-revamp {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    justify-content: center;
}

.dot {
    width: 50px;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.4s ease;
    overflow: hidden;
    position: relative;
}

.dot::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--accent-blue);
    transition: none;
}

.dot.active::after {
    left: 0;
    transition: left 5s linear;
}

.dot.active {
    background: rgba(255, 255, 255, 0.3);
}

@media (max-width: 900px) {
    .home-hero-revamp {
        padding-top: 70px;
        min-height: 600px;
    }
}

@media (max-width: 768px) {
    .hero-company-headline {
        font-size: clamp(1.6rem, 8vw, 2.5rem);
        letter-spacing: -0.01em;
    }

    .hero-welcome-line {
        font-size: 0.9rem;
        letter-spacing: 0.18em;
    }

    .hero-trust-badge {
        font-size: 0.65rem;
        padding: 0.45rem 1.1rem;
    }

    .hero-tagline {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .hero-btns-revamp {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
    }

    .hero-tagline-wrapper {
        min-height: 3.5rem;
        margin-bottom: 2rem;
    }

    /* ── Logo: smaller on tablets/large phones ── */
    .hero-logo-display {
        width:  min(280px, 72vw);
        height: min(200px, 52vw);
        margin: 0.2rem 0 0.8rem;
    }
}

@media (max-width: 480px) {
    /* ── Logo: compact on small phones ── */
    .hero-logo-display {
        width:  min(230px, 64vw);
        height: min(165px, 46vw);
        margin: 0.15rem 0 0.6rem;
    }
}

.dot.active {
    background: #fff;
    width: 70px;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
}

/* Ornaments Positioned for Center Layout */
.hero-ornament {
    position: absolute;
    z-index: 1;
    pointer-events: none;
    opacity: 0.25;
}

.ornament-1 {
    top: -5%;
    right: -5%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(196, 154, 60, 0.15) 0%, transparent 70%);
}

.ornament-2 {
    bottom: -10%;
    left: -5%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, var(--accent-20) 0%, transparent 70%);
}

@media (max-width: 1100px) {
    .home-hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 5rem;
    }

    .home-hero-left p {
        margin: 0 auto 3.5rem;
    }

    .hero-btns-revamp {
        justify-content: center;
    }

    .hero-portrait-frame {
        margin: 0 auto;
        height: 500px;
    }
}

.hero-btns {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease-out;
    transition-delay: 0.9s;
}

.slide.active .hero-btns {
    opacity: 1;
    transform: translateY(0);
}

/* Indicators - Removed redundant styles that conflict with slider-dots-revamp */

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero {
        height: 80vh;
    }
}

/* Infinite Marquee Reviews */
.reviews-section {
    padding: 6rem 0;
    background: #faf9f6;
    /* Keep light background */
    overflow: hidden;
    position: relative;
}

.reviews-header {
    text-align: center;
    margin-bottom: 4rem;
    padding: 0 1rem;
}

.reviews-header h2 {
    font-size: 2.5rem;
    color: var(--heading-color);
    margin-bottom: 0.5rem;
}

.reviews-header span {
    color: var(--accent-gold);
    /* Using site accent */
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 0.5rem;
}

.marquee-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 2rem 0;
    /* Masking for fade effect on edges */
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.marquee-track {
    display: flex;
    width: max-content;
    gap: 2rem;
    animation: marquee-scroll 60s linear infinite;
    /* Slow smooth scroll */
}

/* Pause on hover for readability */
.marquee-track:hover {
    animation-play-state: paused;
}

.review-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    /* Subtle shadow per image */
    width: 350px;
    /* Fixed width for consistency */
    flex-shrink: 0;
    border: 1px solid rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.review-stars {
    color: #fbbf24;
    /* Golden yellow star color */
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.review-text {
    font-style: italic;
    color: #475569;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 45px;
    height: 45px;
    background: rgba(196, 154, 60, 0.15);
    /* Warm gold placeholder */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--heading-color);
    font-size: 1rem;
}

/* Differentiate avatar colors slightly for variety if desired, or keep consistent */
.review-card:nth-child(3n+1) .author-avatar {
    background: #fee2e2;
    color: #991b1b;
}

/* Red tint */
.review-card:nth-child(3n+2) .author-avatar {
    background: rgba(196, 154, 60, 0.12);
    color: var(--accent-dark);
}

/* Blue tint */
.review-card:nth-child(3n+3) .author-avatar {
    background: rgba(196, 154, 60, 0.18);
    color: #1c2b4a;
}

/* Green tint */

.author-info h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 0.1rem;
}

.author-info span {
    font-size: 0.8rem;
    color: #94a3b8;
}

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

    100% {
        transform: translateX(-50%);
    }

    /* Move left by 50% of track width. 
       Track must contain 2 sets of items: Original + Duplicate. 
       When it reaches -50%, it snaps back to 0 seamlessly. */
}

/* Scroll Reveal Animations */
.reveal-on-scroll,
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s cubic-bezier(0.5, 0, 0, 1);
    will-change: opacity, transform;
}

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

/* Staggered children animation */
.reveal-stagger>* {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal-stagger.visible>* {
    opacity: 1;
    transform: translateY(0);
}

.reveal-stagger.visible>*:nth-child(1) {
    transition-delay: 0.1s;
}

.reveal-stagger.visible>*:nth-child(2) {
    transition-delay: 0.2s;
}

.reveal-stagger.visible>*:nth-child(3) {
    transition-delay: 0.3s;
}

.reveal-stagger.visible>*:nth-child(4) {
    transition-delay: 0.4s;
}

.reveal-stagger.visible>*:nth-child(5) {
    transition-delay: 0.5s;
}

.reveal-stagger.visible>*:nth-child(6) {
    transition-delay: 0.6s;
}

/* Process Redesign */
.our-process {
    padding: 8rem 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.process-header {
    text-align: center;
    margin-bottom: 5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

/* Connecting Line */
.process-grid::before {
    content: '';
    position: absolute;
    top: 40px;
    /* Align with top of number/icon */
    left: 12%;
    right: 12%;
    height: 2px;
    background-image: linear-gradient(to right, transparent 50%, rgba(196, 154, 60, 0.3) 50%);
    background-size: 20px 100%;
    z-index: 0;
    opacity: 0.6;
}

.process-card {
    background: transparent;
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid transparent;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* Hover Effect: Card Glow */
.process-card:hover {
    background: #ffffff;
    border-color: rgba(196, 154, 60, 0.10);
    box-shadow: 0 20px 40px -10px rgba(15, 23, 42, 0.05);
    transform: translateY(-10px);
}

/* Step Number Styling */
.step-number-container {
    margin-bottom: 2rem;
    position: relative;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: transparent;
    -webkit-text-stroke: 1px rgba(196, 154, 60, 0.45);
    /* Outline text */
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
    font-family: 'Outfit', sans-serif;
}

.step-bg-fill {
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(196, 154, 60, 0.08);
    border-radius: 50%;
    z-index: 1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.4s ease;
}

/* Hover Effect: Number Fill */
.process-card:hover .step-number {
    -webkit-text-stroke: 0px;
    color: var(--white);
}

.process-card:hover .step-bg-fill {
    background: var(--accent-blue);
    transform: translate(-50%, -50%) scale(1.3);
    box-shadow: 0 10px 20px rgba(196, 154, 60, 0.30);
}

/* Typography */
.process-card h3 {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--heading-color);
}

.process-card p {
    color: #64748b;
    font-size: 1rem;
    line-height: 1.6;
}

/* Sequential Reveal Animation Delay */
.process-card:nth-child(1) {
    transition-delay: 0s;
}

.process-card:nth-child(2) {
    transition-delay: 0.1s;
}

.process-card:nth-child(3) {
    transition-delay: 0.2s;
}

.process-card:nth-child(4) {
    transition-delay: 0.3s;
}

/* Responsive */
@media (max-width: 1024px) {
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-grid::before {
        display: none;
        /* Hide line on tablet */
    }
}

@media (max-width: 600px) {
    .process-grid {
        grid-template-columns: 1fr;
    }
}

/* Enhanced Visibility Background Elements */
.service-bg-element {
    opacity: 0.08;
    /* Increased from 0.03 */
    color: var(--accent-blue);
    /* Ensure it uses the visible blue */
}

/* Additional floated elements positions */
.s-bg-5 {
    top: 5%;
    left: 40%;
    width: 50px;
    height: 50px;
    animation-duration: 20s;
    animation-delay: -5s;
}

.s-bg-6 {
    bottom: 8%;
    left: 35%;
    width: 70px;
    height: 70px;
    animation-duration: 28s;
    animation-delay: -2s;
}

.s-bg-7 {
    top: 20%;
    right: 5%;
    width: 90px;
    height: 90px;
    animation-duration: 24s;
    transform: rotate(-15deg);
}

.s-bg-8 {
    bottom: 40%;
    left: -2%;
    width: 120px;
    height: 120px;
    animation-duration: 35s;
    opacity: 0.05;
}

.s-bg-9 {
    top: 50%;
    right: 40%;
    width: 40px;
    height: 40px;
    animation-duration: 15s;
}

.s-bg-10 {
    bottom: 5%;
    right: 25%;
    width: 60px;
    height: 60px;
    animation-duration: 22s;
    animation-delay: -8s;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .service-bg-element {
        opacity: 0.05;
    }

    /* Slightly less on mobile to prevent clutter */
}

/* Process Redesign V2 */
.our-process {
    background: #faf8f5;
    padding: 6rem 0;
    min-height: 100vh;
    /* Task 2: Full screen */
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

/* Background Decorative Elements */
.process-bg-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 0;
    opacity: 0.6;
}

.p-blob-1 {
    top: -10%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: rgba(196, 154, 60, 0.10);
}

.p-blob-2 {
    bottom: -10%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: rgba(197, 160, 89, 0.08);
}

.process-header {
    margin-bottom: 6rem;
    position: relative;
    z-index: 2;
}

/* Timeline Layout */
.process-timeline {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    z-index: 2;
}

/* Central Line (Desktop) */
.timeline-line {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(196, 154, 60, 0.25);
    transform: translateY(-50%);
    z-index: 1;
    border-radius: 4px;
}

.timeline-progress {
    position: absolute;
    top: 50%;
    left: 0;
    width: 0%;
    /* Animate this maybe? Fixed for now */
    height: 4px;
    background: var(--accent-blue);
    transform: translateY(-50%);
    z-index: 1;
    border-radius: 4px;
    background: linear-gradient(90deg, var(--accent-blue), var(--accent-gold));
    width: 100%;
    /* Full line for now */
    opacity: 0.3;
}

.process-steps-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.process-step-item {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 24px;
    box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.05);
    /* Premium soft shadow */
    border: 1px solid rgba(255, 255, 255, 0.8);
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    top: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Alternating Up/Down for visual interest - Enhanced to survive reveal animation */
.process-step-item:nth-child(odd) {
    transform: translateY(-30px);
}

.process-step-item:nth-child(even) {
    transform: translateY(30px);
}

.process-steps-container.visible .process-step-item:nth-child(odd) {
    transform: translateY(-30px);
}

.process-steps-container.visible .process-step-item:nth-child(even) {
    transform: translateY(30px);
}

.process-step-item:hover {
    transform: translateY(-45px) scale(1.02);
    /* Pop up more on hover */
    box-shadow: 0 20px 40px -5px rgba(196, 154, 60, 0.15);
    z-index: 10;
}

.process-step-item:nth-child(even):hover {
    transform: translateY(15px) scale(1.02);
}

.step-badge {
    width: 50px;
    height: 50px;
    background: var(--accent-blue);
    color: var(--white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 16px -4px rgba(196, 154, 60, 0.40);
    position: relative;
    z-index: 2;
}

/* Connector Dot to Line */
.process-step-item .step-dot {
    position: absolute;
    width: 20px;
    height: 20px;
    background: var(--white);
    border: 4px solid var(--accent-gold);
    border-radius: 50%;
    z-index: 3;
    left: 50%;
    transform: translateX(-50%);
}

.process-step-item:nth-child(odd) .step-dot {
    bottom: -52px;
}

.process-step-item:nth-child(even) .step-dot {
    top: -52px;
}

/* Dashed Line to connector */
.step-connector {
    position: absolute;
    width: 2px;
    height: 30px;
    border-left: 2px dashed rgba(196, 154, 60, 0.4);
    left: 50%;
    transform: translateX(-50%);
    z-index: 0;
}

.process-step-item:nth-child(odd) .step-connector {
    bottom: -32px;
}

.process-step-item:nth-child(even) .step-connector {
    top: -32px;
}

.process-step-item h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--heading-color);
}

.process-step-item p {
    font-size: 0.95rem;
    color: #64748b;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.step-outcome {
    margin-top: auto;
    background: rgba(196, 154, 60, 0.10);
    /* Light green for "Success" feeling */
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--accent-blue);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .process-steps-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .timeline-line,
    .timeline-progress {
        display: none;
    }

    .process-step-item:nth-child(odd),
    .process-step-item:nth-child(even),
    .process-steps-container.visible .process-step-item:nth-child(odd),
    .process-steps-container.visible .process-step-item:nth-child(even) {
        transform: none;
    }

    .process-step-item:hover {
        transform: translateY(-6px);
    }

    .process-step-item .step-dot,
    .step-connector {
        display: none;
    }

    .process-step-item {
        padding: 1.75rem 1.25rem;
    }
}

@media (max-width: 600px) {
    .process-steps-container {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

/* Full Screen Height Utilities for Other Sections */
.full-screen-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 6rem 0;
    /* Add padding to prevent cut-off on small screens */
}

/* --- Task 1: Rotating Globe Background --- */
.process-globe-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    z-index: 0;
    pointer-events: none;
    opacity: 0.15;
    /* Subtle background presence */
}

.wireframe-globe {
    width: 100%;
    height: 100%;
    animation: rotate-globe 60s linear infinite;
    transform-origin: center center;
}

@keyframes rotate-globe {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* --- Task 2: Process Cards Hover Effects --- */
.process-step-item {
    background: #ffffff !important;
    /* Ensure white background default */
    border: 1px solid #e8e3d8;
    /* Subtle border initially */
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    /* Very subtle shadow initially */
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.process-step-item:hover {
    transform: translateY(-10px) scale(1.02);
    /* Light bluish glowing drop shadow and border */
    box-shadow: 0 0 25px rgba(196, 154, 60, 0.30), 0 10px 40px rgba(196, 154, 60, 0.10);
    border-color: rgba(196, 154, 60, 0.40);
}


/* --- Task 3: Infinite Scrolling Ticker Bar --- */
.service-ticker-bar {
    background: #ffffff;
    /* Or a very light grey/blue if preferred, image looks white/light */
    border-bottom: 1px solid #e0d9cc;
    padding: 1rem 0;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    z-index: 10;
}

.ticker-track {
    display: inline-flex;
    animation: ticker-scroll 35s linear infinite;
    min-width: 100%;
    gap: 4rem;
    padding-left: 4rem;
    /* Initial offset */
}

.ticker-item {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    color: var(--heading-color);
    font-size: 1rem;
}

.ticker-item i,
.ticker-item svg {
    color: var(--accent-blue);
    font-size: 1.2rem;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.ticker-item .ti-blue  { color: var(--accent-dark); }
.ticker-item .ti-gold  { color: var(--accent-blue); }
.ticker-item .ti-green { color: var(--accent-dark); }
.ticker-item .ti-purple { color: var(--accent-dark); }

.ticker-item span.highlight {
    color: #475569;
}

/* Service-specific colored icons if needed */
.ti-blue {
    color: var(--accent-dark);
}

.ti-gold {
    color: var(--accent-blue);
}

.ti-green {
    color: var(--accent-dark);
}

.ti-purple {
    color: var(--accent-dark);
}

@keyframes ticker-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .process-globe-wrapper {
        width: 300px;
        height: 300px;
    }
}

/* Services Grid Redesign (2x2) */
@media (min-width: 900px) {
    .services-section-enhanced .grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 3rem !important;
        max-width: 900px;
        /* Constrain width for a nice 4-card block look */
        margin-left: auto;
        margin-right: auto;
    }
}

/* Hero Animation Fix: Immediate Start */
@keyframes zoomEffect {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.15);
    }
}

.slide-bg {
    /* Use keyframe animation instead of transition for reliable auto-start */
    /* Only play when active, but since active is on load, it should start */
    transform: scale(1);
    transition: none !important;
    /* Disable transition to avoid delay conflicts */
}

.slide.active .slide-bg {
    animation: zoomEffect 6s linear forwards;
    /* 6s duration, matching previous */
}

/* Ensure the first slide is active immediately in HTML (it is) */
/* This CSS change ensures it doesn't wait for a transition event but starts the keyframe immediately upon class presence */
/* Task 1: Compact Reviews & Sticky Footer Effect */

/* Make Review Section Shorter (Compact) */
.reviews-section {
    padding: 3rem 0;
    /* Reduced padding from 6rem */
    min-height: auto !important;
    /* Override full-screen constraint if present */
    height: auto;
    background: #faf9f6;
    position: relative;
    z-index: 10;
    margin-bottom: 0;
    /* Removed spacer for footer reveal */
}

/* Adjust review card size for compactness */
.review-card {
    padding: 1.5rem;
    width: 300px;
    /* Slightly smaller width */
}

.review-text {
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

/* Footer Reveal Effect */
footer {
    position: relative;
    width: 100%;
    z-index: 10;
    background: #0f172a;
    padding: 6rem 0;
    overflow: hidden;
}

/* Cleaned up duplicate footer styles */
.footer-display-title-alt {
    display: none;
}


.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4rem;
    position: relative;
    z-index: 2;
}

@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .footer-display-title {
        font-size: 18vw;
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-display-title {
        display: none;
        /* Too big for tiny mobile */
    }
}

/* Add Globe to Footer Background - White/Transparent */
.footer-globe-wrapper {
    position: absolute;
    top: 50%;
    left: 85%;
    /* Position to the right */
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    z-index: 0;
    opacity: 0.12;
    /* Increased visibility */
    pointer-events: none;
}

.footer-shape-left {
    position: absolute;
    top: 30%;
    left: 10%;
    width: 600px;
    height: 600px;
    z-index: 0;
    opacity: 0.08;
    pointer-events: none;
    transform: rotate(-15deg);
}

.footer-globe-svg {
    width: 100%;
    height: 100%;
    animation: rotate-globe 60s linear infinite;
}

/* Task 3: Mobile Hero Buttons Side-by-Side */
@media (max-width: 768px) {
    .hero-buttons {
        flex-direction: row !important;
        /* Force row on mobile */
        justify-content: center;
        width: 100%;
        gap: 0.75rem;
        /* Reduce gap to fit */
    }

    .btn {
        padding: 0.75rem 1.25rem;
        /* Compact padding */
        font-size: 0.9rem;
        flex: 1;
        /* Equal width */
        min-width: 0;
        /* Prevent overflow */
        white-space: nowrap;
    }

    /* Footer reveal adjustment for mobile (Disabled to ensure full scroll) */
    .reviews-section {
        margin-bottom: 0;
    }

    footer {
        height: auto;
        position: relative;
        z-index: 10;
        padding-bottom: 8rem;
        /* Extra padding for mobile bottom nav */
    }
}

/* --- Bottom App-Style Navbar (Always Visible) --- */
/* ── Mobile Bottom Navigation ── */
.mobile-bottom-nav {
    position: fixed;
    bottom: 2rem;
    left: 0;
    right: 0;
    z-index: 10000;
    width: 100%;
    display: flex;
    justify-content: center;
    pointer-events: none;
    will-change: transform;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.35s ease;
}

.mobile-bottom-nav.hide-bottom-nav {
    transform: translateY(150px);
    opacity: 0;
}

.mobile-nav-pill-container {
    width: 100%;
    max-width: 420px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 0 1.5rem;
    pointer-events: auto;
    position: relative;
}

/* Floating Action Buttons */
.mobile-nav-fab {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
    transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.2s ease;
    text-decoration: none;
    border: none;
    cursor: pointer;
    flex-shrink: 0;
}

.mobile-nav-fab:active { transform: scale(0.93); }

.mobile-nav-fab svg {
    width: 28px;
    height: 28px;
    fill: #ffffff;
}

.fab-whatsapp { background: #25D366; }
.fab-phone    { background: var(--accent-dark); }

/* Language toggle FAB */
.fab-lang {
    background: linear-gradient(135deg, var(--accent-blue) 0%, var(--accent-dark) 100%);
    color: #fff;
}

.fab-lang svg {
    fill: none;
    stroke: #fff;
    width: 22px;
    height: 22px;
}

.fab-lang-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: #fff;
    line-height: 1;
}

/* ── FAB Contact Picker Popup ── */
#fab-contact-picker {
    position: fixed;
    z-index: 99999;
    background: #faf8f4;
    border-radius: 18px;
    box-shadow: 0 16px 48px rgba(0,0,0,0.28), 0 2px 8px rgba(0,0,0,0.12);
    padding: 0;
    min-width: 260px;
    overflow: hidden;
    pointer-events: none;
    opacity: 0;
    transform: translateY(12px) scale(0.94);
    transition: opacity 0.2s cubic-bezier(0.34,1.56,0.64,1), transform 0.2s cubic-bezier(0.34,1.56,0.64,1);
}

#fab-contact-picker.fab-picker-open {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

/* WhatsApp-style header */
.fab-picker-header {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.85rem 1rem 0.75rem;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #fff;
}

/* WA type = green header */
#fab-contact-picker.type-wa .fab-picker-header {
    background: #075e54;
}
/* Phone type = dark blue header */
#fab-contact-picker.type-ph .fab-picker-header {
    background: #1a56a8;
}

.fab-picker-header-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

#fab-contact-picker.type-wa .fab-picker-header-icon { background: #25D366; }
#fab-contact-picker.type-ph .fab-picker-header-icon { background: var(--accent-dark); }

.fab-picker-body {
    background: #fff;
    margin: 0 0 0 0;
}

.fab-picker-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.9rem 1rem;
    text-decoration: none;
    color: #111b21;
    border-bottom: 1px solid rgba(196, 154, 60, 0.12);
    transition: background 0.12s ease;
    position: relative;
}

.fab-picker-row:last-child { border-bottom: none; }

#fab-contact-picker.type-wa .fab-picker-row:hover { background: rgba(196, 154, 60, 0.10); }
#fab-contact-picker.type-ph .fab-picker-row:hover { background: var(--accent-10); }

.fab-picker-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.95rem;
    color: #fff;
    flex-shrink: 0;
    font-family: 'Inter', sans-serif;
}

#fab-contact-picker.type-wa .fab-picker-avatar { background: #25D366; }
#fab-contact-picker.type-ph .fab-picker-avatar { background: var(--accent-dark); }

.fab-picker-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.fab-picker-name {
    font-weight: 600;
    font-size: 0.92rem;
    color: #111b21;
    white-space: nowrap;
}

.fab-picker-num {
    font-size: 0.8rem;
    font-weight: 500;
    white-space: nowrap;
}

#fab-contact-picker.type-wa .fab-picker-num { color: #25D366; }
#fab-contact-picker.type-ph .fab-picker-num { color: var(--accent-blue); }

.fab-picker-arrow {
    color: #8696a0;
    flex-shrink: 0;
}

/* Wrapper anchors the slide-up panel */
.lang-fab-wrap {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Language panel — slides up */
.mobile-lang-panel {
    position: absolute;
    bottom: calc(100% + 0.65rem);
    left: 50%;
    transform: translateX(-50%) translateY(0.5rem);
    background: #ffffff;
    border-radius: 100px;
    padding: 0.35rem;
    display: flex;
    align-items: center;
    gap: 0.2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.14), 0 2px 8px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.04);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
    white-space: nowrap;
    z-index: 1;
}

.mobile-lang-panel::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid #fff;
}

.mobile-lang-panel.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

/* Language option buttons */
.lang-option {
    padding: 0.5rem 0.9rem;
    border-radius: 100px;
    border: none;
    background: transparent;
    font-family: 'Inter', sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    color: #1e293b;
    cursor: pointer;
    transition: background 0.15s ease, color 0.15s ease;
    white-space: nowrap;
}

.lang-option.active {
    background: var(--accent-blue);
    color: #ffffff;
    box-shadow: 0 4px 12px var(--accent-25);
}

.lang-option:not(.active):hover { background: rgba(196, 154, 60, 0.10); }

@media (max-width: 850px) {
    .footer-display-title { display: none; }
}

@media (max-width: 480px) {
    .mobile-bottom-nav { bottom: 1.25rem; }
    .mobile-nav-fab { width: 52px; height: 52px; }
    .mobile-nav-fab svg { width: 24px; height: 24px; }
    .fab-lang svg { width: 20px; height: 20px; }
    .lang-option { padding: 0.45rem 0.7rem; font-size: 0.75rem; }
}

/* ── Desktop: spread FABs — WA left · Lang centre · Call right ── */
@media (min-width: 769px) {
    .mobile-bottom-nav {
        pointer-events: none; /* wrapper stays transparent */
    }

    .mobile-nav-pill-container {
        max-width: none;
        width: 100%;
        padding: 0 2.5rem;
        justify-content: space-between;
        pointer-events: none;
    }

    /* Each FAB / wrap gets pointer-events back */
    .mobile-nav-pill-container > * {
        pointer-events: auto;
    }

    /* Language panel still slides up from centre */
    .lang-fab-wrap { order: 2; }
    .fab-whatsapp  { order: 1; }
    .fab-phone     { order: 3; }
}

/* ===================================
   SCROLL INTERACTIVITY ANIMATIONS
   =================================== */

/* Scroll Interactivity utility classes moved and consolidated above */

/* ===================================
   MOBILE SPACING — GLOBAL UNIFORMITY
   =================================== */

@media (max-width: 768px) {
    /* All major sections get equal vertical breathing room */
    .our-process,
    .faq-section,
    .why-choose-us,
    .services-section,
    .stats-section,
    .testimonials-section,
    .cta-section,
    .advisory-detail-section,
    .advisory-overview,
    .advisory-cta {
        padding-top: 3.5rem !important;
        padding-bottom: 3.5rem !important;
    }

    /* Section headers */
    .process-header,
    .section-header,
    .overview-header {
        margin-bottom: 2rem;
    }

    .process-header h2,
    .section-header h2,
    .overview-header h2 {
        font-size: clamp(1.75rem, 7vw, 2.5rem);
    }

    /* Service cards equal grid */
    .services-grid,
    .process-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    .service-card,
    .process-card {
        padding: 1.5rem 1rem;
    }

    /* Why choose stats — 2×2 grid on mobile */
    .why-choose-stats {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
        max-width: 100%;
    }

    .stat-circle-card .stat-desc {
        font-size: 0.78rem;
    }

    .progress-ring {
        width: 100px;
        height: 100px;
    }

    .stat-value {
        font-size: 1.25rem;
    }

    /* FAQ */
    .faq-container {
        gap: 0.75rem;
    }
}

@media (max-width: 480px) {
    .services-grid,
    .process-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    /* Keep why-choose-stats as 2×2 even on very small screens */
    .why-choose-stats {
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem;
    }

    .progress-ring {
        width: 88px;
        height: 88px;
        margin-bottom: 1rem;
    }

    .stat-value { font-size: 1.1rem; }
    .stat-label { font-size: 0.9rem; }
    .stat-circle-card .stat-desc { font-size: 0.72rem; line-height: 1.5; }
}

/* ===================================
   PERFORMANCE
   =================================== */

/* Respect OS-level "reduce motion" preference */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* ===================================
   GLOBAL OVERFLOW / CENTERING SAFETY
   =================================== */

/* Prevent any element from causing horizontal scroll */
@media (max-width: 600px) {
    .container,
    .nav-container,
    section,
    footer,
    header {
        max-width: 100%;
    }

    /* Catch any element wider than viewport */
    * {
        min-width: 0;
    }
}

/* 1. Fade Up (Default for most text) */
.animate-fade-up {
    transform: translateY(30px);
}

/* 2. Fade Right (For images/side content) */
.animate-fade-right {
    transform: translateX(-30px);
}

/* 3. Fade Left */
.animate-fade-left {
    transform: translateX(30px);
}

/* 4. Scale Up (For cards/icons) */
.animate-scale-up {
    transform: scale(0.9);
}

/* 5. Staggered Delay Utilities */
.delay-100 {
    transition-delay: 0.1s;
}

.delay-200 {
    transition-delay: 0.2s;
}

.delay-300 {
    transition-delay: 0.3s;
}

.delay-400 {
    transition-delay: 0.4s;
}

/* Bar Chart Grow Animation Helper */
.bar-col {
    transition: height 1.5s cubic-bezier(0.22, 1, 0.36, 1);
    height: 0;
}