:root {
    --teal: #00a7b5;
    --teal-dark: #087785;
    --slate: #152532;
    --slate-2: #213747;
    --muted: #f4f7f9;
    --line: #dfe8ed;
    --text: #243644;
    --white: #fff;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: Inter, system-ui, -apple-system, Segoe UI, sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.65;
}
a { text-decoration: none; }
img { max-width: 100%; }

.site-header {
    background: rgba(21, 37, 50, .82);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(255,255,255,.08);
    transition: .25s ease;
}
.site-header.scrolled { background: rgba(21, 37, 50, .97); box-shadow: 0 10px 30px rgba(0,0,0,.16); }
.navbar { min-height: 78px; }
.brand-mark { display: inline-flex; align-items: center; gap: 12px; color: #fff; }
.brand-icon {
    width: 44px; height: 44px; display: grid; place-items: center;
    background: linear-gradient(135deg, var(--teal), #70dbe2);
    color: var(--slate); border-radius: 8px; font-size: 1.45rem;
}
.brand-mark strong { display: block; font-size: 1.15rem; letter-spacing: 0; line-height: 1; color: #fff; }
.brand-mark small { display: block; font-size: .75rem; color: rgba(255,255,255,.74); line-height: 1.2; }
.nav-link { color: rgba(255,255,255,.82) !important; font-weight: 600; font-size: .94rem; }
.nav-link:hover { color: #fff !important; }
.mega-menu {
    width: 100%; left: 0; right: 0; padding: 28px 0; margin-top: 0;
    background: rgba(255,255,255,.98); border: 0; border-radius: 0 0 18px 18px;
}
.mega-link { display: flex; gap: 12px; padding: 14px; border-radius: 8px; color: var(--slate); transition: .2s; }
.mega-link:hover { background: var(--muted); transform: translateY(-2px); }
.mega-link i { color: var(--teal); }
.mega-link small { display: block; color: #607381; font-size: .78rem; margin-top: 4px; }

.btn { border-radius: 6px; font-weight: 800; padding: .78rem 1.15rem; }
.btn-brand { background: linear-gradient(135deg, var(--teal), var(--teal-dark)); color: #fff; border: 0; box-shadow: 0 14px 28px rgba(0,167,181,.24); }
.btn-brand:hover { color: #fff; transform: translateY(-1px); }
.btn-outline-brand { border: 1px solid var(--teal); color: var(--teal-dark); }
.btn-outline-brand:hover { background: var(--teal); color: #fff; }
.btn-whatsapp { background: #19b45b; color: #fff; border: 0; }
.btn-whatsapp:hover { background: #128d47; color: #fff; }

.hero {
    min-height: 100vh; position: relative; overflow: hidden; color: #fff;
    background: var(--slate);
}
.hero-media, .inner-hero::before {
    position: absolute; inset: 0; content: "";
    background: linear-gradient(90deg, rgba(21,37,50,.94), rgba(21,37,50,.7), rgba(0,167,181,.18)),
    url('uploads/truck.png') center/cover;
}
.hero::after {
    content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 120px;
    background: linear-gradient(0deg, #fff, transparent);
}
.hero .container { position: relative; z-index: 2; }
.hero-kicker, .eyebrow, .section-title span, .inner-hero-content span {
    display: inline-flex; color: var(--teal); font-weight: 800; text-transform: uppercase;
    letter-spacing: .08em; font-size: .78rem; margin-bottom: 10px;
}
.hero h1 { font-size: clamp(2.7rem, 6vw, 5.8rem); font-weight: 900; line-height: .98; max-width: 980px; letter-spacing: 0; }
.hero h1 span { color: #7ce5eb; }
.hero p { max-width: 760px; font-size: 1.16rem; color: rgba(255,255,255,.86); margin: 22px 0 30px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.glass {
    background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.18);
    box-shadow: 0 30px 80px rgba(0,0,0,.2); backdrop-filter: blur(18px); border-radius: 8px;
}
.hero-panel { padding: 28px; margin-top: 120px; }
.hero-panel strong { font-size: 1.3rem; }
.mini-stat { display: flex; gap: 14px; align-items: center; margin-top: 18px; }
.mini-stat span { font-size: 2.5rem; font-weight: 900; color: #7ce5eb; }
.mini-stat small { color: rgba(255,255,255,.72); }

.inner-hero {
    min-height: 430px; display: flex; align-items: center; position: relative; color: #fff; overflow: hidden;
}
.inner-hero::before { background-image: linear-gradient(90deg, rgba(21,37,50,.94), rgba(21,37,50,.68)), var(--hero-img); }
.inner-hero-content { position: relative; z-index: 1; padding-top: 90px; max-width: 850px; }
.inner-hero h1 { font-size: clamp(2.4rem, 5vw, 4.5rem); font-weight: 900; letter-spacing: 0; }
.inner-hero p { color: rgba(255,255,255,.82); font-size: 1.15rem; }

.section { padding: 92px 0; }
.muted { background: var(--muted); }
.dark-section { background: var(--slate); color: #fff; }
.dark-section p, .dark-section .section-title p { color: rgba(255,255,255,.74); }
.section-title { max-width: 760px; margin: 0 auto 42px; text-align: center; }
.section-title h2, h2 { color: var(--slate); font-weight: 900; font-size: clamp(2rem, 4vw, 3.1rem); line-height: 1.08; letter-spacing: 0; }
.dark-section h2, .dark-section .section-title h2 { color: #fff; }
.section-title p { color: #607381; margin: 12px auto 0; }
.premium-img { box-shadow: 0 24px 70px rgba(21,37,50,.16); aspect-ratio: 4/3; object-fit: cover; }

.feature-card, .service-card, .team-card, .case-card, .enquiry-card, .tracking-box {
    background: #fff; border: 1px solid var(--line); border-radius: 8px; padding: 28px;
    box-shadow: 0 20px 55px rgba(21,37,50,.06);
}
.feature-card { height: 100%; transition: .25s; }
.feature-card:hover, .service-card:hover, .case-card:hover { transform: translateY(-5px); box-shadow: 0 24px 65px rgba(21,37,50,.12); }
.feature-card i { color: var(--teal); font-size: 2.1rem; }
.feature-card h3, .service-card h3, .team-card h3, .case-card h3 { color: var(--slate); font-size: 1.18rem; font-weight: 850; margin: 18px 0 8px; }
.feature-card p, .service-card p, .team-card p, .case-card p { color: #607381; margin: 0; }

.service-card { display: block; height: 100%; color: var(--text); transition: .25s; position: relative; overflow: hidden; }
.service-card::before { content: ""; position: absolute; inset: 0 0 auto; height: 4px; background: linear-gradient(90deg, var(--teal), #7ce5eb); }
.service-card span { width: 54px; height: 54px; display: grid; place-items: center; color: var(--teal-dark); background: #e7fbfd; border-radius: 8px; font-size: 1.5rem; }
.service-card b { display: inline-block; color: var(--teal-dark); margin-top: 18px; }

.trust-grid, .values-grid, .vehicle-grid, .stats-grid { display: grid; gap: 16px; }
.trust-grid { grid-template-columns: repeat(2, 1fr); margin: 24px 0; }
.trust-grid div, .values-grid div { background: var(--muted); border: 1px solid var(--line); border-radius: 8px; padding: 20px; }
.trust-grid i { color: var(--teal); font-size: 1.5rem; }
.trust-grid b, .trust-grid small { display: block; }
.values-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.industry-strip { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }
.industry-strip span, .vehicle-card {
    border: 1px solid var(--line); border-radius: 6px; padding: 13px 18px; background: #fff; font-weight: 800;
}
.benefit-list { display: grid; gap: 12px; margin-top: 24px; }
.benefit-list span {
    display: flex; align-items: center; gap: 10px; background: var(--muted);
    border: 1px solid var(--line); border-radius: 6px; padding: 13px 16px; font-weight: 750;
}
.benefit-list i { color: var(--teal-dark); font-size: 1.15rem; }
.vehicle-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.vehicle-card { background: rgba(255,255,255,.08); color: #fff; border-color: rgba(255,255,255,.14); }

.process-line { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; margin-bottom: 38px; }
.process-step { border-bottom: 3px solid var(--teal); padding: 18px; background: #fff; box-shadow: 0 12px 35px rgba(21,37,50,.06); border-radius: 8px; }
.process-step span { width: 38px; height: 38px; display: grid; place-items: center; background: var(--slate); color: #fff; border-radius: 50%; font-weight: 900; }
.process-step h3 { margin: 14px 0 0; font-size: 1rem; font-weight: 850; }
.stats-grid { grid-template-columns: repeat(4, 1fr); background: var(--slate); color: #fff; border-radius: 8px; padding: 28px; }
.stats-grid div { text-align: center; }
.stats-grid span { display: block; color: #7ce5eb; font-size: 2.5rem; font-weight: 900; }
.stats-grid small { color: rgba(255,255,255,.72); }

.testimonial-slider { max-width: 880px; margin: auto; background: #fff; border-radius: 8px; padding: 36px; border: 1px solid var(--line); }
.testimonial { display: none; text-align: center; }
.testimonial.active { display: block; }
.testimonial p { font-size: 1.35rem; color: var(--slate); font-weight: 700; }
.split-head { display: flex; justify-content: space-between; align-items: end; gap: 20px; }
.split-head .section-title { text-align: left; margin-left: 0; }
.link-brand { color: var(--teal-dark); font-weight: 900; }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.gallery-grid img, .gallery-item img { width: 100%; aspect-ratio: 1/1; object-fit: cover; border-radius: 8px; }
.gallery-item { position: relative; overflow: hidden; border-radius: 8px; display: block; color: #fff; }
.gallery-item span { position: absolute; left: 14px; bottom: 12px; right: 14px; z-index: 1; font-weight: 850; }
.gallery-item::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(21,37,50,.8), transparent 60%); }

.india-map {
    min-height: 330px; display: grid; place-items: center; background:
    radial-gradient(circle at 50% 42%, rgba(0,167,181,.22), transparent 28%),
    linear-gradient(135deg, #edf7f9, #fff);
    border: 1px solid var(--line); border-radius: 8px; position: relative;
}
.india-map span { font-size: 2rem; color: var(--slate); font-weight: 900; }
.india-map i { position: absolute; color: var(--teal); font-size: 3rem; animation: pulse 1.8s infinite; }
@keyframes pulse { 50% { transform: scale(1.12); opacity: .55; } }

.enquiry-card .form-control, .enquiry-card .form-select, .blog-search .form-control, .tracking-box .form-control {
    min-height: 52px; border-color: var(--line); border-radius: 6px;
}
.faq-section .accordion-item { border-color: var(--line); margin-bottom: 12px; border-radius: 8px; overflow: hidden; }
.accordion-button { font-weight: 850; color: var(--slate); }
.accordion-button:not(.collapsed) { background: #e7fbfd; color: var(--teal-dark); }

.blog-card { display: block; color: var(--text); background: #fff; border: 1px solid var(--line); border-radius: 8px; overflow: hidden; height: 100%; transition: .25s; }
.blog-card:hover { transform: translateY(-5px); box-shadow: 0 22px 55px rgba(21,37,50,.1); }
.blog-card img { width: 100%; aspect-ratio: 16/10; object-fit: cover; }
.blog-card span { display: inline-block; color: var(--teal-dark); font-weight: 850; margin: 20px 20px 4px; }
.blog-card h3, .blog-card p { margin-left: 20px; margin-right: 20px; }
.blog-card h3 { color: var(--slate); font-size: 1.18rem; font-weight: 850; }
.blog-card p { color: #607381; padding-bottom: 20px; }
.narrow-content { max-width: 860px; }
.narrow-content img { border-radius: 8px; }

.filter-tabs { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-bottom: 28px; }
.filter-tabs button { border: 1px solid var(--line); background: #fff; border-radius: 6px; padding: 10px 16px; font-weight: 850; }
.filter-tabs .active { background: var(--slate); color: #fff; }
.lightbox { position: fixed; inset: 0; background: rgba(0,0,0,.86); display: none; align-items: center; justify-content: center; z-index: 2000; padding: 30px; }
.lightbox.open { display: flex; }
.lightbox img { max-height: 86vh; border-radius: 8px; }
.lightbox button { position: absolute; top: 20px; right: 30px; border: 0; background: transparent; color: #fff; font-size: 3rem; }

.status-timeline { display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px; margin: 34px 0; }
.status-timeline div { text-align: center; color: #8a9aa5; }
.status-timeline span { width: 42px; height: 42px; display: grid; place-items: center; margin: 0 auto 8px; border-radius: 50%; border: 2px solid var(--line); font-weight: 900; }
.status-timeline .done { color: var(--teal-dark); }
.status-timeline .done span { background: var(--teal); border-color: var(--teal); color: #fff; }
.shipment-card, .opening { background: var(--muted); border: 1px solid var(--line); border-radius: 8px; padding: 20px; margin-top: 14px; }
.logo-slider { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; }
.logo-slider span { border: 1px solid var(--line); border-radius: 8px; padding: 24px 12px; text-align: center; font-weight: 900; color: var(--slate); background: #fff; }
.map-embed iframe { width: 100%; min-height: 280px; border: 0; border-radius: 8px; }

.footer { background: #101d28; color: #d7e0e5; }
.footer a { display: block; color: #d7e0e5; margin: 8px 0; }
.footer h6 { color: #fff; font-weight: 900; text-transform: uppercase; font-size: .8rem; letter-spacing: .08em; }
.footer-brand { margin-bottom: 12px; }
.socials { display: flex; gap: 10px; }
.socials a { width: 40px; height: 40px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.12); border-radius: 6px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); margin-top: 38px; padding: 20px 0; display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap; color: #91a3af; }
.footer-bottom a { display: inline; color: #d7e0e5; }

.float-action, .back-to-top {
    position: fixed; right: 18px; z-index: 1200; width: 48px; height: 48px; display: grid; place-items: center;
    border-radius: 50%; border: 0; color: #fff; box-shadow: 0 12px 30px rgba(0,0,0,.22);
}
.whatsapp { bottom: 92px; background: #19b45b; }
.call { bottom: 36px; background: var(--teal-dark); }
.back-to-top { right: 76px; bottom: 36px; background: var(--slate); opacity: 0; pointer-events: none; transition: .2s; }
.back-to-top.show { opacity: 1; pointer-events: auto; }
.flash-wrap { position: fixed; top: 92px; right: 18px; z-index: 1500; max-width: 420px; }

.reveal { opacity: 0; transform: translateY(24px); transition: .65s ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 1199px) {
    .navbar-collapse { background: rgba(21,37,50,.98); padding: 18px; border-radius: 8px; margin-top: 12px; }
    .mega-menu { position: static !important; padding: 12px; border-radius: 8px; }
}
@media (max-width: 991px) {
    .section { padding: 70px 0; }
    .process-line, .stats-grid, .gallery-grid, .logo-slider { grid-template-columns: repeat(2, 1fr); }
    .hero h1 { font-size: 3.2rem; }
    .hero p { font-size: 1rem; }
    .split-head { display: block; }
}
@media (max-width: 575px) {
    .navbar { min-height: 70px; }
    .hero h1 { font-size: 2.55rem; }
    .hero-actions .btn { width: 100%; }
    .trust-grid, .values-grid, .vehicle-grid, .process-line, .stats-grid, .gallery-grid, .status-timeline, .logo-slider { grid-template-columns: 1fr; }
    .section-title { text-align: left; }
    .status-timeline div { display: flex; align-items: center; gap: 12px; text-align: left; }
    .status-timeline span { margin: 0; flex: 0 0 42px; }
    .footer-bottom { display: block; }
    .back-to-top { right: 18px; bottom: 150px; }
}
