﻿@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700;800;900&display=swap');

/* ═══════════════════════════════════════════════════════
   DESIGN TOKENS — CORPORATE RICH NAVY & IVORY (#FFFFF0)
═══════════════════════════════════════════════════════ */
:root {
    --bg-dark:       #002140;       /* Exact rich corporate navy blue from card */
    --bg-deep:       #001730;       /* Contrast dark navy for footer */
    --bg-card:       rgba(255, 255, 240, 0.02);
    --ivory:         #FFFFF0;       /* Ivory text/logo accent */
    --ivory-dim:     rgba(255, 255, 240, 0.6);
    --ivory-ghost:   rgba(255, 255, 240, 0.1);
    --border:        rgba(255, 255, 240, 0.15);
    --border-active: rgba(255, 255, 240, 0.3);
    
    --font-poppins:  'Poppins', sans-serif;
    --safe-x:        10%;
}

/* ═══════════════════════════════════════════════════════
   RESET & DEFAULT SETUP
═══════════════════════════════════════════════════════ */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: default;
}

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

body {
    background: var(--bg-dark);
    color: var(--ivory);
    font-family: var(--font-poppins);
    font-weight: 300;
    line-height: 1.618;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

li {
    list-style: none;
}

/* ═══════════════════════════════════════════════════════
   SCROLLBAR & TEXT SELECTION
═══════════════════════════════════════════════════════ */
::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
    background: var(--border-active);
    border-radius: 10px;
}
::selection {
    background: var(--ivory);
    color: var(--bg-dark);
}

/* ═══════════════════════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════════════════════ */
nav {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    height: 90px;
    padding: 0 var(--safe-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 9999;
    background: rgba(0, 33, 64, 0.85);
    backdrop-filter: blur(25px);
    border-bottom: 1px solid var(--border);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

nav.scrolled {
    height: 75px;
    background: rgba(0, 33, 64, 0.98);
    border-bottom-color: var(--border-active);
}

.nav-back {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    color: var(--ivory-dim);
    border: 1px solid var(--border);
    padding: 0.6rem 1.4rem;
    border-radius: 100px;
    transition: all 0.3s ease;
}
.nav-back:hover {
    color: var(--ivory);
    border-color: var(--ivory);
    background: var(--ivory-ghost);
}

/* Nav logo slots & smooth fade transitions */
.nav-logo-slot {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-logo-svg {
    height: 34px;
    width: auto;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

body.is-scrolled .nav-logo-svg {
    opacity: 1;
    transform: scale(1);
}

.nav-right {
    display: flex;
    gap: 3rem;
}

.nav-link {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    color: var(--ivory-dim);
    text-transform: uppercase;
    transition: all 0.3s ease;
}
.nav-link:hover, .nav-link.active {
    color: var(--ivory);
    letter-spacing: 0.25em;
}

/* ═══════════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════════ */
.hero {
    height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 130px var(--safe-x) 40px;
    position: relative;
    overflow: hidden;
}

.hero-grid {
    display: none;
}

.hero-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 5vh;
}

.hero-nameplate {
    text-align: center;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* ═══════════════════════════════════════════════════════
   EXACT ORIGINAL BRAND LOCKUP
═══════════════════════════════════════════════════════ */
.brand-lockup {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: 2rem;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

body.is-scrolled .brand-lockup {
    opacity: 0.2;
    transform: translateY(-10px);
}

/* Left side text: RIGHT-aligned (flush toward divider), sentence case */
.lockup-text-side {
    display: flex;
    flex-direction: column;
    align-items: flex-end;   /* text hangs right, kissing the divider */
    text-align: right;
    padding-right: 3rem;
}

.brand-word {
    font-size: clamp(3rem, 7vw, 6.2rem);
    font-weight: 600; /* Semi-bold for Ganpati / Logistics */
    line-height: 1.0;
    letter-spacing: -0.01em;
    color: var(--ivory);
}

/* Aadi gets full bold */
.brand-word-bold {
    font-weight: 800;
}

/* 'Private Limited' — follows same right-align as name words */
.brand-sub {
    font-size: clamp(0.85rem, 1.6vw, 1.35rem);
    font-weight: 500;
    color: var(--ivory);
    margin-top: 0.5rem;
}

/* Vertical divider line */
.lockup-divider {
    flex-shrink: 0;
    width: 2px;
    height: clamp(200px, 34vh, 310px);
    background-color: var(--ivory);
    opacity: 0.95;
    align-self: center;
}

/* Right side logo container — LARGE, fills right half */
.lockup-logo-side {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 3rem;
    width: clamp(180px, 28vw, 300px);
    height: clamp(200px, 34vh, 310px);
}

.lockup-logo-side svg {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Rule divider & tagline */
.hero-rule {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin: 1.5rem auto;
    width: 100%;
    max-width: 450px;
}

.hero-rule span:not(.rule-dot) {
    height: 1px;
    flex: 1;
    background: var(--border);
}

.rule-dot {
    font-size: 0.8rem;
    color: var(--ivory);
}

.hero-tagline {
    font-size: clamp(1.05rem, 2.2vw, 1.5rem);
    font-weight: 300;
    line-height: 1.7;
    color: var(--ivory-dim);
    max-width: 750px;
    margin-top: 1rem;
    margin-bottom: 4rem; /* breathe above hero-bottom bar */
}

.hero-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    border-top: 1px solid var(--border);
    padding-top: 1.8rem;
}

.hero-meta {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    color: var(--ivory-dim);
}

.hero-meta .sep {
    margin: 0 1rem;
    color: var(--ivory);
    opacity: 0.5;
}

.scroll-cue {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    color: var(--ivory-dim);
    animation: scroll-pulse 2.2s infinite;
}

@keyframes scroll-pulse {
    0%, 100% { opacity: 0.3; transform: translateY(0); }
    50% { opacity: 0.8; transform: translateY(5px); }
}

/* ═══════════════════════════════════════════════════════
   MARQUEE STRIP
═══════════════════════════════════════════════════════ */
.marquee-strip {
    width: 100%;
    overflow: hidden;
    background: var(--ivory);
    padding: 1.1rem 0;
    position: relative;
    z-index: 200;
}

.marquee-track {
    display: flex;
    align-items: center;
    gap: 3.5rem;
    white-space: nowrap;
    animation: marquee-anim 40s linear infinite;
    width: max-content;
}

.marquee-track span {
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.3em;
    color: var(--bg-dark);
}

.marquee-track .m-sep {
    font-size: 0.9rem;
    opacity: 0.6;
}

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

/* ═══════════════════════════════════════════════════════
   SECTION COMMONS
═══════════════════════════════════════════════════════ */
section {
    padding: 10rem var(--safe-x);
    position: relative;
    border-bottom: 1px solid var(--border);
}

.eyebrow {
    display: block;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.35em;
    color: var(--ivory-dim);
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: clamp(2.4rem, 5.5vw, 4.2rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--ivory);
}

h2 em {
    font-style: italic;
    font-weight: 300;
    opacity: 0.9;
}

.sec-head {
    margin-bottom: 6rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.sec-sub {
    font-size: 1.1rem;
    font-weight: 300;
    color: var(--ivory-dim);
    max-width: 650px;
    margin-top: 1.8rem;
    line-height: 1.8;
}

/* ═══════════════════════════════════════════════════════
   ABOUT SECTION
═══════════════════════════════════════════════════════ */
.section-about {
    background: rgba(255, 255, 240, 0.005);
}

.about-grid {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    gap: 7rem;
    align-items: start;
}

.about-left p {
    font-size: 1.1rem;
    font-weight: 300;
    line-height: 1.85;
    margin-top: 2rem;
    color: var(--ivory-dim);
}

.cred-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 3.5rem;
}

.cred {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    padding: 0.7rem 1.4rem;
    border: 1px solid var(--border);
    border-radius: 4px;
    background: var(--bg-card);
}

.about-right {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 3.5rem;
    border-radius: 4px;
}

.stat-row {
    border-bottom: 1px solid var(--border);
    padding-bottom: 2rem;
}
.stat-row:last-of-type {
    border-bottom: none;
    padding-bottom: 0;
}

.stat-num-wrap {
    display: flex;
    align-items: baseline;
}

.stat-n {
    font-size: 4rem;
    font-weight: 700;
    color: var(--ivory);
    line-height: 1;
}

.stat-sfx {
    font-size: 2.2rem;
    font-weight: 300;
    color: var(--ivory);
    margin-left: 0.2rem;
}

.stat-l {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--ivory-dim);
    margin-top: 0.6rem;
    display: block;
}

.about-md-card {
    background: rgba(255, 255, 240, 0.015);
    border: 1px solid var(--border-active);
    padding: 2.2rem;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1rem;
}

.md-n {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--ivory);
}

.md-t {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--ivory-dim);
}

.md-ph {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--ivory);
    text-decoration: none;
    margin-top: 1rem;
    display: block;
    cursor: pointer;
    transition: opacity 0.3s;
}
.md-ph:hover {
    opacity: 0.8;
}

/* ═══════════════════════════════════════════════════════
   SERVICES SECTION
═══════════════════════════════════════════════════════ */
.section-services {
    background: var(--bg-dark);
}

.svc-list {
    display: flex;
    flex-direction: column;
    border-top: 1px solid var(--border);
}

.svc-row {
    display: grid;
    grid-template-columns: 80px 1fr auto;
    align-items: center;
    padding: 3.5rem 0;
    border-bottom: 1px solid var(--border);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.svc-row:hover {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
    background: var(--bg-card);
    border-bottom-color: var(--border-active);
}

.svc-num {
    font-size: 1.6rem;
    font-weight: 300;
    opacity: 0.25;
}

.svc-body h3 {
    font-size: 1.7rem;
    font-weight: 600;
    color: var(--ivory);
    margin-bottom: 0.6rem;
}

.svc-body h3 em {
    font-size: 0.72rem;
    font-style: normal;
    font-weight: 700;
    letter-spacing: 0.25em;
    padding: 0.4rem 1rem;
    border: 1px solid var(--border);
    border-radius: 100px;
    margin-left: 1.2rem;
    vertical-align: middle;
    color: var(--ivory-dim);
}

.svc-body p {
    font-size: 0.98rem;
    font-weight: 300;
    color: var(--ivory-dim);
    max-width: 850px;
    line-height: 1.8;
}

.svc-arr {
    font-size: 1.6rem;
    opacity: 0.25;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.svc-row:hover .svc-arr {
    opacity: 1;
    transform: translateX(12px);
}

/* ═══════════════════════════════════════════════════════
   CORRIDORS DIRECTORY SECTION
═══════════════════════════════════════════════════════ */
.section-corridors {
    background: var(--bg-dark);
}

.corridors-board {
    display: grid;
    grid-template-columns: 1fr 60px 1fr;
    gap: 4rem;
    align-items: stretch;
    margin-top: 3rem;
}

.corr-col {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 3.5rem;
    display: flex;
    flex-direction: column;
    gap: 3.5rem;
}

.corr-col-head {
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.25em;
    color: var(--ivory);
    border-bottom: 1px solid var(--border-active);
    padding-bottom: 1.8rem;
}

.zone {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}

.zone-label {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--ivory);
    opacity: 0.9;
}

.z-dot {
    width: 6px;
    height: 6px;
    background: var(--ivory-dim);
    border-radius: 50%;
}
.z-dot.hq {
    background: var(--ivory);
    box-shadow: 0 0 10px var(--ivory);
}

.city-list {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
}

.city-list li {
    display: flex;
    flex-direction: column;
    border-left: 2px solid var(--border);
    padding-left: 1rem;
    transition: all 0.3s;
}
.city-list li:hover {
    border-left-color: var(--ivory);
    padding-left: 1.2rem;
}

.city-name {
    font-size: 0.98rem;
    font-weight: 600;
    color: var(--ivory);
}

.city-note {
    font-size: 0.72rem;
    color: var(--ivory-dim);
    margin-top: 0.2rem;
}

.corr-arrow {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--ivory);
    opacity: 0.15;
}

.arr-line {
    width: 1px;
    flex: 1;
    background: var(--border);
    margin: 2rem 0;
}

.corr-note {
    background: rgba(255, 255, 240, 0.01);
    border: 1px dashed var(--border);
    padding: 1.8rem;
    border-radius: 4px;
    font-size: 0.82rem;
    line-height: 1.65;
    color: var(--ivory-dim);
    display: flex;
    gap: 1rem;
    align-items: start;
}
.corr-note svg {
    flex-shrink: 0;
    margin-top: 0.15rem;
}

/* ═══════════════════════════════════════════════════════
   LEADERSHIP QUOTES SECTION (2-Column Grid)
   ═══════════════════════════════════════════════════════ */
.section-md {
    background: var(--bg-dark);
    padding: 10rem var(--safe-x);
    border-top: 1px solid var(--border);
}

.quotes-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: stretch;
}

.quote-card {
    background: rgba(255, 255, 240, 0.015);
    border: 1px solid var(--border-active);
    padding: 3rem 2.5rem;
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.quote-card:hover {
    transform: translateY(-4px);
    border-color: var(--ivory);
}

.md-q-wrap {
    position: relative;
    padding: 1.5rem 0;
    margin-bottom: 2rem;
}

.q-open, .q-close {
    font-size: 7rem;
    font-family: Georgia, 'Times New Roman', serif;
    line-height: 1;
    color: var(--ivory);
    opacity: 0.08;
    position: absolute;
    pointer-events: none;
    user-select: none;
}

.q-open {
    top: -2.5rem;
    left: -1rem;
}

.q-close {
    bottom: -3.5rem;
    right: -1rem;
}

.md-q-wrap blockquote {
    font-size: clamp(1.1rem, 2.2vw, 1.4rem);
    font-weight: 300;
    line-height: 1.6;
    color: var(--ivory);
    text-align: left;
    position: relative;
    z-index: 1;
}

.md-sig {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.3rem;
    border-top: 1px solid var(--border);
    padding-top: 1.5rem;
}

.sig-name {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--ivory);
}

.sig-role {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ivory-dim);
}

@media (max-width: 900px) {
    .quotes-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .quote-card {
        padding: 2.5rem 2rem;
    }
}

/* ═══════════════════════════════════════════════════════
   CONTACT SECTION
═══════════════════════════════════════════════════════ */
.section-contact {
    background: rgba(255, 255, 240, 0.005);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.25fr;
    gap: 7rem;
    align-items: start;
}

.contact-lines {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-top: 4.5rem;
}

.cl {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.cl-lbl {
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.25em;
    color: var(--ivory-dim);
    text-transform: uppercase;
}

.cl-val {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--ivory);
    line-height: 1.55;
}
a.cl-val {
    text-decoration: none;
    cursor: pointer;
    transition: opacity 0.3s;
}
a.cl-val:hover {
    opacity: 0.8;
}

.btn-wa {
    display: inline-flex;
    align-items: center;
    gap: 0.9rem;
    background: #25d366;
    color: #fff;
    padding: 1.1rem 2.5rem;
    border-radius: 100px;
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-decoration: none;
    margin-top: 4rem;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(37,211,102,0.18);
    transition: all 0.3s ease;
}
.btn-wa:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(37,211,102,0.3);
}

.enquiry-form {
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 4rem;
    border-radius: 4px;
}

.enquiry-form h3 {
    font-size: 1.9rem;
    font-weight: 700;
    color: var(--ivory);
    margin-bottom: 2.8rem;
}

.fg {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin-bottom: 1.8rem;
}

.frow {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.8rem;
}

.enquiry-form label {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--ivory-dim);
}

.enquiry-form input,
.enquiry-form select,
.enquiry-form textarea {
    background: rgba(255, 255, 240, 0.02);
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 1.1rem 1.3rem;
    font-family: var(--font-poppins);
    font-size: 0.98rem;
    color: var(--ivory);
    outline: none;
    transition: all 0.3s;
    width: 100%;
}

.enquiry-form select option {
    background: var(--bg-dark);
    color: var(--ivory);
}

.enquiry-form input::placeholder,
.enquiry-form textarea::placeholder {
    color: rgba(255, 255, 240, 0.25);
}

.enquiry-form input:focus,
.enquiry-form select:focus,
.enquiry-form textarea:focus {
    border-color: var(--ivory);
    background: rgba(255, 255, 240, 0.05);
}

.btn-submit {
    width: 100%;
    padding: 1.3rem;
    background: var(--ivory);
    color: var(--bg-dark);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}
.btn-submit:hover {
    background: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255,255,240,0.15);
}

.form-success {
    display: none;
    align-items: center;
    background: rgba(255, 255, 240, 0.04);
    border: 1px solid var(--border-active);
    padding: 1.1rem 1.6rem;
    border-radius: 4px;
    color: var(--ivory);
    font-size: 0.88rem;
    font-weight: 600;
    margin-top: 1.8rem;
}
.form-success.show {
    display: flex;
}

/* ═══════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════ */
.site-footer {
    background: #001326;           /* Very deep corporate navy */
    padding: 7rem var(--safe-x) 4rem;
    border-top: 1px solid var(--border);
}

.footer-top {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 5rem;
    padding-bottom: 5rem;
    border-bottom: 1px solid var(--border);
}

.footer-brand {
    display: flex;
    align-items: flex-start;
    gap: 1.8rem;
}

.footer-logo-svg {
    width: 60px;
    height: auto;
}

.footer-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--ivory);
}

.footer-sub {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--ivory-dim);
    margin-top: 0.3rem;
}

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

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.fc-lbl {
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--ivory-dim);
    margin-bottom: 0.6rem;
}

.footer-col a, .footer-col span:not(.fc-lbl) {
    font-size: 0.88rem;
    text-decoration: none;
    color: var(--ivory-dim);
    transition: all 0.3s;
}

.footer-col a:hover {
    color: var(--ivory);
    padding-left: 0.2rem;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 4rem;
    font-size: 0.72rem;
    color: var(--ivory-dim);
    opacity: 0.6;
}

.footer-fr {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.footer-fr a {
    color: var(--ivory);
    text-decoration: none;
    font-weight: 700;
}

/* ═══════════════════════════════════════════════════════
   SCROLL REVEALS
═══════════════════════════════════════════════════════ */
.reveal-el {
    opacity: 0;
    transform: translateY(35px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-el.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ═══════════════════════════════════════════════════════
   RESPONSIVE OVERRIDES
═══════════════════════════════════════════════════════ */
@media (max-width: 1200px) {
    :root { --safe-x: 6%; }
    .about-grid { grid-template-columns: 1fr; gap: 5rem; }
    .contact-grid { grid-template-columns: 1fr; gap: 5rem; }
    .footer-top { grid-template-columns: 1fr; gap: 5rem; }
    .route-map { height: 320px; }
}

@media (max-width: 768px) {
    .nav-right { display: none; }
    nav { height: 80px; }
    
    .brand-lockup { gap: 1.5rem; flex-direction: row; }
    .lockup-divider { height: 130px; }
    .lockup-logo-side { height: 130px; width: 110px; }
    .brand-word { font-size: 2.4rem; }
    .brand-sub { font-size: 0.8rem; }
    
    .frow { grid-template-columns: 1fr; gap: 0; }
    .footer-cols { grid-template-columns: 1fr; gap: 3rem; }
    .footer-bottom { flex-direction: column; gap: 2rem; text-align: center; }
    .svc-row { grid-template-columns: 1fr; gap: 1.2rem; padding: 2.5rem 0; }
    .svc-arr { display: none; }
    .enquiry-form { padding: 2.5rem; }
    .route-map { height: 260px; }
}

/* ═══════════════════════════════════════════════════════
   MAP CORRIDORS SECTION
═══════════════════════════════════════════════════════ */
.section-map {
    background: var(--bg-dark);
}

.map-wrap {
    background: rgba(255,255,240,0.015);
    border: 1px solid var(--border);
    border-radius: 6px;
    overflow: hidden;
    position: relative;
}

.map-topbar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    padding: 1.5rem 2.5rem;
    border-bottom: 1px solid var(--border);
    background: rgba(255,255,240,0.01);
}

.map-logo-inline {
    height: 36px;
    width: auto;
    opacity: 0.9;
}

.map-topbar-label {
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--ivory-dim);
}

.route-map {
    display: block;
    width: 100%;
    height: 500px;
}

.map-legend {
    display: flex;
    gap: 3rem;
    align-items: center;
    justify-content: center;
    padding: 1.5rem 2.5rem;
    border-top: 1px solid var(--border);
    background: rgba(255,255,240,0.01);
}

.leg-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: var(--ivory-dim);
    text-transform: uppercase;
}

.leg-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
}
.leg-dot.origin  { background: #E8953A; }
.leg-dot.dest    { background: #4DB8CE; }
.leg-dot.hq      { background: #FFFFF0; }

/* ═══════════════════════════════════════════════════════
   DIRECTORS LAYOUT
═══════════════════════════════════════════════════════ */
.directors-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 1rem;
}

.director-card {
    background: rgba(255, 255, 240, 0.015);
    border: 1px solid var(--border-active);
    padding: 2rem;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.dir-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--ivory);
}

.dir-title {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ivory-dim);
}

.dir-contact {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--ivory);
    text-decoration: none;
    margin-top: 0.8rem;
    cursor: pointer;
    transition: opacity 0.3s;
    word-break: break-all;
}
.dir-contact:hover { opacity: 0.75; }

/* ═══════════════════════════════════════════════════════
   MAP & STATE POLYGON OVERRIDES
═══════════════════════════════════════════════════════ */
.state-poly {
    fill: rgba(255, 255, 240, 0.015);
    stroke: rgba(255, 255, 240, 0.08);
    stroke-width: 1.5;
    transition: all 0.4s ease;
}
.state-poly:hover {
    fill: rgba(255, 255, 240, 0.05);
    stroke: rgba(255, 255, 240, 0.3);
}
.map-state-lbl {
    font-family: 'Poppins', sans-serif;
    font-size: 11px;
    font-weight: 700;
    fill: rgba(255, 255, 240, 0.15);
    letter-spacing: 2px;
    pointer-events: none;
    text-anchor: middle;
}

/* ═══════════════════════════════════════════════════════
   DIRECTORIES LAYOUT (CONSIGNORS & CONSIGNEES)
═══════════════════════════════════════════════════════ */
.directories-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 3.5rem;
    margin-top: 4rem;
}
.directory-box {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 3rem;
}
.directory-box h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--ivory);
    margin-bottom: 2rem;
    border-bottom: 1px solid var(--border-active);
    padding-bottom: 1rem;
}
.consignor-cities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    gap: 1.2rem;
}
.consignor-city-card {
    background: rgba(255,255,240,0.01);
    border-left: 2px solid var(--border);
    padding: 0.8rem 1.2rem;
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--ivory);
    transition: all 0.3s;
}
.consignor-city-card:hover {
    border-left-color: #E8953A;
    background: rgba(232, 149, 58, 0.05);
    padding-left: 1.5rem;
}
.consignee-search-input {
    width: 100%;
    background: rgba(255, 255, 240, 0.02);
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 0.9rem 1.2rem;
    color: var(--ivory);
    font-family: var(--font-poppins);
    font-size: 0.9rem;
    margin-bottom: 2rem;
    outline: none;
    transition: border-color 0.3s;
}
.consignee-search-input:focus {
    border-color: var(--ivory);
}
.consignee-list-scroll {
    max-height: 480px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    padding-right: 0.5rem;
}
/* Style scrollbar for consignee list */
.consignee-list-scroll::-webkit-scrollbar {
    width: 4px;
}
.consignee-list-scroll::-webkit-scrollbar-thumb {
    background: var(--border-active);
    border-radius: 10px;
}
.consignee-item-card {
    background: rgba(255,255,240,0.01);
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 1.5rem;
    transition: all 0.3s;
}
.consignee-item-card:hover {
    border-color: #4DB8CE;
    background: rgba(77, 184, 206, 0.03);
}
.consignee-name-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 0.6rem;
}
.consignee-name {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--ivory);
}
.consignee-loc {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #4DB8CE;
}
.consignee-gst {
    font-size: 0.8rem;
    font-family: monospace;
    color: var(--ivory-dim);
}

@media (max-width: 1200px) {
    .directories-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}


