﻿/* ============================================================
   FINEX FINANCE SOLUTIONS — Main Stylesheet
   finexfinancesolutions.com
   Palette: Deep Navy / Secondary Blue / Bright Action Blue / White
   No gold. No yellow. Blue and white only.
   ============================================================ */


/* ============================================================
   1. CSS CUSTOM PROPERTIES
   ============================================================ */
:root {
    /* Blue Brand Palette */
    --navy:              #155E9E;   /* secondary / interactive blue */
    --navy-dark:         #0B2A4A;   /* primary deep navy */
    --navy-deeper:       #071E36;   /* footer / darkest background */
    --blue-action:       #2563EB;   /* bright CTA blue — buttons, links, highlights */
    --blue-action-hover: #1D4ED8;   /* CTA hover state */
    --blue-tint:         #DBEAFE;   /* light blue tint for backgrounds */
    --blue-accent:       #93C5FD;   /* light blue for on-dark text/icons */

    /* Neutral */
    --white:             #ffffff;
    --off-white:         #F5F7FA;
    --light-bg:          #EAF4FF;
    --border:            #D0DBEA;
    --border-light:      #E5EEF8;

    /* Text */
    --text-dark:         #1E293B;
    --text-body:         #3D5068;
    --text-light:        #6B7E97;

    /* Shadows */
    --shadow-sm:    0 1px 3px rgba(11,42,74,0.08);
    --shadow-md:    0 4px 16px rgba(11,42,74,0.10);
    --shadow-lg:    0 8px 32px rgba(11,42,74,0.14);
    --shadow-xl:    0 16px 48px rgba(11,42,74,0.18);

    /* Typography */
    --font-head:    'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-body:    'Inter',   -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* Spacing */
    --section-pad: 80px;
    --container:   1200px;
    --gutter:      24px;

    /* Radius */
    --radius-sm:   6px;
    --radius-md:   12px;
    --radius-lg:   20px;
    --radius-xl:   28px;
    --radius-full: 999px;

    /* Transitions */
    --transition:    0.25s ease;
    --transition-md: 0.35s ease;
}


/* ============================================================
   2. RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.65;
    color: var(--text-body);
    background: var(--white);
    overflow-x: hidden;
}

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

a {
    color: var(--navy);
    text-decoration: none;
    transition: color var(--transition);
}
a:hover { color: var(--navy-dark); }

ul, ol { list-style: none; }
button { font-family: var(--font-body); cursor: pointer; border: none; background: none; }
address { font-style: normal; }
input, textarea, select { font-family: var(--font-body); font-size: 1rem; }

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-head);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-dark);
}
h1 { font-size: clamp(2rem,   5vw,   3.2rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.1rem, 2vw,   1.35rem); }
h4 { font-size: 1.1rem; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }


/* ============================================================
   3. LAYOUT UTILITIES
   ============================================================ */
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--gutter);
}

.section-pad    { padding: var(--section-pad) 0; }
.section-pad-sm { padding: 48px 0; }

.section-bg-light { background: var(--light-bg); }
.bg-navy          { background: var(--navy-dark); }
.bg-navy-gradient { background: linear-gradient(135deg, var(--navy-deeper) 0%, var(--navy-dark) 100%); }

.centered    { text-align: center; }
.white-text  { color: var(--white); }
.white-text h2, .white-text p { color: var(--white); }

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 24px;
}

/* Section header */
.section-header  { margin-bottom: 56px; }
.section-header h2 { margin-bottom: 16px; }
.section-lead {
    font-size: 1.05rem;
    color: var(--text-light);
    max-width: 680px;
    margin: 0 auto;
}

/* Section label badge */
.section-label {
    display: inline-block;
    font-family: var(--font-head);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--navy);
    background: rgba(21,94,158,0.07);
    border: 1px solid rgba(21,94,158,0.2);
    border-radius: var(--radius-full);
    padding: 5px 14px;
    margin-bottom: 16px;
}
.section-label.light {
    color: var(--blue-accent);
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.2);
}

.section-cta { margin-top: 48px; }


/* ============================================================
   4. BUTTONS
   ============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-head);
    font-size: 0.92rem;
    font-weight: 600;
    line-height: 1;
    padding: 13px 26px;
    border-radius: var(--radius-sm);
    border: 2px solid transparent;
    cursor: pointer;
    text-decoration: none;
    transition: all var(--transition);
    white-space: nowrap;
}
.btn-lg { font-size: 1rem; padding: 15px 32px; }
.btn-full-width { width: 100%; justify-content: center; }

/* Primary bright blue CTA (was btn-gold) */
.btn-gold,
.btn-primary {
    background: var(--blue-action);
    color: var(--white);
    border-color: var(--blue-action);
}
.btn-gold:hover,
.btn-primary:hover {
    background: var(--blue-action-hover);
    border-color: var(--blue-action-hover);
    color: var(--white);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(37,99,235,0.3);
}

/* Deep navy solid button */
.btn-navy {
    background: var(--navy-dark);
    color: var(--white);
    border-color: var(--navy-dark);
}
.btn-navy:hover {
    background: var(--navy-deeper);
    border-color: var(--navy-deeper);
    color: var(--white);
    transform: translateY(-1px);
    box-shadow: var(--shadow-lg);
}

/* Outline white (on dark bg) */
.btn-outline-white {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.55);
}
.btn-outline-white:hover {
    background: rgba(255,255,255,0.12);
    border-color: var(--white);
    color: var(--white);
}

/* Outline navy (on light bg) */
.btn-outline-navy {
    background: transparent;
    color: var(--navy-dark);
    border-color: var(--navy-dark);
}
.btn-outline-navy:hover {
    background: var(--navy-dark);
    color: var(--white);
}

/* Outline blue */
.btn-outline-blue {
    background: transparent;
    color: var(--blue-action);
    border-color: var(--blue-action);
}
.btn-outline-blue:hover {
    background: var(--blue-action);
    color: var(--white);
}


/* ============================================================
   5. HEADER
   ============================================================ */
.header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;        /* always above the nav overlay (z-950) */
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-light);
    transition: box-shadow var(--transition);
}
.header.scrolled { box-shadow: var(--shadow-md); }

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    gap: 24px;
}

.logo-img { height: 48px; width: auto; display: block; }

/* Nav */
.header-nav { flex: 1; }
.nav-list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}
.nav-link {
    font-family: var(--font-head);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-dark);
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
    display: flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
}
.nav-link:hover,
.nav-link.active {
    color: var(--navy-dark);
    background: rgba(21,94,158,0.07);
}
.nav-arrow { font-size: 0.65rem; transition: transform var(--transition); }

/* Dropdown */
.has-dropdown { position: relative; }
.dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    min-width: 270px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-xl);
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all var(--transition);
    z-index: 100;
}
.has-dropdown:hover .dropdown-menu,
.has-dropdown:focus-within .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.has-dropdown:hover .nav-arrow { transform: rotate(180deg); }

.dropdown-menu li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text-body);
    border-radius: var(--radius-sm);
    transition: all var(--transition);
}
.dropdown-menu li a i { width: 18px; color: var(--navy); font-size: 0.82rem; }
.dropdown-menu li a:hover { background: var(--light-bg); color: var(--navy-dark); }

.header-cta { flex-shrink: 0; }

/* ── Premium circle hamburger toggle ── */
.mobile-toggle {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    width: 46px;
    height: 46px;
    padding: 0;
    border-radius: 50%;                    /* circle shape */
    background: linear-gradient(145deg, var(--navy-dark) 0%, var(--navy) 100%);
    border: none;
    box-shadow: 0 3px 14px rgba(11,42,74,0.30);
    cursor: pointer;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
    -webkit-tap-highlight-color: transparent;
    transition:
        background    0.35s ease,
        box-shadow    0.35s ease,
        transform     0.15s ease;
}

/* Ripple layer on press */
.mobile-toggle::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: rgba(255,255,255,0);
    transition: background 0.2s ease;
    pointer-events: none;
}
.mobile-toggle:active            { transform: scale(0.90); }
.mobile-toggle:active::after     { background: rgba(255,255,255,0.15); }

/* Hover — brighter */
.mobile-toggle:hover {
    box-shadow: 0 4px 20px rgba(11,42,74,0.42);
    background: linear-gradient(145deg, #0d3358 0%, var(--navy) 100%);
}
.mobile-toggle:focus-visible     { outline: 2px solid var(--blue-action); outline-offset: 3px; }

/* The three bars — white on the dark circle */
.toggle-bar {
    display: block;
    width: 20px;
    height: 2px;
    background: rgba(255,255,255,0.95);
    border-radius: 10px;
    position: relative;
    z-index: 1;
    transform-origin: center center;
    /* spring-style bounce on the X animation */
    transition:
        transform  0.40s cubic-bezier(0.175, 0.885, 0.32, 1.275),
        opacity    0.22s ease,
        width      0.22s ease;
}

/* Middle bar slightly shorter — gives a premium staggered look */
.toggle-bar:nth-child(2) { width: 14px; }

/* ── Open state: blue gradient + animated X ── */
.mobile-toggle.is-open {
    background: linear-gradient(145deg, var(--blue-action) 0%, #1a4fd8 100%);
    box-shadow: 0 4px 18px rgba(37,99,235,0.42);
}
/* Expand middle bar to full width before it fades — cleaner X */
.mobile-toggle.is-open .toggle-bar:nth-child(2) { width: 20px; }

.mobile-toggle.is-open .toggle-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-toggle.is-open .toggle-bar:nth-child(2) { opacity: 0; transform: scaleX(0); }
.mobile-toggle.is-open .toggle-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile overlay (kept for click-outside close) */
.mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: transparent; /* nav IS the full-screen bg */
    z-index: 940;
    cursor: pointer;
}
.mobile-overlay.is-visible { display: block; }


/* ============================================================
   6. HERO
   ============================================================ */
.hero {
    position: relative;
    background: linear-gradient(135deg, var(--navy-deeper) 0%, var(--navy-dark) 45%, #0F3D7A 100%);
    padding-top: calc(72px + 80px);
    padding-bottom: 80px;
    overflow: hidden;
    min-height: 680px;
    display: flex;
    align-items: center;
}

/* Decorative shapes */
.hero-bg-shapes { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.shape { position: absolute; border-radius: 50%; background: rgba(255,255,255,0.04); }
.shape-1 { width: 560px; height: 560px; top: -120px; right: -80px; }
.shape-2 { width: 320px; height: 320px; bottom: -60px; left: 28%; background: rgba(37,99,235,0.08); }
.shape-3 { width: 200px; height: 200px; top: 50%; right: 22%; transform: translateY(-50%); background: rgba(255,255,255,0.03); }

.hero-inner {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 0.8rem;
    font-weight: 500;
    color: rgba(255,255,255,0.85);
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.22);
    padding: 6px 14px;
    border-radius: var(--radius-full);
    margin-bottom: 20px;
    width: fit-content;
}
.hero-badge i { font-size: 0.75rem; color: var(--blue-accent); }

.hero-title {
    font-size: clamp(2.2rem, 5.5vw, 3.6rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.12;
    margin-bottom: 24px;
    max-width: 780px;
}
.title-highlight {
    color: var(--blue-accent);
    display: block;
    min-height: 1.2em; /* prevents layout jump while text is empty between phrases */
}

.hero-copy {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.82);
    max-width: 600px;
    margin-bottom: 36px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.hero-tagline {
    font-family: var(--font-head);
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(255,255,255,0.45);
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

/* Hero pillars */
.hero-pillars { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-pillar {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: var(--radius-md);
    padding: 14px 20px;
    color: var(--white);
    font-size: 0.88rem;
    font-weight: 500;
    transition: background var(--transition);
}
.hero-pillar:hover { background: rgba(37,99,235,0.2); border-color: rgba(37,99,235,0.4); }
.pillar-icon {
    width: 36px;
    height: 36px;
    background: rgba(37,99,235,0.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue-accent);
    font-size: 0.95rem;
    flex-shrink: 0;
}


/* ============================================================
   7. QUICK CONTACT BAR
   ============================================================ */
.quick-bar {
    background: var(--navy-dark);
    padding: 14px 0;
    position: relative;
    z-index: 10;
}
.quick-bar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}
.quick-bar-text {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.9);
    font-size: 0.9rem;
    font-weight: 500;
}
.quick-bar-text i { color: var(--blue-accent); font-size: 1rem; }
.quick-bar-contacts { display: flex; gap: 10px; flex-wrap: wrap; }
.quick-pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 0.83rem;
    font-weight: 500;
    color: rgba(255,255,255,0.85);
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.16);
    padding: 6px 12px;
    border-radius: var(--radius-full);
    transition: all var(--transition);
}
.quick-pill:hover {
    background: rgba(37,99,235,0.25);
    color: var(--white);
    border-color: rgba(37,99,235,0.5);
}
.quick-pill i { font-size: 0.75rem; color: var(--blue-accent); }
.quick-pill-email { display: none; }


/* ============================================================
   8. FEATURE CARDS (What We Do)
   ============================================================ */
.feature-card {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    transition: all var(--transition-md);
}
.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}
.feature-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--navy-dark), #0F3D7A);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.3rem;
    margin-bottom: 20px;
}
.feature-card h3 { margin-bottom: 10px; font-size: 1.1rem; }
.feature-card p { color: var(--text-light); font-size: 0.92rem; line-height: 1.6; margin: 0; }


/* ============================================================
   9. SERVICES SLIDER
   ============================================================ */
.services-section { position: relative; overflow: hidden; }

/* Slider outer wrapper */
.services-slider-wrap {
    position: relative;
    margin-top: 8px;
}

/* Overflow container */
.slider-overflow {
    overflow: hidden;
    border-radius: var(--radius-md);
}

/* Moving track */
.slider-track {
    display: flex;
    gap: 24px;
    transition: transform 0.55s cubic-bezier(0.25,0.46,0.45,0.94);
    will-change: transform;
}

/* Each slide = service card */
.slider-slide {
    flex: 0 0 calc(33.333% - 16px);
    min-width: 0;
}

/* Service card */
.service-card {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 32px 28px 28px;
    transition: all var(--transition-md);
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--navy-dark), var(--blue-action));
    transform: scaleX(0);
    transition: transform var(--transition-md);
    transform-origin: left;
}
.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}
.service-card:hover::before { transform: scaleX(1); }

.service-card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(21,94,158,0.08), rgba(21,94,158,0.04));
    border: 1px solid rgba(21,94,158,0.12);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
    font-size: 1.4rem;
    margin-bottom: 20px;
    transition: all var(--transition);
}
.service-card:hover .service-card-icon {
    background: linear-gradient(135deg, var(--navy-dark), #0F3D7A);
    color: var(--white);
    border-color: transparent;
}

.service-card h3 { margin-bottom: 12px; font-size: 1.1rem; }
.service-card p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.65;
    flex: 1;
    margin-bottom: 0;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--navy);
    margin-top: 18px;
    transition: gap var(--transition), color var(--transition);
}
.service-link:hover { gap: 10px; color: var(--blue-action); }

/* Slider navigation */
.slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 36px;
}
.slider-btn {
    width: 44px;
    height: 44px;
    border: 1.5px solid var(--border);
    border-radius: 50%;
    background: var(--white);
    color: var(--navy-dark);
    cursor: pointer;
    transition: all var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    box-shadow: var(--shadow-sm);
}
.slider-btn:hover {
    background: var(--navy-dark);
    color: var(--white);
    border-color: var(--navy-dark);
    box-shadow: var(--shadow-md);
}
.slider-btn:disabled {
    opacity: 0.35;
    cursor: not-allowed;
}

.slider-dots {
    display: flex;
    align-items: center;
    gap: 8px;
}
.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--border);
    cursor: pointer;
    transition: all var(--transition);
    border: none;
    padding: 0;
}
.slider-dot.is-active {
    background: var(--navy-dark);
    width: 26px;
    border-radius: 4px;
}


/* ============================================================
   10. WHY CHOOSE FINEX
   ============================================================ */
.why-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}
.why-content .section-label { margin-bottom: 12px; }
.why-content h2 { margin-bottom: 20px; }
.why-intro { color: var(--text-light); margin-bottom: 32px; font-size: 1rem; }

.why-list { display: flex; flex-direction: column; gap: 20px; margin-bottom: 36px; }
.why-list li { display: flex; gap: 14px; align-items: flex-start; }
.why-check {
    width: 26px; height: 26px;
    background: linear-gradient(135deg, var(--navy-dark), #0F3D7A);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    flex-shrink: 0;
    margin-top: 2px;
}
.why-text { display: flex; flex-direction: column; gap: 3px; }
.why-text strong { font-weight: 600; color: var(--text-dark); font-size: 0.95rem; }
.why-text span { font-size: 0.88rem; color: var(--text-light); }

.why-visual { display: flex; flex-direction: column; gap: 24px; }

.trust-card {
    background: linear-gradient(135deg, var(--navy-deeper) 0%, var(--navy-dark) 100%);
    color: var(--white);
    border-radius: var(--radius-xl);
    padding: 36px 32px;
    position: relative;
    overflow: hidden;
}
.trust-card::after {
    content: '';
    position: absolute;
    bottom: -40px; right: -40px;
    width: 180px; height: 180px;
    background: rgba(255,255,255,0.03);
    border-radius: 50%;
}
.trust-icon {
    width: 52px; height: 52px;
    background: rgba(255,255,255,0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue-accent);
    font-size: 1.3rem;
    margin-bottom: 20px;
}
.trust-card h3 { color: var(--white); font-size: 1.15rem; margin-bottom: 12px; }
.trust-card p { color: rgba(255,255,255,0.8); font-size: 0.9rem; line-height: 1.7; margin-bottom: 16px; }
.trust-tagline {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--blue-accent);
    font-style: italic;
}

/* Contact quick card */
.contact-quick-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 28px;
    box-shadow: var(--shadow-md);
}
.contact-quick-card h4 { font-size: 1rem; color: var(--navy-dark); margin-bottom: 6px; }
.contact-quick-card > p { font-size: 0.88rem; color: var(--text-light); margin-bottom: 18px; }

.quick-contact-list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 20px; }
.quick-contact-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    background: var(--off-white);
    border-radius: var(--radius-sm);
    transition: all var(--transition);
    text-decoration: none;
}
.quick-contact-row:hover {
    background: rgba(21,94,158,0.06);
    transform: translateX(4px);
}
.qc-icon {
    width: 34px; height: 34px;
    background: var(--navy-dark);
    color: var(--white);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    flex-shrink: 0;
}
.qc-info { display: flex; flex-direction: column; }
.qc-name { font-size: 0.8rem; font-weight: 600; color: var(--text-dark); }
.qc-num  { font-size: 0.82rem; color: var(--navy); font-weight: 500; }


/* ============================================================
   11. PROJECT FINANCE FOCUS (Split Section)
   ============================================================ */
.split-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.split-visual { display: flex; flex-direction: column; gap: 20px; }

.pf-icon-display {
    width: 80px; height: 80px;
    background: linear-gradient(135deg, var(--navy-dark), #0F3D7A);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2.2rem;
    box-shadow: var(--shadow-lg);
    margin-bottom: 8px;
}
.pf-checklist { display: flex; flex-direction: column; gap: 10px; }
.pf-check-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-dark);
    transition: all var(--transition);
}
.pf-check-item:hover {
    border-color: var(--navy);
    background: rgba(21,94,158,0.04);
}
.pf-check-item i { color: var(--blue-action); font-size: 0.95rem; flex-shrink: 0; }

.split-content .section-label { margin-bottom: 12px; }
.split-content h2 { margin-bottom: 20px; }
.split-content p { color: var(--text-light); font-size: 0.95rem; margin-bottom: 16px; }
.split-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 28px; }


/* ============================================================
   12. INDUSTRIES
   ============================================================ */
.industries-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 24px;
}
.industry-card {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 28px 22px;
    text-align: center;
    transition: all var(--transition-md);
}
.industry-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--navy);
}
.industry-icon {
    width: 56px; height: 56px;
    background: linear-gradient(135deg, rgba(21,94,158,0.09), rgba(21,94,158,0.04));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
    font-size: 1.4rem;
    margin: 0 auto 16px;
    transition: all var(--transition);
}
.industry-card:hover .industry-icon {
    background: var(--navy-dark);
    color: var(--white);
}
.industry-card h3 { font-size: 1rem; margin-bottom: 8px; }
.industry-card p { font-size: 0.85rem; color: var(--text-light); line-height: 1.55; margin: 0; }


/* ============================================================
   13. PROCESS
   ============================================================ */
.process-steps {
    display: flex;
    align-items: flex-start;
    margin-bottom: 48px;
    gap: 0;
}
.process-connector {
    flex: 0 0 28px;
    height: 2px;
    background: linear-gradient(90deg, var(--border), var(--navy));
    align-self: auto;
    margin-top: 56px;
}
.process-step {
    flex: 1;
    text-align: center;
    padding: 0 8px;
    position: relative;
}
.step-number {
    font-family: var(--font-head);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--navy);
    letter-spacing: 0.05em;
    margin-bottom: 8px;
}
.step-icon {
    width: 72px; height: 72px;
    background: var(--white);
    border: 2px solid var(--navy-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy-dark);
    font-size: 1.4rem;
    margin: 0 auto 16px;
    transition: all var(--transition);
    box-shadow: var(--shadow-md);
}
.process-step:hover .step-icon {
    background: var(--navy-dark);
    color: var(--white);
    box-shadow: var(--shadow-lg);
}
.step-content h3 { font-size: 0.95rem; margin-bottom: 8px; color: var(--navy-dark); }
.step-content p  { font-size: 0.83rem; color: var(--text-light); line-height: 1.55; margin: 0; }
.process-cta { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }


/* ============================================================
   14. WHO WE HELP
   ============================================================ */
.who-section.bg-navy {
    background: linear-gradient(135deg, var(--navy-deeper) 0%, var(--navy-dark) 60%, #0F3D7A 100%);
}
.who-section .section-lead { color: rgba(255,255,255,0.7); }

.who-card {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    transition: all var(--transition-md);
}
.who-card:hover {
    background: rgba(37,99,235,0.15);
    transform: translateY(-4px);
    border-color: rgba(147,197,253,0.3);
}
.who-icon {
    width: 56px; height: 56px;
    background: rgba(255,255,255,0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue-accent);
    font-size: 1.4rem;
    margin: 0 auto 20px;
    transition: background var(--transition);
}
.who-card:hover .who-icon { background: rgba(37,99,235,0.25); }
.who-card h3 { color: var(--white); font-size: 1.05rem; margin-bottom: 10px; }
.who-card p  { color: rgba(255,255,255,0.7); font-size: 0.88rem; line-height: 1.6; margin: 0; }


/* ============================================================
   15. ABOUT / TEAM
   ============================================================ */
.about-content-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    margin-bottom: 64px;
    align-items: start;
}
.about-text p { font-size: 0.95rem; color: var(--text-body); line-height: 1.75; }
.about-mission-vision { display: flex; flex-direction: column; gap: 20px; }

.mv-card {
    background: var(--light-bg);
    border-left: 4px solid var(--navy);
    border-radius: var(--radius-sm);
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.mv-icon {
    width: 40px; height: 40px;
    background: var(--navy-dark);
    color: var(--white);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}
.mv-card h3 { font-size: 1rem; color: var(--navy-dark); margin: 0; }
.mv-card p  { font-size: 0.88rem; color: var(--text-light); line-height: 1.65; margin: 0; }

/* Team */
.team-heading { font-size: 1.4rem; margin-bottom: 36px; }
.team-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.team-card {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    transition: all var(--transition-md);
}
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.team-avatar { margin: 0 auto 20px; width: 96px; height: 96px; }
.avatar-placeholder {
    width: 96px; height: 96px;
    background: linear-gradient(135deg, var(--navy-dark), #0F3D7A);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.4);
    font-size: 2.4rem;
}
.team-card img.team-photo {
    width: 96px; height: 96px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--border);
}
.team-info h4 { font-size: 1.05rem; margin-bottom: 4px; }
.team-role {
    font-size: 0.82rem;
    color: var(--navy);
    font-weight: 600;
    display: block;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.team-contact {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: var(--navy-dark);
    font-weight: 500;
    padding: 6px 14px;
    background: var(--light-bg);
    border-radius: var(--radius-full);
}
.team-contact:hover { background: var(--navy-dark); color: var(--white); }


/* ============================================================
   16. FAQ
   ============================================================ */
.faq-list {
    max-width: 820px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.faq-item {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: box-shadow var(--transition);
}
.faq-item:hover { box-shadow: var(--shadow-md); }
.faq-item.is-open { border-color: var(--navy); box-shadow: var(--shadow-md); }
.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 24px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-head);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
    transition: background var(--transition);
}
.faq-question:hover { background: var(--off-white); }
.faq-item.is-open .faq-question { background: rgba(21,94,158,0.04); }
.faq-icon {
    width: 28px; height: 28px;
    background: var(--light-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy-dark);
    font-size: 0.7rem;
    flex-shrink: 0;
    transition: all var(--transition);
}
.faq-item.is-open .faq-icon {
    background: var(--navy-dark);
    color: var(--white);
    transform: rotate(45deg);
}
.faq-answer { padding: 0 24px 20px; border-top: 1px solid var(--border-light); }
.faq-answer[hidden] { display: none; }
.faq-answer p { color: var(--text-body); font-size: 0.92rem; line-height: 1.7; margin: 16px 0 0; }


/* ============================================================
   17. CONTACT SECTION
   ============================================================ */
.contact-inner {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 64px;
    align-items: start;
}

.contact-info-col h2 { margin-bottom: 16px; }
.contact-info-col > p { color: var(--text-light); margin-bottom: 28px; }

.contact-details-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 28px;
}
.contact-detail-item { display: flex; gap: 14px; align-items: flex-start; }
.cd-icon {
    width: 40px; height: 40px;
    background: linear-gradient(135deg, var(--navy-dark), #0F3D7A);
    color: var(--white);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    flex-shrink: 0;
}
.cd-text { display: flex; flex-direction: column; gap: 4px; }
.cd-text strong {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--navy-dark);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.cd-text address,
.cd-text span,
.cd-text a { font-size: 0.9rem; color: var(--text-body); }
.cd-text a:hover { color: var(--navy-dark); }
.contact-phone-list { display: flex; flex-direction: column; gap: 2px; }

/* Booking CTA in contact */
.contact-booking-cta {
    background: var(--light-bg);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 20px 22px;
    margin-bottom: 20px;
}
.contact-booking-cta p {
    font-size: 0.88rem;
    color: var(--text-light);
    margin-bottom: 12px;
}

/* Trust points */
.contact-trust-points {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 24px;
}
.trust-point {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    color: var(--text-body);
}
.trust-point i { color: var(--blue-action); font-size: 0.85rem; flex-shrink: 0; }

.service-areas {
    background: var(--light-bg);
    border-radius: var(--radius-sm);
    padding: 14px 18px;
}
.service-areas h3 {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--navy-dark);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 5px;
}
.service-areas p { font-size: 0.88rem; color: var(--text-light); margin: 0; }


/* ============================================================
   18. ZOHO CRM FORM
   All rules use !important to override Zoho's own <style> block
   and any inline styles on the form container.
   Do not remove the Zoho-required structure rules.
   ============================================================ */
.form-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 36px 32px;
    box-shadow: var(--shadow-md);
}
.form-card h3   { font-size: 1.3rem; margin-bottom: 6px; }
.form-subtext   { font-size: 0.88rem; color: var(--text-light); margin-bottom: 24px; }

/* --- Outer Zoho container reset --- */
.zoho-form-wrapper #crmWebToEntityForm {
    max-width: 100%   !important;
    padding: 0        !important;
    background: transparent !important;
    color: inherit    !important;
}

/* Hide Zoho's own "Website Form" title */
.zoho-form-wrapper .zcwf_title { display: none !important; }

/* --- Row layout: stack label above field --- */
.zoho-form-wrapper .zcwf_row {
    margin: 0 0 18px 0 !important;
    display: block     !important;
    overflow: visible  !important;
}
.zoho-form-wrapper .zcwf_row::after { display: none !important; }

.zoho-form-wrapper .zcwf_col_lab {
    width: 100%      !important;
    float: none      !important;
    display: block   !important;
    padding: 0 0 6px !important;
    margin: 0        !important;
    min-height: unset !important;
    font-family: var(--font-body) !important;
    font-size: 0.85rem  !important;
    font-weight: 600    !important;
    color: var(--text-dark) !important;
}

.zoho-form-wrapper .zcwf_col_fld {
    width: 100%      !important;
    float: none      !important;
    display: block   !important;
    padding: 0       !important;
    margin: 0        !important;
    position: static !important;
}
.zoho-form-wrapper .zcwf_col_fld::after { display: none !important; }
.zoho-form-wrapper .zcwf_col_help       { display: none !important; }

/* --- Two-column helper for Phone + Mobile --- */
.zoho-form-wrapper .zf-two-col {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 16px !important;
}
.zoho-form-wrapper .zf-half { display: block !important; }

/* --- Text inputs & textarea --- */
.zoho-form-wrapper .zcwf_col_fld input[type=text],
.zoho-form-wrapper .zcwf_col_fld textarea {
    width: 100%         !important;
    float: none         !important;
    box-sizing: border-box !important;
    padding: 11px 14px  !important;
    border: 1.5px solid var(--border) !important;
    border-radius: var(--radius-sm)   !important;
    font-family: var(--font-body) !important;
    font-size: 0.9rem   !important;
    color: var(--text-dark)  !important;
    background: var(--white) !important;
    outline: none       !important;
    box-shadow: none    !important;
    transition: border-color var(--transition), box-shadow var(--transition) !important;
    resize: vertical    !important;
}
.zoho-form-wrapper .zcwf_col_fld input[type=text]:focus,
.zoho-form-wrapper .zcwf_col_fld textarea:focus {
    border-color: var(--navy) !important;
    box-shadow: 0 0 0 3px rgba(21,94,158,0.10) !important;
}

/* --- Multi-select (Finance Type) --- */
.zoho-form-wrapper .zcwf_col_fld_slt {
    width: 100%         !important;
    float: none         !important;
    box-sizing: border-box !important;
    padding: 6px 10px   !important;
    border: 1.5px solid var(--border) !important;
    border-radius: var(--radius-sm)   !important;
    font-family: var(--font-body) !important;
    font-size: 0.9rem   !important;
    color: var(--text-dark)  !important;
    background: var(--white) !important;
    min-height: 148px   !important;   /* shows ~5 options */
    outline: none       !important;
}
.zoho-form-wrapper .zcwf_col_fld_slt:focus {
    border-color: var(--navy) !important;
    box-shadow: 0 0 0 3px rgba(21,94,158,0.10) !important;
}
.zoho-form-wrapper .zcwf_col_fld_slt option {
    padding: 6px 8px !important;
    font-size: 0.88rem !important;
    cursor: pointer !important;
}
.zoho-form-wrapper .zcwf_col_fld_slt option:checked {
    background: var(--blue-action) !important;
    color: var(--white) !important;
}

/* Hint text under Finance Type label */
.zoho-form-wrapper .zf-hint {
    font-size: 0.75rem !important;
    font-weight: 400   !important;
    color: var(--text-light) !important;
    margin-left: 4px !important;
}

/* Required asterisk */
.zoho-form-wrapper .zf-req {
    color: #C0392B !important;
    margin-left: 2px !important;
}

/* --- Submit button --- */
.zoho-form-wrapper .zf-submit-row {
    margin-top: 8px !important;
}
.zoho-form-wrapper .zf-submit-row .zcwf_col_fld {
    width: 100% !important;
}
.zoho-form-wrapper input#formsubmit,
.zoho-form-wrapper .formsubmit.zcwf_button {
    display: block      !important;
    width: 100%         !important;
    padding: 14px 28px  !important;
    background: var(--blue-action)     !important;
    background-image: none !important;
    color: var(--white) !important;
    border: none        !important;
    border-radius: var(--radius-sm)    !important;
    font-family: var(--font-head) !important;
    font-size: 1rem     !important;
    font-weight: 600    !important;
    letter-spacing: 0.01em !important;
    cursor: pointer     !important;
    margin: 0           !important;
    text-align: center  !important;
    transition: background var(--transition), transform var(--transition) !important;
    box-shadow: none    !important;
}
.zoho-form-wrapper input#formsubmit:hover,
.zoho-form-wrapper .formsubmit.zcwf_button:hover {
    background: var(--blue-action-hover) !important;
    transform: translateY(-1px)          !important;
}
.zoho-form-wrapper input#formsubmit:disabled,
.zoho-form-wrapper .formsubmit.zcwf_button:disabled {
    opacity: 0.65 !important;
    cursor: not-allowed !important;
    transform: none !important;
}

/* --- Reset button — hidden --- */
.zoho-form-wrapper input[type=reset],
.zoho-form-wrapper .zcwf_button[name=reset] { display: none !important; }

/* Misc utility */
.required    { color: #C0392B; }
.field-error { font-size: 0.78rem; color: #C0392B; display: block; }

/* Mobile: stack two-col to single */
@media (max-width: 600px) {
    .zoho-form-wrapper .zf-two-col {
        grid-template-columns: 1fr !important;
    }
}


/* ============================================================
   19. BOOKING SECTION
   ============================================================ */
.booking-section {
    background: var(--light-bg);
    padding: 64px 0;
}
.booking-section-inner {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 48px;
    align-items: start;
}
.booking-info h2 { margin-bottom: 14px; }
.booking-info p  { color: var(--text-light); font-size: 0.95rem; margin-bottom: 24px; }
.booking-info .btn { margin-bottom: 24px; }

.booking-trust {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.booking-trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    color: var(--text-body);
}
.booking-trust-item i { color: var(--blue-action); flex-shrink: 0; }

/* Inline embed frame */
.booking-embed-wrap {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    min-height: 620px;
}
#inline-container { min-height: 620px; width: 100%; }
#inline-container iframe { width: 100% !important; border: none !important; }


/* ============================================================
   20. FINAL CTA
   ============================================================ */
.final-cta { padding: 72px 0; }
.final-cta-inner { max-width: 680px; margin: 0 auto; }
.final-cta-inner h2 {
    color: var(--white);
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    margin-bottom: 16px;
}
.final-cta-inner p {
    color: rgba(255,255,255,0.75);
    font-size: 0.98rem;
    margin-bottom: 36px;
    line-height: 1.7;
}
.final-cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}


/* ============================================================
   21. FOOTER
   ============================================================ */
.footer { background: var(--navy-deeper); color: rgba(255,255,255,0.75); }
.footer-top { padding: 64px 0 48px; }
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
}
.footer-logo { height: 44px; width: auto; margin-bottom: 12px; }
.footer-tagline-text {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--blue-accent);
    margin-bottom: 12px;
    letter-spacing: 0.05em;
}
.footer-desc { font-size: 0.85rem; color: rgba(255,255,255,0.55); line-height: 1.7; margin-bottom: 20px; }
.footer-quick-contacts { display: flex; flex-direction: column; gap: 6px; }
.footer-quick-contacts a {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.65);
    transition: color var(--transition);
}
.footer-quick-contacts a:hover { color: var(--blue-accent); }
.footer-quick-contacts a i { color: var(--blue-accent); width: 14px; }

.footer-col h4 {
    font-family: var(--font-head);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 18px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-links a {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.6);
    transition: color var(--transition);
    display: flex;
    align-items: center;
    gap: 6px;
}
.footer-links a::before {
    content: '';
    width: 5px; height: 1px;
    background: var(--navy);
    flex-shrink: 0;
    transition: width var(--transition);
}
.footer-links a:hover { color: var(--blue-accent); }
.footer-links a:hover::before { width: 10px; background: var(--blue-accent); }

.footer-address { display: flex; flex-direction: column; gap: 8px; }
.footer-address p {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.55);
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin: 0;
    line-height: 1.55;
}
.footer-address i { color: var(--blue-accent); margin-top: 2px; flex-shrink: 0; }
.footer-address a { color: rgba(255,255,255,0.65); font-size: 0.82rem; }
.footer-address a:hover { color: var(--blue-accent); }

.footer-service-areas { margin-top: 16px; padding-top: 14px; border-top: 1px solid rgba(255,255,255,0.08); }
.footer-service-areas strong {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--blue-accent);
    margin-bottom: 4px;
}
.footer-service-areas span { font-size: 0.82rem; color: rgba(255,255,255,0.5); }

.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 24px 0; }
.footer-bottom-inner { display: flex; flex-direction: column; gap: 12px; }
.footer-disclaimer p { font-size: 0.78rem; color: rgba(255,255,255,0.38); line-height: 1.65; margin: 0; }
.footer-disclaimer strong { color: rgba(255,255,255,0.5); }
.footer-legal { font-size: 0.8rem; color: rgba(255,255,255,0.4); }


/* ============================================================
   22. BACK TO TOP
   ============================================================ */
/* Positioned bottom-LEFT so it never overlaps the Zoho SalesIQ chat widget (bottom-right) */
.back-to-top {
    position: fixed;
    bottom: 28px;
    left: 28px;
    right: auto;
    width: 44px; height: 44px;
    background: var(--navy-dark);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    box-shadow: var(--shadow-lg);
    cursor: pointer;
    border: none;
    z-index: 500;
    transition: all var(--transition);
    opacity: 0;
    transform: translateY(10px);
    pointer-events: none;
}
.back-to-top.is-visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.back-to-top:hover { background: var(--blue-action); transform: translateY(-2px); }


/* ============================================================
   23. SCROLL ANIMATIONS
   ============================================================ */
[data-animate] {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}
[data-animate="fade-right"]  { transform: translateX(-24px); }
[data-animate="fade-left"]   { transform: translateX(24px); }
[data-animate].is-visible    { opacity: 1; transform: translateY(0) translateX(0); }
[data-delay="100"] { transition-delay: 0.10s; }
[data-delay="200"] { transition-delay: 0.20s; }
[data-delay="300"] { transition-delay: 0.30s; }


/* ============================================================
   24. TABLET (max-width: 1024px)
   ============================================================ */
@media (max-width: 1024px) {
    :root { --section-pad: 64px; }

    .grid-4                { grid-template-columns: repeat(2,1fr); }
    .industries-grid       { grid-template-columns: repeat(2,1fr); }
    .why-inner             { grid-template-columns: 1fr; gap: 40px; }
    .split-section         { grid-template-columns: 1fr; gap: 40px; }
    .split-visual          { order: -1; }
    .contact-inner         { grid-template-columns: 1fr; gap: 40px; }
    .about-content-block   { grid-template-columns: 1fr; }
    .booking-section-inner { grid-template-columns: 1fr; gap: 32px; }
    .footer-grid           { grid-template-columns: 1fr 1fr; gap: 32px; }
    .footer-brand-col      { grid-column: 1 / -1; }
    .team-grid             { grid-template-columns: repeat(3,1fr); }
    .quick-pill-email      { display: none; }

    /* Slider: 2 at a time on tablet */
    .slider-slide { flex: 0 0 calc(50% - 12px); }

    /* Process vertical on tablet */
    .process-steps         { flex-direction: column; align-items: center; gap: 0; }
    .process-connector     {
        width: 2px; height: 32px; flex: 0 0 32px; margin: 0 auto;
        background: linear-gradient(180deg, var(--border), var(--navy-dark));
    }
    .process-step { padding: 0 24px; text-align: left; display: flex; align-items: flex-start; gap: 20px; width: 100%; }
    .step-content { flex: 1; }
    .step-icon    { margin: 0; flex-shrink: 0; }

    .nav-list   { gap: 2px; }
    .nav-link   { padding: 8px 10px; font-size: 0.85rem; }
}


/* ============================================================
   25. MOBILE (max-width: 768px)
   ============================================================ */
@media (max-width: 768px) {
    :root { --section-pad: 52px; --gutter: 18px; }

    .mobile-toggle { display: flex; }
    .header-cta    { display: none; }

    /* ── Full-screen mobile nav overlay ── */
    .header-nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100dvh;           /* dynamic viewport height */
        height: 100vh;            /* fallback */
        background: linear-gradient(160deg, var(--navy-deeper) 0%, var(--navy-dark) 60%, #0F3D7A 100%);
        padding: 88px 28px 40px; /* top clears the 72px header */
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        /* slide-in from right + fade */
        transform: translateX(100%);
        opacity: 0;
        visibility: hidden;
        transition:
            transform 0.38s cubic-bezier(0.4, 0, 0.2, 1),
            opacity   0.32s ease,
            visibility 0s linear 0.38s;
        z-index: 950;
    }
    .header-nav.is-open {
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
        transition:
            transform 0.38s cubic-bezier(0.4, 0, 0.2, 1),
            opacity   0.32s ease,
            visibility 0s linear 0s;
    }

    /* ── Nav links ── */
    .nav-list {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
    }
    .nav-list > li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }
    .nav-list > li:first-child {
        border-top: 1px solid rgba(255, 255, 255, 0.08);
    }
    .nav-link {
        font-size: 1.08rem;
        font-weight: 600;
        padding: 16px 20px;
        width: 100%;
        color: rgba(255, 255, 255, 0.88);
        border-radius: 0;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .nav-link:hover,
    .nav-link.active {
        color: var(--white);
        background: rgba(255, 255, 255, 0.08);
    }
    .nav-link.active {
        color: var(--blue-accent);
    }

    /* ── Mobile dropdown ── */
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        padding: 4px 0 8px 0;
        background: rgba(0, 0, 0, 0.18);
        border-radius: 0;
        margin: 0;
        display: none;
    }
    .has-dropdown.is-open .dropdown-menu { display: block; }
    .has-dropdown.is-open .nav-arrow     { transform: rotate(180deg); color: var(--blue-accent); }

    .dropdown-menu li a {
        padding: 12px 20px 12px 32px;
        font-size: 0.92rem;
        color: rgba(255, 255, 255, 0.72);
        border-radius: 0;
        justify-content: flex-start;
    }
    .dropdown-menu li a:hover {
        background: rgba(255, 255, 255, 0.1);
        color: var(--white);
    }
    .dropdown-menu li a i {
        color: var(--blue-accent);
    }

    /* ── Mobile contact strip at bottom of nav ── */
    .header-nav::after {
        content: '';
        display: block;
        height: 1px;
    }
    .mobile-nav-contacts {
        margin-top: 28px;
        padding-top: 24px;
        border-top: 1px solid rgba(255, 255, 255, 0.12);
        display: flex;
        flex-direction: column;
        gap: 12px;
    }
    .mobile-nav-contact-link {
        display: flex;
        align-items: center;
        gap: 12px;
        font-size: 0.9rem;
        font-weight: 500;
        color: rgba(255, 255, 255, 0.75);
        text-decoration: none;
        padding: 10px 0;
        border-radius: var(--radius-sm);
        transition: color var(--transition);
    }
    .mobile-nav-contact-link i {
        width: 32px;
        height: 32px;
        background: rgba(255,255,255,0.1);
        border-radius: var(--radius-sm);
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--blue-accent);
        font-size: 0.85rem;
        flex-shrink: 0;
    }
    .mobile-nav-contact-link:hover { color: var(--white); }

    .mobile-nav-cta {
        margin-top: 24px;
    }
    .mobile-nav-cta .btn {
        width: 100%;
        justify-content: center;
        padding: 14px 24px;
        font-size: 0.95rem;
    }

    /* Hero */
    .hero { padding-top: calc(72px + 48px); padding-bottom: 56px; min-height: auto; }
    .hero-title { font-size: clamp(1.9rem, 7vw, 2.6rem); }
    .hero-pillars { gap: 10px; }
    .hero-pillar  { padding: 10px 14px; font-size: 0.8rem; }
    .hero-actions { flex-direction: column; align-items: flex-start; }
    .hero-actions .btn { width: 100%; justify-content: center; }

    .quick-bar-inner    { flex-direction: column; align-items: flex-start; gap: 12px; }
    .quick-bar-contacts { gap: 8px; }

    /* Grids */
    .grid-4          { grid-template-columns: 1fr 1fr; gap: 16px; }
    .industries-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
    .team-grid       { grid-template-columns: 1fr; max-width: 320px; margin: 0 auto; }

    /* Slider: 1 at a time on mobile */
    .slider-slide { flex: 0 0 100%; }

    /* Process */
    .process-step { flex-direction: row; text-align: left; gap: 14px; padding: 0 8px; align-items: flex-start; }
    .step-icon    { margin: 0; flex-shrink: 0; width: 52px; height: 52px; font-size: 1.1rem; }

    /* FAQ */
    .faq-question { font-size: 0.88rem; padding: 16px 18px; }
    .faq-answer   { padding: 0 18px 16px; }

    /* Contact + form */
    .form-row  { grid-template-columns: 1fr; }
    .form-card { padding: 24px 20px; }
    .booking-section-inner { grid-template-columns: 1fr; }

    /* Footer */
    .footer-grid   { grid-template-columns: 1fr; gap: 32px; }
    .footer-brand-col { grid-column: 1; }

    /* CTAs */
    .final-cta-actions { flex-direction: column; align-items: center; }
    .final-cta-actions .btn { width: 100%; max-width: 300px; justify-content: center; }
    .split-actions { flex-direction: column; }
    .split-actions .btn { width: 100%; justify-content: center; }
    .process-cta .btn { width: 100%; max-width: 300px; justify-content: center; }

    .back-to-top { bottom: 18px; left: 18px; right: auto; }
}


/* ============================================================
   26. SMALL MOBILE (max-width: 480px)
   ============================================================ */
@media (max-width: 480px) {
    .grid-4          { grid-template-columns: 1fr; }
    .industries-grid { grid-template-columns: 1fr; }
    .hero-pillars    { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
    .hero-pillar     { padding: 12px; flex-direction: column; text-align: center; gap: 6px; }
    .section-header  { margin-bottom: 36px; }
    .quick-bar-contacts { flex-direction: column; gap: 6px; }
    .process-cta     { flex-direction: column; align-items: center; }
}


/* ============================================================
   27. ACCESSIBILITY & PRINT
   ============================================================ */
:focus-visible {
    outline: 2px solid var(--blue-action);
    outline-offset: 3px;
    border-radius: 3px;
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
    html { scroll-behavior: auto; }
    [data-animate] { opacity: 1; transform: none; }
    .slider-track { transition: none; }
}

@media print {
    .header, .hero, .quick-bar, .back-to-top, .final-cta, .booking-section { display: none; }
    body { font-size: 12pt; color: #000; }
    a { color: #000; }
}


/* ============================================================
   28. INNER / SERVICE PAGES
   ============================================================ */

/* Breadcrumb */
.breadcrumb {
    background: var(--light-bg);
    border-bottom: 1px solid var(--border-light);
    padding: 12px 0;
    margin-top: 72px; /* offset for fixed header */
}
.breadcrumb-inner {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    color: var(--text-light);
}
.breadcrumb-inner a {
    color: var(--navy);
    font-weight: 500;
}
.breadcrumb-inner a:hover { color: var(--navy-dark); }
.breadcrumb-inner i { font-size: 0.65rem; color: var(--border); }
.breadcrumb-inner span { color: var(--text-dark); font-weight: 500; }

/* Inner page hero (smaller than home hero) */
.inner-hero {
    background: linear-gradient(135deg, var(--navy-deeper) 0%, var(--navy-dark) 50%, #0F3D7A 100%);
    padding: 64px 0 60px;
    position: relative;
    overflow: hidden;
}
.inner-hero::after {
    content: '';
    position: absolute;
    top: -80px; right: -80px;
    width: 400px; height: 400px;
    background: rgba(255,255,255,0.03);
    border-radius: 50%;
    pointer-events: none;
}
.inner-hero-inner {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 28px;
}
.inner-hero-icon {
    width: 72px; height: 72px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.8rem;
    flex-shrink: 0;
}
.inner-hero-text .page-tag {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--blue-accent);
    margin-bottom: 10px;
    display: block;
}
.inner-hero-text h1 {
    color: var(--white);
    font-size: clamp(1.7rem, 3.5vw, 2.4rem);
    font-weight: 800;
    margin-bottom: 14px;
    line-height: 1.18;
}
.inner-hero-text p {
    color: rgba(255,255,255,0.8);
    font-size: 1rem;
    max-width: 620px;
    line-height: 1.7;
    margin-bottom: 24px;
}
.inner-hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* Service detail content */
.service-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: start;
}

.service-checklist {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.service-checklist-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 18px;
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--text-dark);
    transition: all var(--transition);
}
.service-checklist-item:hover {
    border-color: var(--navy);
    background: var(--light-bg);
}
.service-checklist-item i {
    color: var(--blue-action);
    margin-top: 2px;
    flex-shrink: 0;
}

/* Benefit cards grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 18px;
    margin-top: 28px;
}
.benefit-card {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 22px 20px;
    transition: all var(--transition-md);
}
.benefit-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.benefit-icon {
    width: 44px; height: 44px;
    background: linear-gradient(135deg, var(--navy-dark), #0F3D7A);
    color: var(--white);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    margin-bottom: 12px;
}
.benefit-card h4 { font-size: 0.95rem; margin-bottom: 6px; }
.benefit-card p  { font-size: 0.85rem; color: var(--text-light); margin: 0; line-height: 1.55; }

/* Related services strip */
.related-services {
    background: var(--navy-dark);
    padding: 48px 0;
}
.related-services h2 { color: var(--white); margin-bottom: 28px; }
.related-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 16px;
}
.related-card {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius-md);
    padding: 22px 20px;
    transition: all var(--transition-md);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 14px;
}
.related-card:hover {
    background: rgba(37,99,235,0.18);
    border-color: rgba(37,99,235,0.4);
    transform: translateY(-3px);
}
.related-card-icon {
    width: 44px; height: 44px;
    background: rgba(255,255,255,0.1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue-accent);
    font-size: 1.1rem;
    flex-shrink: 0;
}
.related-card-text strong {
    display: block;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 2px;
}
.related-card-text span {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.55);
}

/* Page FAQ (compact) */
.page-faq-list {
    max-width: 780px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Service CTA strip */
.service-cta-strip {
    background: linear-gradient(135deg, var(--navy-deeper), var(--navy-dark));
    padding: 64px 0;
    text-align: center;
}
.service-cta-strip h2 { color: var(--white); margin-bottom: 14px; }
.service-cta-strip p  { color: rgba(255,255,255,0.75); max-width: 560px; margin: 0 auto 32px; font-size: 0.97rem; }
.service-cta-actions  { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* Responsive inner pages */
@media (max-width: 1024px) {
    .service-detail-grid { grid-template-columns: 1fr; gap: 36px; }
    .related-grid { grid-template-columns: repeat(2,1fr); }
    .inner-hero-inner { flex-direction: column; align-items: flex-start; gap: 20px; }
}
@media (max-width: 768px) {
    .inner-hero { padding: 48px 0 44px; }
    .benefits-grid { grid-template-columns: 1fr; }
    .related-grid { grid-template-columns: 1fr; }
    .service-cta-actions { flex-direction: column; align-items: center; }
    .service-cta-actions .btn { width: 100%; max-width: 300px; justify-content: center; }
    .inner-hero-actions .btn { width: 100%; justify-content: center; }
}


/* Hide mobile-only nav elements on desktop — shown inside @media (max-width: 768px) */
.mobile-nav-contacts,
.mobile-nav-cta { display: none; }


/* ============================================================
   29. WHATSAPP FLOATING BUTTON
   Positioned bottom-left, above back-to-top. Right side
   intentionally left clear for Zoho SalesIQ chat widget.
   ============================================================ */
.whatsapp-float {
    position: fixed;
    bottom: 82px;
    left: 28px;
    width: 48px;
    height: 48px;
    background: #25D366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    text-decoration: none;
    box-shadow: 0 4px 18px rgba(37,211,102,0.45);
    z-index: 500;
    transition: all var(--transition);
    opacity: 0;
    transform: translateY(10px);
    pointer-events: none;
}
.whatsapp-float.is-visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}
.whatsapp-float:hover {
    background: #128C7E;
    color: var(--white);
    transform: translateY(-2px) scale(1.08);
    box-shadow: 0 6px 24px rgba(37,211,102,0.5);
}
/* Tooltip label on hover */
.whatsapp-float::before {
    content: 'Chat on WhatsApp';
    position: absolute;
    left: 58px;
    background: var(--text-dark);
    color: var(--white);
    font-size: 0.75rem;
    font-family: var(--font-body);
    font-weight: 500;
    white-space: nowrap;
    padding: 5px 10px;
    border-radius: var(--radius-sm);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition);
}
.whatsapp-float:hover::before { opacity: 1; }
@media (max-width: 768px) {
    .whatsapp-float { bottom: 80px; left: 18px; width: 44px; height: 44px; font-size: 1.3rem; }
    .whatsapp-float::before { display: none; }
}


/* ============================================================
   30. TESTIMONIALS SECTION
   ============================================================ */
.testimonials-section { background: var(--white); }

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

.testimonial-card {
    background: var(--light-bg);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    position: relative;
    transition: all var(--transition-md);
    display: flex;
    flex-direction: column;
}
.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--border);
}
.testimonial-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 16px;
}
.testimonial-stars i { color: #F59E0B; font-size: 0.85rem; }

.testimonial-quote-mark {
    font-size: 3.5rem;
    line-height: 1;
    color: var(--navy);
    opacity: 0.12;
    font-family: Georgia, serif;
    margin-bottom: -10px;
    display: block;
}
.testimonial-text {
    font-size: 0.92rem;
    color: var(--text-body);
    line-height: 1.75;
    font-style: italic;
    flex: 1;
    margin-bottom: 20px;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 18px;
    border-top: 1px solid var(--border-light);
}
.testimonial-avatar {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--navy-dark), var(--navy));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.5);
    font-size: 1.1rem;
    flex-shrink: 0;
}
.testimonial-name {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--text-dark);
    display: block;
}
.testimonial-biz {
    font-size: 0.78rem;
    color: var(--text-light);
    display: block;
}
@media (max-width: 1024px) { .testimonials-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px)  { .testimonials-grid { grid-template-columns: 1fr; } }


/* ============================================================
   31. GOOGLE MAPS EMBED
   ============================================================ */
.map-embed-wrap {
    margin-top: 28px;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}
.map-embed-wrap iframe {
    display: block;
    width: 100%;
    height: 260px;
    border: none;
}


/* ============================================================
   32. SOCIAL MEDIA LINKS (footer)
   ============================================================ */
.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 16px;
}
.social-link {
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.65);
    font-size: 0.9rem;
    text-decoration: none;
    transition: all var(--transition);
}
.social-link:hover {
    background: var(--blue-action);
    border-color: var(--blue-action);
    color: var(--white);
    transform: translateY(-2px);
}


/* ============================================================
   33. THANK-YOU PAGE
   ============================================================ */
.thankyou-section {
    min-height: calc(100vh - 72px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 24px;
    background: var(--light-bg);
}
.thankyou-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 56px 48px;
    text-align: center;
    max-width: 560px;
    width: 100%;
    box-shadow: var(--shadow-xl);
}
.thankyou-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, #10B981, #059669);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
    margin: 0 auto 24px;
}
.thankyou-card h1 { font-size: 1.8rem; color: var(--text-dark); margin-bottom: 14px; }
.thankyou-card p  { color: var(--text-light); font-size: 0.97rem; margin-bottom: 12px; }
.thankyou-card .thankyou-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 28px; }
@media (max-width: 480px) {
    .thankyou-card { padding: 36px 24px; }
    .thankyou-card .thankyou-actions { flex-direction: column; }
    .thankyou-card .thankyou-actions .btn { width: 100%; justify-content: center; }
}


/* ============================================================
   34. ABOUT PAGE — TEAM PROFILE CARDS
   ============================================================ */
.team-profile-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 48px;
}
.team-profile-card {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    padding: 36px 28px;
    text-align: center;
    transition: all var(--transition-md);
    position: relative;
    overflow: hidden;
}
.team-profile-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--navy-dark), var(--blue-action));
}
.team-profile-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}
.team-profile-photo {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    margin: 0 auto 20px;
    overflow: hidden;
    border: 3px solid var(--light-bg);
    box-shadow: var(--shadow-md);
}
.team-profile-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    display: block;
}
.team-profile-photo-placeholder {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--navy-dark), #0F3D7A);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.35);
    font-size: 2.8rem;
    border: 3px solid var(--light-bg);
    box-shadow: var(--shadow-md);
}
.team-profile-name {
    font-family: var(--font-head);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 4px;
}
.team-profile-title {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--blue-action);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 16px;
    display: block;
}
.team-profile-bio {
    list-style: none;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}
.team-profile-bio li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--text-body);
    line-height: 1.55;
}
.team-profile-bio li i {
    color: var(--blue-action);
    margin-top: 3px;
    flex-shrink: 0;
    font-size: 0.72rem;
}
.team-profile-contact {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding-top: 16px;
    border-top: 1px solid var(--border-light);
}
.team-profile-contact a {
    font-size: 0.85rem;
    color: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-weight: 500;
}
.team-profile-contact a:hover { color: var(--blue-action); }

/* Company stats row */
.company-stats {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 20px;
    margin: 48px 0;
}
.company-stat {
    background: var(--light-bg);
    border-radius: var(--radius-md);
    padding: 24px 20px;
    text-align: center;
}
.company-stat-number {
    font-family: var(--font-head);
    font-size: 2rem;
    font-weight: 800;
    color: var(--navy-dark);
    display: block;
    line-height: 1;
    margin-bottom: 6px;
}
.company-stat-label {
    font-size: 0.82rem;
    color: var(--text-light);
    font-weight: 500;
}

/* Approach grid */
.approach-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 20px;
}
.approach-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 18px 18px;
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    transition: all var(--transition);
}
.approach-item:hover { border-color: var(--navy); background: var(--light-bg); }
.approach-icon {
    width: 40px; height: 40px;
    background: linear-gradient(135deg, var(--navy-dark), #0F3D7A);
    color: var(--white);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    flex-shrink: 0;
}
.approach-item h4 { font-size: 0.92rem; margin-bottom: 4px; }
.approach-item p  { font-size: 0.83rem; color: var(--text-light); margin: 0; line-height: 1.5; }


/* ============================================================
   35. INDUSTRIES PAGE — DETAILED CARDS
   ============================================================ */
.industry-detail-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.industry-detail-card {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 28px 26px;
    transition: all var(--transition-md);
    display: flex;
    gap: 20px;
    align-items: flex-start;
}
.industry-detail-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    border-color: var(--navy);
}
.industry-detail-icon {
    width: 52px; height: 52px;
    background: linear-gradient(135deg, var(--navy-dark), #0F3D7A);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    flex-shrink: 0;
}
.industry-detail-text h3 { font-size: 1rem; margin-bottom: 6px; }
.industry-detail-text p  { font-size: 0.85rem; color: var(--text-light); line-height: 1.6; margin-bottom: 10px; }
.industry-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}
.industry-tag {
    font-size: 0.73rem;
    font-weight: 600;
    color: var(--navy);
    background: var(--light-bg);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-full);
    padding: 3px 10px;
}


/* ============================================================
   36. PROCESS PAGE — DETAILED STEPS
   ============================================================ */
.process-detail-steps {
    display: flex;
    flex-direction: column;
    gap: 0;
    max-width: 900px;
    margin: 0 auto 48px;
}
.process-detail-step {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 24px;
    position: relative;
    padding-bottom: 40px;
}
.process-detail-step:last-child { padding-bottom: 0; }
.process-detail-step:last-child .step-connector { display: none; }

.step-badge-col {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.step-badge {
    width: 56px; height: 56px;
    background: linear-gradient(135deg, var(--navy-dark), var(--blue-action));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.1rem;
    flex-shrink: 0;
    box-shadow: var(--shadow-md);
    position: relative;
    z-index: 2;
}
.step-badge-num {
    font-family: var(--font-head);
    font-size: 0.68rem;
    font-weight: 700;
    color: rgba(255,255,255,0.7);
    text-align: center;
    margin-top: 6px;
    letter-spacing: 0.05em;
}
.step-connector {
    width: 2px;
    flex: 1;
    background: linear-gradient(180deg, var(--navy), var(--border));
    margin-top: 4px;
}
.process-detail-content {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 24px 26px;
    margin-bottom: 16px;
    transition: all var(--transition-md);
}
.process-detail-content:hover { box-shadow: var(--shadow-md); border-color: var(--navy); }
.process-detail-content h3 { font-size: 1.05rem; margin-bottom: 8px; color: var(--navy-dark); }
.process-detail-content p  { font-size: 0.9rem; color: var(--text-body); margin-bottom: 12px; line-height: 1.65; }
.process-detail-content .step-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.process-step-tag {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--navy);
    background: var(--light-bg);
    padding: 3px 10px;
    border-radius: var(--radius-full);
}

/* Two-col document list */
.docs-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.docs-card {
    background: var(--light-bg);
    border-radius: var(--radius-md);
    padding: 20px 18px;
}
.docs-card h4 { font-size: 0.9rem; color: var(--navy-dark); margin-bottom: 12px; }
.docs-card ul { display: flex; flex-direction: column; gap: 6px; }
.docs-card ul li {
    font-size: 0.83rem;
    color: var(--text-body);
    display: flex;
    align-items: flex-start;
    gap: 7px;
}
.docs-card ul li i { color: var(--blue-action); font-size: 0.7rem; margin-top: 3px; flex-shrink: 0; }


/* Responsive additions */
@media (max-width: 1024px) {
    .team-profile-grid  { grid-template-columns: 1fr 1fr; }
    .company-stats      { grid-template-columns: repeat(2,1fr); }
    .industry-detail-grid { grid-template-columns: 1fr; }
    .approach-grid      { grid-template-columns: 1fr; }
    .docs-two-col       { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
    .team-profile-grid  { grid-template-columns: 1fr; max-width: 360px; margin: 0 auto; }
    .company-stats      { grid-template-columns: repeat(2,1fr); }
    .process-detail-step { grid-template-columns: 56px 1fr; gap: 14px; }
}

/* ============================================================
   VADODARA PRESENCE BANNER
   Full-width image-ready banner between hero and What We Do.
   To use a real photo: replace the CSS background with:
     background-image: url('images/vadodara-city.jpg');
     background-size: cover; background-position: center;
   and keep the ::before overlay.
   ============================================================ */
.vadodara-banner {
    position: relative;
    padding: 80px 0;
    overflow: hidden;
    /*
     * IMAGE SLOT — replace this block with a real photo when available:
     * background-image: url('images/vadodara-city.jpg');
     * background-size: cover;
     * background-position: center top;
     * Suggested free photo: search "Laxmi Vilas Palace Vadodara" or
     * "Vadodara city Gujarat" on Unsplash/Pexels and save to images/vadodara-city.jpg
     */
    /* Laxmi Vilas Palace, Vadodara */
    background-image: url('../images/vadodara-city.png');
    background-size: cover;
    background-position: center 25%;
}
/* Dark overlay to make white text readable over the palace photo */
.vadodara-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    /* gradient darkens left (text area) more than right (image area) */
    background: linear-gradient(
        100deg,
        rgba(7,30,54,0.93)  0%,
        rgba(11,42,74,0.88) 45%,
        rgba(7,30,54,0.72)  100%
    );
    pointer-events: none;
}
/* Glowing orbs for depth */
.vadodara-banner::after {
    content: '';
    position: absolute;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(37,99,235,0.18) 0%, transparent 70%);
    top: -100px; right: -100px;
    pointer-events: none;
}

.vadodara-inner {
    position: relative;
    z-index: 2;
    max-width: 780px;
}
.vadodara-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 999px;
    padding: 6px 16px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--blue-accent);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 22px;
}
.vadodara-inner h2 {
    color: var(--white);
    font-size: clamp(1.6rem, 3.2vw, 2.2rem);
    font-weight: 800;
    line-height: 1.18;
    margin-bottom: 18px;
}
.vadodara-inner > p {
    color: rgba(255,255,255,0.75);
    font-size: 1rem;
    line-height: 1.72;
    margin-bottom: 36px;
    max-width: 660px;
}
.vadodara-stats {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 36px;
    padding-bottom: 36px;
    border-bottom: 1px solid rgba(255,255,255,0.12);
}
.vadodara-stat { display: flex; flex-direction: column; gap: 4px; }
.vstat-num {
    font-family: var(--font-head);
    font-size: 2rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
}
.vstat-label {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.55);
    max-width: 120px;
    line-height: 1.4;
}

/* Right side decorative visual (city/landmark placeholder) */
.vadodara-visual-wrap {
    position: absolute;
    right: 0; top: 0; bottom: 0;
    width: 42%;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}
.vadodara-visual {
    width: 100%; height: 100%;
    /*
     * IMAGE SLOT — can also place a specific landmark photo here:
     * background-image: url('images/laxmi-vilas-palace.jpg');
     * background-size: cover;
     * background-position: center;
     */
    background: linear-gradient(135deg, rgba(37,99,235,0.15), rgba(255,255,255,0.04));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 12px;
    border-left: 1px solid rgba(255,255,255,0.06);
}
.vadodara-visual-icon {
    width: 90px; height: 90px;
    border-radius: 50%;
    background: rgba(255,255,255,0.07);
    border: 2px solid rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: var(--blue-accent);
}
.vadodara-visual-text {
    font-family: var(--font-head);
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(255,255,255,0.45);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-align: center;
    line-height: 1.5;
}
/* Remove right visual on small screens */
@media (max-width: 768px) {
    .vadodara-visual-wrap { display: none; }
    .vadodara-stats { gap: 24px; }
    .vstat-num { font-size: 1.6rem; }
}


/* ============================================================
   ABOUT PAGE — IMAGE SECTIONS
   ============================================================ */

/* Office / workspace visual banner */
.about-office-banner {
    position: relative;
    height: 320px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    margin-bottom: 28px;
    background-image: url('../images/finex-office.png');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}
.about-office-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        repeating-linear-gradient(90deg, rgba(255,255,255,0.02) 0, rgba(255,255,255,0.02) 1px, transparent 1px, transparent 80px),
        repeating-linear-gradient(0deg,  rgba(255,255,255,0.02) 0, rgba(255,255,255,0.02) 1px, transparent 1px, transparent 80px);
}
.about-office-banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
}
.about-office-banner-content i {
    font-size: 3rem;
    opacity: 0.3;
    display: block;
    margin-bottom: 12px;
}
.about-office-banner-content p {
    font-size: 0.82rem;
    opacity: 0.45;
    font-style: italic;
    margin: 0;
}
.about-office-banner-content strong {
    display: block;
    font-size: 1rem;
    opacity: 0.55;
    margin-bottom: 4px;
}

/* Image card grid on about page */
.about-image-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin: 36px 0;
}
.about-img-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    height: 200px;
    display: flex;
    align-items: flex-end;
    /*
     * IMAGE SLOT — replace bg with actual photo URL
     */
}
/* About image grid — real photos with a subtle dark overlay via the icon + label */
.about-img-card.card-blue {
    background-image: url('../images/about-finance.png');
    background-size: cover;
    background-position: center;
}
.about-img-card.card-mid {
    background-image: url('../images/about-docs.png');
    background-size: cover;
    background-position: center;
}
.about-img-card.card-light {
    background-image: url('../images/about-growth.png');
    background-size: cover;
    background-position: center;
}
/* Dark gradient overlay so the label text is always readable */
.about-img-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(7,30,54,0.72) 0%, rgba(7,30,54,0.18) 60%, transparent 100%);
    border-radius: inherit;
    pointer-events: none;
}
.about-img-card-label {
    position: relative;
    z-index: 2;
    padding: 16px;
    width: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, transparent 100%);
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 600;
}
.about-img-card-icon { display: none; } /* hidden — replaced by real photos */
@media (max-width: 768px) {
    .about-image-grid { grid-template-columns: 1fr 1fr; }
    .about-office-banner { height: 220px; }
}
@media (max-width: 480px) {
    .about-image-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   TYPEWRITER — hero title highlight word cycling
   ============================================================ */
/* Blinking cursor after the animated word */
.title-highlight::after {
    content: '|';
    display: inline-block;
    color: var(--blue-accent);
    font-weight: 300;
    margin-left: 4px;
    animation: tw-cursor 0.65s step-end infinite;
}
@keyframes tw-cursor {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0; }
}

/* While the JS is still loading, hide the raw text to avoid flash */
.title-highlight.tw-ready {
    /* visibility restored by JS once the effect initialises */
}

/* ============================================================
   MOBILE CLOSE BUTTON  (injected into nav by JS)
   ============================================================ */
.mobile-nav-close {
    display: none;               /* shown only on mobile */
    position: absolute;
    top: 16px;
    right: 16px;
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,0.1);
    border: 1.5px solid rgba(255,255,255,0.22);
    border-radius: var(--radius-sm);
    color: var(--white);
    font-size: 1.15rem;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: background var(--transition), border-color var(--transition);
    -webkit-tap-highlight-color: transparent;
}
.mobile-nav-close:hover,
.mobile-nav-close:focus-visible {
    background: rgba(255,255,255,0.2);
    border-color: rgba(255,255,255,0.4);
    outline: none;
}
@media (max-width: 768px) {
    .mobile-nav-close { display: flex; }
}


/* ============================================================
   SAMSUNG A55 / NARROW MOBILE (360px) WIDTH FIXES
   Prevent horizontal scroll and overflow on small viewports.
   ============================================================ */
html, body {
    overflow-x: hidden;
    max-width: 100%;
}
*, *::before, *::after {
    max-width: 100%;
}

@media (max-width: 400px) {
    :root {
        --gutter: 14px;
    }

    /* Hero — tighten up */
    .hero-title {
        font-size: clamp(1.65rem, 9vw, 2.2rem);
        word-break: break-word;
    }
    .hero-badge {
        font-size: 0.72rem;
        padding: 5px 10px;
    }
    .hero-tagline { font-size: 0.78rem; }
    .hero-copy    { font-size: 0.95rem; }

    /* Hero pillars — single column on very narrow screens */
    .hero-pillars {
        grid-template-columns: 1fr 1fr !important;
        gap: 8px;
    }
    .hero-pillar {
        padding: 10px 10px;
        font-size: 0.75rem;
        gap: 6px;
    }
    .pillar-icon {
        width: 28px;
        height: 28px;
        font-size: 0.8rem;
    }

    /* Quick bar — stack tightly */
    .quick-bar-contacts { flex-direction: column; gap: 5px; }
    .quick-pill         { font-size: 0.78rem; padding: 5px 10px; }

    /* Section labels and headings */
    .section-label { font-size: 0.68rem; }
    h2 { font-size: clamp(1.3rem, 7vw, 1.9rem) !important; }
    h3 { font-size: clamp(1rem,  5vw, 1.2rem) !important; }

    /* Services slider */
    .slider-slide { flex: 0 0 100%; }
    .service-card { padding: 22px 18px 18px; }

    /* Grids */
    .grid-4          { grid-template-columns: 1fr 1fr; gap: 12px; }
    .industries-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
    .industry-card   { padding: 18px 14px; }

    /* Process steps */
    .process-detail-step {
        grid-template-columns: 44px 1fr;
        gap: 10px;
    }
    .step-badge { width: 44px; height: 44px; font-size: 0.9rem; }

    /* Buttons */
    .btn    { padding: 11px 18px; font-size: 0.85rem; }
    .btn-lg { padding: 13px 22px; font-size: 0.9rem; }

    /* Vadodara stats */
    .vadodara-stats  { gap: 18px; }
    .vstat-num       { font-size: 1.5rem; }

    /* Why list */
    .why-list li     { gap: 10px; }
    .why-check       { width: 22px; height: 22px; font-size: 0.65rem; }

    /* FAQ */
    .faq-question    { font-size: 0.83rem; padding: 14px 16px; }

    /* Contact form */
    .form-card       { padding: 20px 16px; }
    .cd-icon         { width: 34px; height: 34px; font-size: 0.85rem; }

    /* Footer */
    .footer-grid        { grid-template-columns: 1fr; }
    .footer-social      { gap: 8px; }
    .social-link        { width: 32px; height: 32px; }
    .footer-quick-contacts a { font-size: 0.78rem; }

    /* Testimonials */
    .testimonials-grid  { grid-template-columns: 1fr; }

    /* About image grid */
    .about-image-grid   { grid-template-columns: 1fr; }
    .about-img-card     { height: 160px; }

    /* Team profile */
    .team-profile-grid  { grid-template-columns: 1fr; }
    .company-stats      { grid-template-columns: 1fr 1fr; gap: 12px; }

    /* Inner hero */
    .inner-hero-inner   { flex-direction: column; gap: 14px; }
    .inner-hero-icon    { width: 56px; height: 56px; font-size: 1.4rem; }
    .inner-hero-text h1 { font-size: clamp(1.45rem, 8vw, 1.9rem); }
    .inner-hero-text p  { font-size: 0.88rem; }

    /* Zoho form */
    .zoho-form-wrapper .zcwf_col_fld_slt { min-height: 110px !important; }

    /* WhatsApp + back-to-top */
    .whatsapp-float { bottom: 72px; left: 14px; width: 40px; height: 40px; font-size: 1.2rem; }
    .back-to-top    { bottom: 16px; left: 14px; width: 38px; height: 38px; }
}

/* ============================================================
   WHATSAPP POPUP — two-contact card above the float button
   ============================================================ */
.whatsapp-popup {
    position: fixed;
    bottom: 82px;
    left: 28px;
    width: 256px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: 0 8px 32px rgba(11,42,74,0.20), 0 2px 8px rgba(0,0,0,0.08);
    z-index: 501;
    overflow: hidden;
    /* pop up with a spring bounce */
    transform-origin: bottom left;
    transform: scale(0.75) translateY(12px);
    opacity: 0;
    pointer-events: none;
    transition:
        transform 0.32s cubic-bezier(0.175, 0.885, 0.32, 1.275),
        opacity   0.22s ease;
}
.whatsapp-popup.is-open {
    transform: scale(1) translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.whatsapp-popup-header {
    background: #25D366;
    color: var(--white);
    padding: 12px 16px;
    font-family: var(--font-head);
    font-size: 0.82rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    letter-spacing: 0.02em;
}
.whatsapp-popup-header i { font-size: 1.1rem; }

.whatsapp-popup-contact {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 13px 16px;
    text-decoration: none;
    transition: background var(--transition);
    border-bottom: 1px solid var(--border-light);
}
.whatsapp-popup-contact:last-child { border-bottom: none; }
.whatsapp-popup-contact:hover { background: #f0fdf4; }

.wap-icon {
    width: 36px;
    height: 36px;
    background: #E8F5E9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #25D366;
    font-size: 0.9rem;
    flex-shrink: 0;
}
.wap-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1px;
}
.wap-name {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--text-dark);
}
.wap-num {
    font-size: 0.76rem;
    color: var(--text-light);
}
.wap-arrow {
    color: #25D366;
    font-size: 0.75rem;
    flex-shrink: 0;
}

/* On very small screens shift popup slightly */
@media (max-width: 400px) {
    .whatsapp-popup { left: 14px; width: 230px; }
}