/* ============================================================
   HELLO LOGISTICS — CSS
   Color: Prestige Navy & Maroon  |  Font: Space Grotesk + Inter
   ============================================================ */

:root {
    --prestige-navy:   #0B1E3F;
    --rich-navy:       #142B5C;
    --royal-navy:      #1E3A8A;
    --deep-maroon:     #7A1F2B;
    --burnished-crimson:#A8324A;
    --brand-red:       #E63027;
    --brand-red-hover: #c8241c;
    --soft-cream:      #F4EFE6;
    --muted-gold:      #C9A961;
    --charcoal:        #0A0F1C;
    --off-white:       #FAFAF8;

    --font-heading: 'Space Grotesk', sans-serif;
    --font-body:    'Inter', sans-serif;

    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --transition:    0.4s var(--ease-out-expo);

    --shadow-sm:  0 4px 12px rgba(0,0,0,0.08);
    --shadow-md:  0 10px 30px rgba(0,0,0,0.12);
    --shadow-lg:  0 20px 60px rgba(0,0,0,0.2);
}

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

html {
    scroll-behavior: initial;
    overflow-x: hidden;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--charcoal);
    line-height: 1.7;
    background-color: var(--off-white);
    overflow-x: hidden;
}

h1,h2,h3,h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

ul  { list-style: none; }
a   { text-decoration: none; color: inherit; transition: var(--transition); }
img { display: block; max-width: 100%; }

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

section { scroll-margin-top: 80px; }

.section-padding { padding: 120px 0; }

.center { text-align: center; }

.bg-dark {
    background-color: var(--prestige-navy);
    color: var(--soft-cream);
}

.bg-navy {
    background-color: var(--rich-navy);
    color: var(--soft-cream);
}

/* ============================================================
   LOADER — HOME (Full Prestige)
   ============================================================ */
.loader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--prestige-navy);
    overflow: hidden;
}

/* Subtle grain texture on loader */
.loader::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none;
    opacity: 0.5;
}

.loader--home .loader-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    position: relative;
    z-index: 1;
}



@keyframes loaderLogoFade {
    0%, 100% { transform: scale(0.95); opacity: 0.7; }
    50%       { transform: scale(1.02); opacity: 1; }
}

.loader-logo {
    width: 210px;
    height: auto;
    margin-bottom: 32px;
    opacity: 0;
    transform: scale(0.9);
    animation: loaderLogoEntrance 1s var(--ease-out-expo) 0.3s forwards, loaderLogoFade 3s ease-in-out 1.3s infinite;
}

.loader-logo img {
    width: 100%;
    height: auto;
    display: block;
}

@keyframes loaderLogoEntrance {
    to { opacity: 1; transform: scale(1); }
}

.loader-brand-name {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    color: var(--soft-cream);
    letter-spacing: 0.04em;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.9s var(--ease-out-expo) 1.6s forwards;
}

.loader-powered {
    margin-top: 12px;
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(244, 239, 230, 0.45);
    opacity: 0;
    animation: fadeUp 0.7s var(--ease-out-expo) 2.1s forwards;
}

.loader-powered span {
    color: var(--soft-cream);
    font-weight: 700;
    letter-spacing: 0.12em;
}

.loader-progress {
    width: 160px;
    height: 2px;
    background: rgba(244, 239, 230, 0.1);
    margin-top: 36px;
    position: relative;
    overflow: hidden;
    opacity: 0;
    animation: fadeIn 0.4s ease 2.2s forwards;
}

.loader-progress-bar {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background: var(--deep-maroon);
    animation: loadProgress 1.4s var(--ease-out-expo) 2.3s forwards;
}

@keyframes loadProgress {
    to { width: 100%; }
}

@keyframes fadeUp {
    to { opacity: 1; transform: translateY(0); }
}

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

/* ============================================================
   LOADER — PAGE (Minimal Construction)
   ============================================================ */
.loader--page .loader-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    position: relative;
    z-index: 1;
}

.loader--page .loader-logo {
    width: 80px;
}

@keyframes spinRing {
    to { transform: rotate(360deg); }
}

/* ============================================================
   CUSTOM CURSOR
   ============================================================ */
#cursor-dot, #cursor-ring {
    position: fixed;
    pointer-events: none;
    z-index: 10000;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.3s;
}

#cursor-dot {
    width: 6px;
    height: 6px;
    background-color: var(--deep-maroon);
}

#cursor-ring {
    width: 32px;
    height: 32px;
    border: 1.5px solid rgba(122, 31, 43, 0.6);
    transition: opacity 0.3s, width 0.2s, height 0.2s;
}

#cursor-ring.hovering {
    width: 50px;
    height: 50px;
    border-color: var(--burnished-crimson);
}

/* ============================================================
   NAVIGATION
   ============================================================ */
#main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 22px 0;
    transition: var(--transition);
    background: rgba(11, 30, 63, 0.6);
    backdrop-filter: blur(18px) saturate(1.2);
    -webkit-backdrop-filter: blur(18px) saturate(1.2);
    border-bottom: 1px solid rgba(244, 239, 230, 0.08);
    color: var(--soft-cream);
}

#main-header.scrolled {
    background: rgba(11, 30, 63, 0.97);
    padding: 14px 0;
    box-shadow: var(--shadow-lg);
    border-bottom-color: rgba(122, 31, 43, 0.2);
}

#main-header nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    flex-shrink: 0;
}

.logo img {
    height: 63px;
    width: auto;
    display: block;
    object-fit: contain;
}

.nav-links {
    display: flex;
    gap: 36px;
    align-items: center;
}

.nav-links a {
    position: relative;
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 0.01em;
    opacity: 0.85;
    padding: 4px 0;
}

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

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--deep-maroon);
    transition: width 0.35s var(--ease-out-expo);
}

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

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

.btn-quote {
    background: var(--deep-maroon);
    padding: 14px 34px;
    border-radius: 50px;
    color: var(--soft-cream);
    font-size: 1.23rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-quote:hover {
    background: var(--burnished-crimson);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(122, 31, 43, 0.4);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
    padding: 15px 32px;
    border-radius: 50px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: none;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.02em;
}

.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.08);
    transform: translateX(-100%) skewX(-12deg);
    transition: transform 0.5s var(--ease-out-expo);
}

.btn:hover::before { transform: translateX(110%) skewX(-12deg); }

.btn-solid {
    background: var(--brand-red);
    color: #fff;
}

.btn-solid i { transition: transform 0.3s ease; }
.btn-solid:hover {
    background: var(--brand-red-hover);
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(230, 48, 39, 0.35);
}
.btn-solid:hover i { transform: translateX(5px); }

.btn-ghost {
    background: transparent;
    border: 1.5px solid rgba(244, 239, 230, 0.5);
    color: var(--soft-cream);
}

.btn-ghost i { transition: transform 0.3s ease; }
.btn-ghost:hover {
    background: rgba(244, 239, 230, 0.08);
    border-color: var(--soft-cream);
}
.btn-ghost:hover i { transform: translateX(5px); }

/* ============================================================
   SECTION TITLE
   ============================================================ */
.section-title {
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    margin-bottom: 20px;
    color: var(--prestige-navy);
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -14px;
    left: 0;
    width: 36px;
    height: 3px;
    background: var(--deep-maroon);
    border-radius: 2px;
}

.bg-dark .section-title,
.bg-navy .section-title { color: var(--soft-cream); }

.center .section-title::after { left: 50%; transform: translateX(-50%); }

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 64px;
}

.section-header.center {
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.section-header p {
    color: rgba(10, 15, 28, 0.55);
    font-size: 1.05rem;
    max-width: 560px;
    line-height: 1.65;
}

.bg-dark .section-header p,
.bg-navy .section-header p { color: rgba(244, 239, 230, 0.6); }

.btn-text {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--deep-maroon);
    white-space: nowrap;
    margin-bottom: 4px;
    transition: var(--transition);
}

.btn-text:hover { gap: 14px; }

/* ============================================================
   PAGE HERO (sub-pages)
   ============================================================ */
.page-hero {
    min-height: 42vh;
    background: var(--prestige-navy);
    display: flex;
    align-items: flex-end;
    padding-bottom: 64px;
    padding-top: 120px;
    position: relative;
    overflow: hidden;
    color: var(--soft-cream);
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 80% at 10% 80%, rgba(122,31,43,0.18) 0%, transparent 60%),
        radial-gradient(ellipse 50% 60% at 90% 20%, rgba(30,58,138,0.15) 0%, transparent 60%);
    pointer-events: none;
}

.page-hero-bg-letter {
    position: absolute;
    right: -2%;
    bottom: -10%;
    font-family: var(--font-heading);
    font-size: 28vw;
    font-weight: 700;
    color: rgba(244, 239, 230, 0.025);
    user-select: none;
    pointer-events: none;
    letter-spacing: -0.05em;
    line-height: 1;
}

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

.page-hero-label {
    font-size: 0.75rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--muted-gold);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.page-hero-label::before {
    content: '';
    display: block;
    width: 28px;
    height: 1px;
    background: var(--muted-gold);
}

.page-hero h1 {
    font-size: clamp(2.8rem, 6vw, 5rem);
    color: var(--soft-cream);
    max-width: 700px;
}

/* ============================================================
   HERO — HOME
   ============================================================ */
#hero {
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    color: var(--soft-cream);
    background: var(--rich-navy);
}

/* ── Photo-background hero (honest hybrid) ──────────────
   The supplied artwork is used as a background photo, shifted
   right so the ship + truck show. A navy scrim masks the
   baked-in text on the left + the baked nav up top, and the
   headline / CTAs / features below are real, crisp HTML.    */
#hero.hero-photo-mode {
    background-image: url('../assets/hero-final.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: right center;
    padding-top: 130px;   /* clear the fixed header so the headline isn't covered */
}

.hero-photo-scrim {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
        /* top band: hides baked nav, blends with the fixed header */
        linear-gradient(180deg, rgba(8,18,38,0.95) 0%, rgba(8,18,38,0) 18%),
        /* left mask: fully hides the baked-in ghost headline, anchors live text */
        linear-gradient(90deg, rgba(8,18,38,1) 0%, rgba(8,18,38,1) 36%, rgba(8,18,38,0.9) 48%, rgba(8,18,38,0.3) 68%, rgba(8,18,38,0) 85%);
}

#hero.hero-photo-mode .hero-content { z-index: 2; }

#hero-vanta {
    position: absolute;
    inset: 0;
    z-index: 0;
}

/* Static ambient glow (no mouse tracking) */
.hero-aura {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: radial-gradient(ellipse 50% 70% at 20% 60%, rgba(20, 43, 92, 0.35) 0%, transparent 70%);
}

#hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 60% at 50% 100%, rgba(11,30,63,0.9) 0%, transparent 70%),
        linear-gradient(180deg, rgba(11,30,63,0.2) 0%, transparent 30%);
    z-index: 1;
    pointer-events: none;
}

/* Cargo ship silhouette */
.hero-ship {
    position: absolute;
    bottom: 0;
    right: -2%;
    z-index: 1;
    pointer-events: none;
    width: min(60vw, 780px);
    opacity: 0.22;
    animation: shipDrift 18s ease-in-out infinite;
}

.hero-ship svg { width: 100%; height: auto; }

@keyframes shipDrift {
    0%, 100% { transform: translateX(0) translateY(0); }
    50%       { transform: translateX(-12px) translateY(-8px); }
}

/* Floating silhouettes */
.hero-silhouettes {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.silhouette {
    position: absolute;
    background: rgba(244, 239, 230, 0.04);
    border: 1px solid rgba(244, 239, 230, 0.06);
    border-radius: 4px;
}

.silhouette-1 {
    width: 280px;
    height: 100px;
    top: 18%;
    right: 8%;
    clip-path: polygon(0 0, 100% 0, 95% 100%, 5% 100%);
}

.silhouette-2 {
    width: 180px;
    height: 70px;
    bottom: 22%;
    left: 6%;
    clip-path: polygon(5% 0, 95% 0, 100% 100%, 0 100%);
}

.silhouette-3 {
    width: 120px;
    height: 50px;
    top: 45%;
    right: 25%;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

/* Floating particles */
.hero-particles {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.particle {
    position: absolute;
    border-radius: 50%;
    background: var(--muted-gold);
    opacity: 0;
    animation: floatParticle var(--dur, 8s) var(--delay, 0s) ease-in-out infinite;
}

@keyframes floatParticle {
    0%   { transform: translateY(0) translateX(0) scale(1); opacity: 0; }
    20%  { opacity: var(--op, 0.4); }
    80%  { opacity: var(--op, 0.4); }
    100% { transform: translateY(-120px) translateX(var(--drift, 30px)) scale(0.5); opacity: 0; }
}

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

.hero-text { max-width: 600px; }

.hero-text h1 {
    font-size: clamp(2.8rem, 6vw, 5.2rem);
    line-height: 1.05;
    margin-bottom: 24px;
    max-width: 760px;
}

/* Bright red accent word on hero */
.hero-text h1 span {
    color: var(--brand-red);
}

.hero-text p {
    font-size: 1.15rem;
    margin-bottom: 40px;
    max-width: 560px;
    opacity: 0.85;
    line-height: 1.75;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Feature row at bottom of hero */
.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    margin-top: 64px;
}

.hero-feature {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding-right: 32px;
    border-right: 1px solid rgba(244, 239, 230, 0.15);
}
.hero-feature:last-child { border-right: none; padding-right: 0; }

.hero-feature > i,
.hero-feature > svg {
    color: var(--brand-red);
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    stroke-width: 2;
}

.hero-feature h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--soft-cream);
    margin-bottom: 4px;
}

.hero-feature p {
    font-size: 0.85rem;
    color: rgba(244, 239, 230, 0.6);
    line-height: 1.4;
    max-width: 160px;
    margin: 0;
}

.hero-stats {
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex-shrink: 0;
}

.stat-chip {
    padding: 22px 28px;
    border-radius: 18px;
    background: rgba(244, 239, 230, 0.06);
    backdrop-filter: blur(24px) saturate(1.2);
    -webkit-backdrop-filter: blur(24px) saturate(1.2);
    border: 1px solid rgba(244, 239, 230, 0.14);
    min-width: 200px;
    transition: var(--transition);
}

.stat-chip:hover {
    background: rgba(244, 239, 230, 0.1);
    border-color: rgba(201, 169, 97, 0.3);
    transform: translateX(-6px);
}

.stat-val {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.1rem;
    font-weight: 800;
    color: var(--soft-cream);
    line-height: 1;
    margin-bottom: 6px;
}

.stat-chip > *:not(.stat-val):not(.stat-label) {
    color: var(--muted-gold);
    font-size: 1.8rem;
    font-weight: 800;
    vertical-align: middle;
}

.stat-label {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(244, 239, 230, 0.5);
    margin-top: 6px;
}

/* Scroll indicator */
.hero-scroll-hint {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: rgba(244, 239, 230, 0.4);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.scroll-line {
    width: 1px;
    height: 48px;
    background: linear-gradient(to bottom, rgba(244,239,230,0.3), transparent);
    position: relative;
    overflow: hidden;
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--muted-gold);
    animation: scrollDrop 1.8s ease-in-out infinite;
}

@keyframes scrollDrop {
    0%   { top: -100%; }
    100% { top: 200%; }
}

/* ============================================================
   ABOUT — STRIP
   ============================================================ */
.about-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 100px;
    align-items: center;
}

.about-text .section-title { margin-bottom: 32px; }

.about-text p {
    font-size: 1.05rem;
    color: rgba(10,15,28,0.7);
    max-width: 520px;
    line-height: 1.8;
}

.about-counters {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px 40px;
}

.counter-item {
    position: relative;
    padding-left: 0;
}

.counter-item::before {
    content: '';
    display: block;
    width: 28px;
    height: 2px;
    background: var(--deep-maroon);
    margin-bottom: 12px;
    border-radius: 2px;
}

.counter-value-wrap {
    display: flex;
    align-items: baseline;
    gap: 2px;
    margin-bottom: 8px;
}

.counter {
    font-family: var(--font-heading);
    font-size: 3.2rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--deep-maroon), var(--burnished-crimson));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.counter-suffix {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--deep-maroon), var(--burnished-crimson));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.counter-item p {
    font-size: 0.85rem;
    color: rgba(10,15,28,0.5);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 500;
}

/* ============================================================
   SERVICES
   ============================================================ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.service-card {
    padding: 48px 40px;
    border-radius: 20px;
    background: var(--rich-navy);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    cursor: default;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.service-card:hover {
    transform: translateY(-10px);
    background: var(--prestige-navy);
    border-color: var(--deep-maroon);
}

.service-card-icon {
    width: 60px;
    height: 60px;
    background: var(--soft-cream);
    color: var(--deep-maroon);
    border-radius: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 24px;
    transition: var(--transition);
}

.service-card-icon i {
    color: var(--deep-maroon);
    width: 28px;
    height: 28px;
}

.service-card h3 {
    font-size: 1.3rem;
    color: var(--soft-cream);
    margin-bottom: 16px;
}

.service-card p {
    font-size: 0.95rem;
    color: var(--soft-cream);
    opacity: 0.85;
    line-height: 1.7;
}

/* ============================================================
   WHY US — PILLARS
   ============================================================ */
.three-pillar {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.pillar-item {
    background: #fff;
    padding: 56px 40px;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(11, 30, 63, 0.06);
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

.pillar-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 0;
    background: linear-gradient(180deg, rgba(122,31,43,0.04) 0%, transparent 100%);
    transition: height 0.5s var(--ease-out-expo);
}

.pillar-item:hover::before { height: 100%; }

.pillar-item:hover {
    transform: translateY(-10px);
    border-color: rgba(122, 31, 43, 0.15);
    box-shadow: 0 24px 48px rgba(122, 31, 43, 0.08);
}

.pillar-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--rich-navy), var(--prestige-navy));
    color: var(--soft-cream);
    border-radius: 50%;
    margin: 0 auto 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    transition: var(--transition);
}

.pillar-item:hover .pillar-icon {
    background: linear-gradient(135deg, var(--deep-maroon), var(--burnished-crimson));
    transform: scale(1.08);
}

.pillar-icon::after {
    content: '';
    position: absolute;
    width: 115%;
    height: 115%;
    border: 1.5px dashed rgba(11, 30, 63, 0.15);
    border-radius: 50%;
    animation: rotate 12s linear infinite;
}

.pillar-item:hover .pillar-icon::after { border-color: rgba(122, 31, 43, 0.25); }

@keyframes rotate {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

.pillar-icon i { width: 28px; height: 28px; }

.pillar-item h3 {
    font-size: 1.2rem;
    color: var(--prestige-navy);
    margin-bottom: 16px;
}

.pillar-item p {
    font-size: 0.92rem;
    color: rgba(10,15,28,0.6);
    line-height: 1.75;
}

/* ============================================================
   COVERAGE MAP
   ============================================================ */
.map-container {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
}

.zambia-svg {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 60px rgba(0,0,0,0.3));
}

.dot circle:first-child { transition: r 0.3s ease; }
.dot:hover circle:first-child { r: 7; }

.pulse {
    opacity: 0;
    animation: mapPulse 2.5s ease-out infinite;
}

@keyframes mapPulse {
    0%   { opacity: 0.6; r: 8; }
    100% { opacity: 0; r: 28; }
}

/* ============================================================
   INSIGHTS
   ============================================================ */
.insights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.blog-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(11, 30, 63, 0.06);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-color: rgba(122, 31, 43, 0.1);
}

.blog-img {
    height: 200px;
    background: linear-gradient(135deg, var(--prestige-navy) 0%, var(--deep-maroon) 100%);
    position: relative;
    overflow: hidden;
}

.blog-img::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 70%, rgba(201,169,97,0.15) 0%, transparent 60%);
}

.blog-img::after {
    content: 'H';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 6rem;
    font-family: var(--font-heading);
    color: rgba(244, 239, 230, 0.06);
    font-weight: 700;
}

.blog-card-body {
    padding: 32px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.tag {
    display: inline-block;
    background: var(--deep-maroon);
    color: var(--soft-cream);
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 16px;
    width: fit-content;
}

.blog-card h3 {
    font-size: 1.1rem;
    color: var(--prestige-navy);
    margin-bottom: 12px;
    line-height: 1.35;
}

.blog-card p {
    font-size: 0.88rem;
    color: rgba(10,15,28,0.6);
    line-height: 1.7;
    flex: 1;
    margin-bottom: 24px;
}

.read-more {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--deep-maroon);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
    width: fit-content;
}

.read-more:hover { gap: 12px; }

.read-more::after {
    content: '→';
    transition: transform 0.3s ease;
}

.blog-card:hover .read-more::after { transform: translateX(4px); }

/* ============================================================
   ANNOUNCEMENT STRIP
   ============================================================ */
.announcement-strip {
    background: var(--deep-maroon);
    padding: 16px 0;
    overflow: hidden;
}

.marquee-container { overflow: hidden; }

.marquee-content {
    display: flex;
    gap: 80px;
    white-space: nowrap;
    animation: marqueeScroll 22s linear infinite;
}

.marquee-content span {
    color: rgba(244, 239, 230, 0.85);
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    flex-shrink: 0;
}

.marquee-content span::before {
    content: '●';
    color: var(--muted-gold);
    margin-right: 14px;
    font-size: 0.5rem;
    vertical-align: middle;
}

@keyframes marqueeScroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* ============================================================
   CLIENT MARQUEE
   ============================================================ */
.client-marquee {
    overflow: hidden;
    padding: 60px 0;
    border-top: 1px solid rgba(11, 30, 63, 0.06);
    border-bottom: 1px solid rgba(11, 30, 63, 0.06);
}

.marquee-wrapper {
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}

.marquee-track {
    display: flex;
    gap: 64px;
    white-space: nowrap;
    animation: clientScroll 28s linear infinite;
    width: max-content;
}

.marquee-track span {
    font-family: var(--font-heading);
    font-size: 0.88rem;
    font-weight: 600;
    color: rgba(10, 15, 28, 0.35);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    flex-shrink: 0;
    transition: color 0.3s ease;
}

.marquee-track:hover span { color: rgba(10,15,28,0.5); }

@keyframes clientScroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* ============================================================
   CREDENTIALS STRIP
   ============================================================ */
.credentials-strip {
    padding: 60px 0;
    background: var(--prestige-navy);
}

.chips-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}

.chip {
    padding: 10px 22px;
    border-radius: 50px;
    border: 1px solid rgba(201, 169, 97, 0.3);
    color: rgba(244, 239, 230, 0.75);
    background: rgba(244, 239, 230, 0.05);
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    transition: var(--transition);
}

.chip:hover {
    border-color: var(--muted-gold);
    color: var(--muted-gold);
    background: rgba(201, 169, 97, 0.08);
}

/* ============================================================
   PULL QUOTE
   ============================================================ */
.pull-quote {
    background: var(--prestige-navy);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.pull-quote::before {
    content: '"';
    position: absolute;
    top: -5%;
    left: 6%;
    font-size: 18rem;
    color: var(--deep-maroon);
    opacity: 0.12;
    font-family: Georgia, serif;
    line-height: 1;
    pointer-events: none;
}

.pull-quote blockquote {
    font-family: var(--font-heading);
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 700;
    color: var(--soft-cream);
    max-width: 860px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    line-height: 1.4;
}

.pull-quote cite {
    display: block;
    margin-top: 24px;
    font-size: 0.85rem;
    font-family: var(--font-body);
    font-style: normal;
    color: var(--muted-gold);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

/* ============================================================
   CONTACT TABS
   ============================================================ */
.contact-tabs-nav {
    display: flex;
    gap: 0;
    background: rgba(11, 30, 63, 0.05);
    border-radius: 14px;
    padding: 6px;
    margin-bottom: 60px;
    border: 1px solid rgba(11, 30, 63, 0.08);
    width: fit-content;
}

.contact-tab-btn {
    padding: 12px 28px;
    border: none;
    background: transparent;
    border-radius: 10px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(10, 15, 28, 0.55);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.contact-tab-btn.active {
    background: var(--prestige-navy);
    color: var(--soft-cream);
    box-shadow: var(--shadow-sm);
}

.contact-tab-btn i { width: 16px; height: 16px; }

.contact-tab-panel { display: none; }
.contact-tab-panel.active { display: block; }

/* Book a call UI */
.booking-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.calendar-wrap h4 {
    font-size: 0.8rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(10, 15, 28, 0.4);
    margin-bottom: 20px;
    font-weight: 600;
}

.calendar-month-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.calendar-month-header span {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    color: var(--prestige-navy);
    font-weight: 700;
}

.cal-nav {
    background: none;
    border: 1px solid rgba(11, 30, 63, 0.12);
    border-radius: 8px;
    width: 32px;
    height: 32px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--prestige-navy);
    transition: var(--transition);
    font-size: 1rem;
}

.cal-nav:hover { background: var(--prestige-navy); color: var(--soft-cream); }

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

.cal-day-label {
    text-align: center;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(10, 15, 28, 0.35);
    padding: 8px 0;
    font-weight: 600;
}

.cal-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-size: 0.85rem;
    cursor: pointer;
    color: var(--charcoal);
    transition: var(--transition);
    border: 1.5px solid transparent;
}

.cal-day:hover:not(.disabled):not(.empty) {
    background: rgba(122, 31, 43, 0.08);
    border-color: rgba(122, 31, 43, 0.2);
}

.cal-day.selected {
    background: var(--prestige-navy);
    color: var(--soft-cream);
    font-weight: 600;
}

.cal-day.today { font-weight: 700; color: var(--deep-maroon); }

.cal-day.disabled {
    color: rgba(10, 15, 28, 0.2);
    cursor: not-allowed;
}

.cal-day.empty { cursor: default; }

.time-slots h4 {
    font-size: 0.8rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(10, 15, 28, 0.4);
    margin-bottom: 16px;
    font-weight: 600;
}

.slots-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 32px;
}

.slot-btn {
    padding: 12px 16px;
    border: 1.5px solid rgba(11, 30, 63, 0.12);
    border-radius: 10px;
    background: transparent;
    font-family: var(--font-body);
    font-size: 0.88rem;
    color: var(--charcoal);
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.slot-btn:hover:not(.full) {
    border-color: var(--deep-maroon);
    background: rgba(122, 31, 43, 0.05);
}

.slot-btn.selected {
    background: var(--deep-maroon);
    color: var(--soft-cream);
    border-color: var(--deep-maroon);
}

.slot-btn.full {
    color: rgba(10, 15, 28, 0.25);
    border-color: rgba(11, 30, 63, 0.06);
    cursor: not-allowed;
    text-decoration: line-through;
}

/* Walk-in section */
.walkin-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.walkin-info-block {
    background: var(--off-white);
    border-radius: 18px;
    padding: 36px;
    border: 1px solid rgba(11, 30, 63, 0.07);
}

.walkin-info-block h4 {
    font-size: 0.75rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--deep-maroon);
    margin-bottom: 20px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.walkin-info-block h4 i { width: 14px; height: 14px; }

.hours-list { list-style: none; }
.hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid rgba(11, 30, 63, 0.06);
    font-size: 0.88rem;
    color: var(--charcoal);
}

.hours-list li:last-child { border-bottom: none; }
.hours-list .day { color: rgba(10, 15, 28, 0.5); }

/* Confirmation message */
.booking-confirm {
    background: rgba(20, 43, 92, 0.04);
    border: 1px solid rgba(20, 43, 92, 0.1);
    border-radius: 14px;
    padding: 20px 24px;
    margin-top: 24px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.booking-confirm i {
    color: var(--deep-maroon);
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 1px;
}

.booking-confirm p {
    font-size: 0.88rem;
    color: rgba(10, 15, 28, 0.65);
    line-height: 1.6;
    margin: 0;
}

.booking-confirm strong { color: var(--prestige-navy); }

/* Form success state */
.form-success {
    display: none;
    text-align: center;
    padding: 60px 40px;
}

.form-success.visible { display: block; }

.form-success-icon {
    width: 64px;
    height: 64px;
    background: rgba(122, 31, 43, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.form-success-icon i { color: var(--deep-maroon); width: 28px; height: 28px; }

.form-success h3 { color: var(--prestige-navy); margin-bottom: 12px; }
.form-success p  { color: rgba(10, 15, 28, 0.55); font-size: 0.95rem; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-form .section-title { margin-bottom: 48px; }

.form-group {
    position: relative;
    margin-bottom: 36px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 16px 0;
    border: none;
    border-bottom: 1.2px solid rgba(10, 15, 28, 0.1);
    background: transparent;
    font-family: var(--font-body);
    font-size: 1rem;
    outline: none;
    transition: var(--transition);
    color: var(--charcoal);
}

.form-group textarea { resize: none; height: 120px; }

.form-group select {
    appearance: none;
    cursor: pointer;
    color: rgba(10,15,28,0.5);
}

.form-group select:valid { color: var(--charcoal); }

.form-group label {
    position: absolute;
    top: 16px;
    left: 0;
    pointer-events: none;
    transition: var(--transition);
    color: rgba(10, 15, 28, 0.22);
    font-size: 0.95rem;
}

.form-group input:focus,
.form-group textarea:focus { border-bottom-color: var(--deep-maroon); }

.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:focus + label,
.form-group textarea:not(:placeholder-shown) + label {
    top: -12px;
    font-size: 0.78rem;
    color: var(--deep-maroon);
    letter-spacing: 0.04em;
}

/* Focus line animation */
.form-group::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--deep-maroon);
    transition: width 0.4s var(--ease-out-expo);
}

.form-group:focus-within::after { width: 100%; }

.contact-info-card {
    background: var(--rich-navy);
    border: 1px solid rgba(122, 31, 43, 0.2);
    color: var(--soft-cream);
    padding: 56px 48px;
    border-radius: 24px;
    position: sticky;
    top: 100px;
}

.contact-info-card h3 {
    font-size: 1.5rem;
    color: var(--soft-cream);
    margin-bottom: 36px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(244,239,230,0.1);
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 28px;
}

.info-item i {
    color: var(--muted-gold);
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    margin-top: 2px;
}

.info-item span {
    font-size: 0.95rem;
    color: rgba(244, 239, 230, 0.75);
    line-height: 1.6;
}

.placeholder-map {
    width: 100%;
    height: 220px;
    background: rgba(244, 239, 230, 0.04);
    border-radius: 14px;
    margin-top: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px dashed rgba(244, 239, 230, 0.12);
    color: rgba(244, 239, 230, 0.25);
    font-size: 0.82rem;
    letter-spacing: 0.06em;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
    background: var(--charcoal);
    color: var(--soft-cream);
    padding: 80px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
    gap: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(244, 239, 230, 0.06);
}

.footer-brand .logo {
    font-size: 1.25rem;
    margin-bottom: 20px;
    color: var(--soft-cream);
}

.footer-brand .logo img {
    height: 36px;
}

.footer-brand p {
    font-size: 0.88rem;
    color: rgba(244, 239, 230, 0.45);
    line-height: 1.75;
    max-width: 260px;
}

.footer-brand .footer-powered {
    margin-top: 24px;
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(244, 239, 230, 0.25);
}

.footer-brand .footer-powered span {
    color: var(--muted-gold);
    font-weight: 600;
}

.footer h4 {
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--muted-gold);
    margin-bottom: 24px;
    font-weight: 600;
}

.footer ul li { margin-bottom: 14px; }

.footer ul li a {
    font-size: 0.88rem;
    color: rgba(244, 239, 230, 0.5);
    transition: var(--transition);
}

.footer ul li a:hover { color: var(--soft-cream); padding-left: 4px; }

.footer-contact p {
    font-size: 0.88rem;
    color: rgba(244, 239, 230, 0.5);
    margin-bottom: 12px;
    line-height: 1.6;
}

.footer-bottom {
    padding: 24px 0;
    background: rgba(0,0,0,0.2);
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.footer-bottom p {
    font-size: 0.78rem;
    color: rgba(244, 239, 230, 0.28);
    letter-spacing: 0.04em;
}

/* ============================================================
   SCROLL REVEAL — JS-driven classes
   ============================================================ */
[data-reveal] {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}

[data-reveal].revealed {
    opacity: 1;
    transform: translateY(0);
}

[data-reveal="left"] { transform: translateX(-40px); }
[data-reveal="right"] { transform: translateX(40px); }
[data-reveal="left"].revealed,
[data-reveal="right"].revealed { transform: translateX(0); }

/* Stagger delay for children */
[data-stagger] > * { opacity: 0; transform: translateY(30px); }
[data-stagger] > *.revealed {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.7s var(--ease-out-expo), transform 0.7s var(--ease-out-expo);
}

/* ============================================================
   GLASS UTILITY
   ============================================================ */
.glass {
    background: rgba(244, 239, 230, 0.07);
    backdrop-filter: blur(20px) saturate(1.1);
    -webkit-backdrop-filter: blur(20px) saturate(1.1);
    border: 1px solid rgba(244, 239, 230, 0.12);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 48px;
        padding-top: 100px;
    }

    .hero-stats {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 16px;
    }

    .stat-chip { min-width: 150px; flex: 1; }

    .about-grid { grid-template-columns: 1fr; gap: 60px; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .three-pillar { grid-template-columns: repeat(2, 1fr); }
    .insights-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-grid { grid-template-columns: 1fr; gap: 60px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

/* ============================================================
   MOBILE NAV
   ============================================================ */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    z-index: 1100;
    flex-shrink: 0;
}

.hamburger span {
    display: block;
    height: 2px;
    background: var(--soft-cream);
    border-radius: 2px;
    transition: var(--transition);
    transform-origin: center;
}

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

.mobile-nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 999;
    background: var(--prestige-navy);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0;
}

.mobile-nav-overlay.open { display: flex; }

.mobile-nav-overlay ul {
    list-style: none;
    text-align: center;
    margin-bottom: 48px;
}

.mobile-nav-overlay ul li { margin-bottom: 8px; }

.mobile-nav-overlay ul li a {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 8vw, 2.8rem);
    font-weight: 700;
    color: var(--soft-cream);
    opacity: 0.7;
    transition: opacity 0.2s ease;
    display: block;
    padding: 10px 0;
}

.mobile-nav-overlay ul li a:hover,
.mobile-nav-overlay ul li a.active { opacity: 1; }

.mobile-nav-overlay .btn-quote {
    background: var(--deep-maroon);
    padding: 14px 36px;
    border-radius: 50px;
    color: var(--soft-cream);
    font-size: 1rem;
    font-weight: 600;
}

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

    #main-header { padding: 12px 0; }
    .logo { font-size: 1.15rem; gap: 8px; }
    .logo img { height: 32px; }

    .nav-links { display: none; }
    .btn-quote { display: none; }
    .hamburger { display: flex; }

    #hero {
        height: auto;
        min-height: 100svh;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        padding-top: 140px; /* Increased to ensure headline visibility */
        align-items: flex-start;
    }

    .hero-content { 
        padding-top: 20px; 
        padding-bottom: 80px;
        width: 100%;
    }
    
    .hero-text h1 { font-size: clamp(1.8rem, 9vw, 2.8rem); line-height: 1.1; margin-bottom: 20px; }
    .hero-text p { font-size: 1.05rem; margin-bottom: 40px; opacity: 0.9; }

    .hero-features { gap: 20px 28px; margin-top: 40px; }
    .hero-feature { padding-right: 24px; }

    .services-grid { grid-template-columns: 1fr; }
    .three-pillar { grid-template-columns: 1fr; }
    .insights-grid { grid-template-columns: 1fr; }
    .about-counters { grid-template-columns: 1fr 1fr; gap: 32px; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom .container { flex-direction: column; text-align: center; gap: 12px; }

    .section-header { flex-direction: column; align-items: flex-start; gap: 20px; }

    .pull-quote::before { font-size: 10rem; }
    .pull-quote blockquote { font-size: 1.5rem; }

    .booking-grid { grid-template-columns: 1fr; gap: 40px; }
    .walkin-grid { grid-template-columns: 1fr; }

    .contact-tabs-nav {
        overflow-x: auto;
        width: 100%;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 8px;
    }
}

@media (max-width: 480px) {
    .hero-ctas { flex-direction: column; }
    .hero-ctas .btn { width: 100%; justify-content: center; }
    .hero-features { flex-direction: column; gap: 18px; }
    .hero-feature { border-right: none; padding-right: 0; }
    .hero-feature p { max-width: none; }
    .hero-scroll-hint { bottom: 60px; }
}
/* ============================================================
   WHATSAPP FLOAT
   ============================================================ */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: var(--deep-maroon);
    color: var(--soft-cream);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 8px 24px rgba(122, 31, 43, 0.4);
    z-index: 1100;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: translateY(-5px) scale(1.05);
    background-color: var(--burnished-crimson);
    box-shadow: 0 12px 32px rgba(122, 31, 43, 0.5);
}

.whatsapp-float i {
    width: 32px;
    height: 32px;
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }
    .whatsapp-float i {
        width: 26px;
        height: 26px;
    }
}
