/* =========================================================
   Panutility V2 Homepage Styles
   Extracted from home.blade.php — enhanced & polished
   ========================================================= */

/* ── Custom Properties ─────────────────────────────────── */
:root {
    --primary:        #1a3c7c;
    --primary-light:  #2450a4;
    --secondary:      #e8751a;
    --green:          #2e7d32;
    --green-light:    #388e3c;
    --orange:         #e65100;
    --accent-blue:    #1565c0;
    --light-bg:       #f4f6fb;
    --text-dark:      #1a1a2e;
    --text-muted:     #6c757d;
    --border-color:   #dee2e6;

    --shadow-xs:  0 1px 6px  rgba(0,0,0,.06);
    --shadow-sm:  0 3px 14px rgba(0,0,0,.08);
    --shadow-md:  0 8px 32px rgba(0,0,0,.11);
    --shadow-lg:  0 18px 56px rgba(0,0,0,.14);

    --radius-sm:  8px;
    --radius-md:  14px;
    --radius-lg:  20px;
    --transition: all .32s cubic-bezier(.25,.46,.45,.94);
}

/* ── Reset / Base ───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    overflow-x: hidden;
    scroll-behavior: smooth;
}

a { text-decoration: none !important; }

img { max-width: 100%; height: auto; }

/* ── Animations ─────────────────────────────────────────── */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0);    }
}
@keyframes float {
    0%, 100% { transform: translateY(0);   }
    50%       { transform: translateY(-9px); }
}
@keyframes marquee {
    0%   { transform: translateX(0);    }
    100% { transform: translateX(-50%); }
}
@keyframes pulse-dot {
    0%, 100% { box-shadow: 0 0 0 0 rgba(232,117,26,.45); }
    50%       { box-shadow: 0 0 0 7px rgba(232,117,26,0);  }
}
@keyframes ripple {
    from { transform: scale(0); opacity:.6; }
    to   { transform: scale(2.5); opacity:0; }
}
@keyframes countUp {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ── Section Badge ──────────────────────────────────────── */
.section-badge {
    display: inline-block;
    background: rgba(26,60,124,.10);
    color: var(--primary);
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 1.5px;
    padding: 4px 16px;
    border-radius: 20px;
    margin-bottom: 10px;
}

.section-title {
    font-size: clamp(22px, 3vw, 30px);
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 8px;
    letter-spacing: -.3px;
}
.section-subtitle {
    font-size: 14.5px;
    color: var(--text-muted);
    margin-bottom: 40px;
}

/* ────────────────────────────────────────────────────────
   TOP BAR
   ──────────────────────────────────────────────────────── */
.top-bar {
    background: var(--primary);
    color: #fff;
    font-size: 12.5px;
    padding: 7px 0;
    border-bottom: 2px solid var(--secondary);
}
.top-bar a { color: #d0e4ff; transition: color .2s; }
.top-bar a:hover { color: #fff; }
.top-bar .separator { color: rgba(255,255,255,.35); margin: 0 8px; }
.lang-switcher a {
    color: #cce0ff; font-size: 12px; font-weight: 500;
    padding: 2px 8px; border-radius: 3px; transition: background .2s;
}
.lang-switcher a:hover,
.lang-switcher a.active { background: rgba(255,255,255,.15); color: #fff; }

/* ────────────────────────────────────────────────────────
   MAIN NAVBAR
   ──────────────────────────────────────────────────────── */
.main-navbar {
    background: #fff;
    box-shadow: 0 2px 18px rgba(0,0,0,.09);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 0;
    transition: box-shadow .3s;
}
.main-navbar.scrolled { box-shadow: 0 4px 28px rgba(0,0,0,.13); }

.navbar-brand img { height: 46px; }
.brand-logo-p {
    width: 46px; height: 46px;
    background: var(--primary);
    border-radius: var(--radius-sm);
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 22px; font-weight: 800;
    margin-right: 9px; flex-shrink: 0;
    transition: var(--transition);
}
.navbar-brand:hover .brand-logo-p { background: var(--secondary); }
.brand-text { font-size: 21px; font-weight: 800; color: var(--primary); letter-spacing: -.5px; line-height: 1; }
.brand-text span { display: block; font-size: 10px; font-weight: 400; color: var(--text-muted); letter-spacing: 1px; text-transform: uppercase; }

.main-navbar .nav-link {
    font-size: 13.5px; font-weight: 500;
    color: #333 !important;
    padding: 22px 12px !important;
    border-bottom: 3px solid transparent;
    transition: var(--transition);
}
.main-navbar .nav-link:hover,
.main-navbar .nav-link.active {
    color: var(--primary) !important;
    border-bottom-color: var(--primary);
}

.main-navbar .dropdown-menu {
    border: none;
    box-shadow: var(--shadow-md);
    border-radius: var(--radius-sm);
    margin-top: 0;
    padding: 8px;
    animation: fadeInUp .2s ease forwards;
}
.main-navbar .dropdown-item {
    font-size: 13px; padding: 9px 14px;
    border-radius: 6px; color: #333;
    transition: var(--transition);
}
.main-navbar .dropdown-item:hover { background: var(--light-bg); color: var(--primary); }

/* Navbar Buttons */
.btn-mitra-login,
.btn-new-mitra,
.btn-distributor {
    border-radius: var(--radius-sm);
    font-size: 12.5px; font-weight: 600;
    padding: 9px 17px;
    transition: var(--transition);
    white-space: nowrap;
    border: 2px solid transparent;
    position: relative; overflow: hidden;
    display: inline-block;
}
.btn-mitra-login  { background: var(--primary);   color: #fff !important; border-color: var(--primary);   }
.btn-new-mitra    { background: var(--secondary);  color: #fff !important; border-color: var(--secondary);  }
.btn-distributor  { background: var(--orange);     color: #fff !important; border-color: var(--orange);     }

.btn-mitra-login:hover   { background: #fff; color: var(--primary) !important;   }
.btn-new-mitra:hover     { background: #fff; color: var(--secondary) !important; }
.btn-distributor:hover   { background: #fff; color: var(--orange) !important;    }

/* ────────────────────────────────────────────────────────
   HERO SECTION  (new 2-column layout)
   ──────────────────────────────────────────────────────── */
.hero-section {
    background: var(--light-bg);
    padding: 28px 0 32px;
}

/* LEFT: Bootstrap carousel wrapper */
.hero-carousel-wrap {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    height: 100%;
    min-height: 390px;
}
.hero-carousel-wrap .carousel,
.hero-carousel-wrap .carousel-inner { height: 100%; }
.hero-carousel-wrap .carousel-item { height: 100%; }

/* Individual banner slides */
.hero-banner-slide {
    padding: 36px 30px;
    min-height: 390px;
    height: 100%;
    display: flex;
    align-items: center;
}
.hbs-light { background: linear-gradient(135deg,#e8f0fe 0%,#f0f4ff 60%,#d5e8ff 100%); }
.hbs-dark  { background: linear-gradient(135deg,#1a3c7c 0%,#2450a4 100%); color: #fff; }
.hbs-navy  { background: linear-gradient(135deg,#0d2459 0%,#1a3c7c 100%); color: #fff; }

/* Hero text */
.hero-tag {
    font-size: 10.5px; font-weight: 700; letter-spacing: 1.8px;
    color: var(--primary); background: rgba(26,60,124,.10);
    padding: 4px 12px; border-radius: 20px;
    display: inline-block; margin-bottom: 12px;
}
.hbs-dark  .hero-tag,
.hbs-navy  .hero-tag {
    color: #ffd700; background: rgba(255,215,0,.15);
}
.hero-title {
    font-size: clamp(24px, 3.5vw, 38px);
    font-weight: 800; line-height: 1.1;
    color: var(--primary); margin-bottom: 14px;
}
.hbs-dark  .hero-title,
.hbs-navy  .hero-title { color: #fff; }
.hero-title .hl-orange { color: var(--secondary); }
.hero-title .hl-gold   { color: #ffd700; }
.hero-title .hl-teal   { color: #4dd0e1; }

.hero-features li {
    font-size: 13.5px; font-weight: 500;
    color: #555; margin-bottom: 7px;
    display: flex; align-items: center; gap: 8px;
}
.hbs-dark  .hero-features li,
.hbs-navy  .hero-features li { color: rgba(255,255,255,.85); }
.hero-features .bi-check-circle-fill { color: var(--green); font-size: 15px; }
.hbs-dark  .hero-features .bi-check-circle-fill,
.hbs-navy  .hero-features .bi-check-circle-fill { color: #4dd0e1; }

/* Hero CTA buttons */
.btn-hero-primary,
.btn-hero-white {
    display: inline-flex; align-items: center; gap: 7px;
    padding: 12px 26px;
    border-radius: var(--radius-sm);
    font-size: 14px; font-weight: 700;
    transition: var(--transition);
    border: 2px solid transparent;
    margin-top: 8px;
    position: relative; overflow: hidden;
}
.btn-hero-primary {
    background: var(--secondary); color: #fff;
    border-color: var(--secondary);
}
.btn-hero-primary:hover {
    background: #fff; color: var(--secondary);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(232,117,26,.3);
}
.btn-hero-white {
    background: #fff; color: var(--primary);
    border-color: #fff;
}
.btn-hero-white:hover {
    background: var(--secondary); color: #fff;
    border-color: var(--secondary);
    transform: translateY(-2px);
}

/* PAN Card Mockup (left slide visual) */
.pan-card-mockup {
    background: linear-gradient(135deg, #1a3c7c, #2450a4);
    border-radius: var(--radius-md);
    padding: 18px 16px;
    color: #fff;
    box-shadow: 0 20px 50px rgba(26,60,124,.35);
    font-family: 'Courier New', monospace;
    animation: float 3.5s ease-in-out infinite;
    min-width: 200px;
}
.pan-card-mockup .card-header-bar {
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: 10px;
}
.pan-card-mockup .emblem { font-size: 24px; }
.pan-card-mockup .dept   { font-size: 8px; text-align: right; opacity: .85; line-height: 1.4; }
.pan-card-mockup .pan-title  { font-size: 9.5px; font-weight: 700; letter-spacing: 1px; margin-bottom: 3px; opacity: .9; }
.pan-card-mockup .pan-number { font-size: 18px; font-weight: 700; letter-spacing: 3px; color: #ffd700; margin-bottom: 12px; }
.pan-card-mockup .row-info   { font-size: 9.5px; margin-bottom: 2px; opacity: .8; }
.pan-card-mockup .row-info strong { color: #fff; opacity: 1; }

/* Slide visual for dark slides */
.slide-visual-circle {
    width: 150px; height: 150px;
    border-radius: 50%;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    background: rgba(255,255,255,.1);
    border: 2px solid rgba(255,255,255,.2);
    color: #fff; gap: 6px;
    animation: float 3.5s ease-in-out infinite;
    flex-shrink: 0;
}
.slide-visual-circle .svc-icon { font-size: 48px; }
.slide-visual-circle .svc-label { font-size: 11px; font-weight: 600; letter-spacing: .8px; opacity: .9; text-align: center; }

/* Carousel indicators – custom pill style */
.hero-carousel-wrap .carousel-indicators {
    bottom: 12px; margin-bottom: 0;
}
.hero-carousel-wrap .carousel-indicators [data-bs-target] {
    width: 10px; height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,.5);
    border: none;
    transition: var(--transition);
    opacity: 1;
}
.hero-carousel-wrap .carousel-indicators .active {
    width: 28px; height: 10px;
    border-radius: 5px;
    background: #fff;
}

/* Carousel arrows */
.hero-carousel-wrap .carousel-control-prev,
.hero-carousel-wrap .carousel-control-next {
    width: 40px; height: 40px;
    top: 50%; transform: translateY(-50%);
    background: rgba(255,255,255,.25);
    border-radius: 50%;
    opacity: 1;
    transition: var(--transition);
    align-items: center; justify-content: center;
}
.hero-carousel-wrap .carousel-control-prev { left: 10px; }
.hero-carousel-wrap .carousel-control-next { right: 10px; }
.hero-carousel-wrap .carousel-control-prev:hover,
.hero-carousel-wrap .carousel-control-next:hover {
    background: rgba(255,255,255,.5);
}
.hero-carousel-wrap .carousel-control-prev-icon,
.hero-carousel-wrap .carousel-control-next-icon {
    width: 18px; height: 18px;
    filter: none;
    background-image: none;
    display: flex; align-items: center; justify-content: center;
}

/* RIGHT: PVC + Insurance cards */
.hero-right-col {
    display: flex;
    flex-direction: column;
    gap: 14px;
    height: 100%;
}
.hero-right-card {
    flex: 1;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    cursor: default;
}
.hero-right-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}
.pvc-card-hero  { background: linear-gradient(135deg, #e8f8e8 0%, #f0fff4 100%); }
.ins-card-hero  { background: linear-gradient(135deg, #fff8e1 0%, #fffde7 100%); }

.hero-right-info { padding: 22px 20px; border-right: 1px solid rgba(0,0,0,.06); }

.hero-badge {
    font-size: 10px; font-weight: 700; letter-spacing: 1.5px;
    padding: 3px 12px; border-radius: 20px;
    display: inline-block; margin-bottom: 8px;
    text-transform: uppercase;
}
.hero-badge.green-badge  { background: rgba(46,125,50,.12);  color: var(--green);  }
.hero-badge.orange-badge { background: rgba(230,81,0,.12);   color: var(--orange); }

.hero-right-title {
    font-size: clamp(14px, 2vw, 18px);
    font-weight: 800; line-height: 1.2;
    margin-bottom: 4px;
}
.text-green  { color: var(--green) !important;  }
.text-orange { color: var(--orange) !important; }

.hero-right-sub { font-size: 11px; font-weight: 600; color: var(--text-muted); margin-bottom: 14px; letter-spacing: .8px; }

.btn-hero-green,
.btn-hero-orange {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 9px 18px;
    border-radius: var(--radius-sm);
    font-size: 12px; font-weight: 700;
    transition: var(--transition);
    border: 2px solid transparent;
    position: relative; overflow: hidden;
}
.btn-hero-green  { background: var(--green);  color: #fff; border-color: var(--green);  }
.btn-hero-orange { background: var(--orange); color: #fff; border-color: var(--orange); }
.btn-hero-green:hover  { background: #fff; color: var(--green);  transform: translateY(-1px); box-shadow: 0 6px 18px rgba(46,125,50,.25); }
.btn-hero-orange:hover { background: #fff; color: var(--orange); transform: translateY(-1px); box-shadow: 0 6px 18px rgba(230,81,0,.25); }

/* PVC checklist grid */
.pvc-checklist-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 5px 10px; padding: 16px;
}
.pvc-check-item {
    font-size: 11.5px; font-weight: 500; color: #444;
    display: flex; align-items: center; gap: 6px;
}
.pvc-check-item .bi-check-circle-fill { color: var(--green); font-size: 12px; flex-shrink: 0; }

/* Insurance features + vehicles */
.hero-ins-content { padding: 16px; }
.hero-ins-features li {
    font-size: 12.5px; font-weight: 500; color: #555;
    margin-bottom: 7px; display: flex; align-items: center; gap: 7px;
}
.hero-ins-features .bi-check-circle-fill { color: var(--green); font-size: 13px; }

.ins-vehicle-row {
    display: flex; gap: 12px; margin-top: 10px;
}
.ins-veh-item {
    display: flex; flex-direction: column; align-items: center; gap: 4px;
    background: rgba(230,81,0,.08); border-radius: 8px;
    padding: 8px 14px;
    font-size: 11px; font-weight: 600; color: var(--orange);
    transition: var(--transition);
}
.ins-veh-item:hover { background: var(--orange); color: #fff; transform: translateY(-2px); }
.ins-veh-item i { font-size: 20px; }

/* ────────────────────────────────────────────────────────
   QUICK SERVICES
   ──────────────────────────────────────────────────────── */
.quick-services {
    background: #fff;
    padding: 32px 0 20px;
    border-bottom: 2px solid var(--light-bg);
}
.qs-item {
    text-align: center; padding: 12px 8px;
    cursor: pointer; transition: var(--transition);
    border-radius: var(--radius-sm);
}
.qs-item:hover { transform: translateY(-5px); background: var(--light-bg); }
.qs-icon {
    width: 64px; height: 64px; border-radius: 16px;
    margin: 0 auto 8px;
    display: flex; align-items: center; justify-content: center;
    font-size: 26px; transition: var(--transition);
}
.qs-icon.blue   { background: #e8f0fe; color: var(--primary); }
.qs-icon.green  { background: #e8f5e9; color: var(--green);   }
.qs-icon.orange { background: #fff3e0; color: var(--orange);  }
.qs-icon.indigo { background: #ede7f6; color: #4527a0;        }
.qs-item:hover .qs-icon { box-shadow: var(--shadow-sm); transform: scale(1.08); }
.qs-label { font-size: 11.5px; font-weight: 600; color: #444; line-height: 1.4; }

/* ────────────────────────────────────────────────────────
   SERVICES SECTION
   ──────────────────────────────────────────────────────── */
.services-section {
    background: linear-gradient(180deg, #f4f6fb 0%, #eaecf5 100%);
    padding: 64px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: stretch;
    gap: 24px;
}

/* ── Service Card ─────────────────────── */
.svc-card {
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: 0 2px 24px rgba(26,60,124,.07);
    display: flex;
    flex-direction: column;
    transition: var(--transition);
    overflow: hidden;
    position: relative;
}
.svc-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
}
.svc-card--pan::before { background: linear-gradient(90deg, #1a3c7c, #2450a4); }
.svc-card--pvc::before { background: linear-gradient(90deg, #2e7d32, #43a047); }
.svc-card--ins::before { background: linear-gradient(90deg, #e65100, #f57c00); }

.svc-card:hover {
    box-shadow: 0 16px 48px rgba(26,60,124,.13);
    transform: translateY(-6px);
}

/* Card header */
.svc-card__header {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 26px 26px 18px;
    border-bottom: 1px solid #f0f2f8;
}

.svc-card__icon {
    width: 54px; height: 54px;
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 26px; flex-shrink: 0;
    transition: var(--transition);
}
.svc-card__icon--blue   { background: #e8f0fe; color: var(--primary); }
.svc-card__icon--green  { background: #e8f5e9; color: var(--green); }
.svc-card__icon--orange { background: #fff3e0; color: var(--orange); }
.svc-card:hover .svc-card__icon { transform: scale(1.1) rotate(-4deg); }

.svc-badge {
    display: inline-block;
    font-size: 10px; font-weight: 700; letter-spacing: 1.5px;
    text-transform: uppercase; padding: 2px 10px;
    border-radius: 4px; margin-bottom: 4px;
}
.svc-badge--blue   { background: rgba(26,60,124,.1);  color: var(--primary); }
.svc-badge--green  { background: rgba(46,125,50,.1);  color: var(--green);   }
.svc-badge--orange { background: rgba(230,81,0,.1);   color: var(--orange);  }

.svc-card__title {
    font-size: 15px; font-weight: 800;
    color: var(--text-dark); margin: 0; line-height: 1.2;
}

/* Card body */
.svc-card__body { flex: 1; padding: 18px 26px 12px; }

/* Service lists */
.svc-list { list-style: none; }
.svc-list li {
    display: flex; align-items: center; gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid #f5f5f5;
    font-size: 13.5px; font-weight: 500; color: #4a4a5a;
    cursor: pointer; transition: var(--transition);
}
.svc-list li:last-child { border-bottom: none; }
.svc-list--blue  li:hover { color: var(--primary); padding-left: 5px; }
.svc-list--orange li:hover { color: var(--orange);  padding-left: 5px; }

.svc-li-icon {
    font-size: 16px; flex-shrink: 0;
}
.svc-list--blue  .svc-li-icon { color: var(--primary); }
.svc-list--orange .svc-li-icon { color: var(--orange); }

.svc-li-arrow {
    margin-left: auto; color: #ccc; font-size: 11px;
    transition: var(--transition);
}
.svc-list li:hover .svc-li-arrow { color: inherit; transform: translateX(3px); }

/* PVC Cards Grid */
.pvc-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}
.pvc-item {
    display: flex; flex-direction: column;
    align-items: center; gap: 5px;
    padding: 12px 6px;
    border-radius: 10px;
    background: #f8fafb;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    border: 1.5px solid transparent;
}
.pvc-item:hover {
    background: #e8f5e9;
    border-color: rgba(46,125,50,.2);
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(46,125,50,.12);
}
.pvc-item i { font-size: 22px; color: var(--green); }
.pvc-item span { font-size: 10px; font-weight: 600; color: #555; line-height: 1.3; }

/* Insurance extra features */
.ins-features-row {
    display: flex; flex-wrap: wrap; gap: 6px;
    margin-top: 14px; padding-top: 12px;
    border-top: 1px solid #f5f5f5;
}
.ins-feat {
    display: flex; align-items: center; gap: 5px;
    font-size: 11.5px; font-weight: 600; color: #555;
    background: #fff8f5; border-radius: 20px;
    padding: 4px 10px;
}
.ins-feat .bi-check-circle-fill { color: var(--green); font-size: 12px; }

/* Card CTA */
.svc-card__cta {
    display: flex; align-items: center; justify-content: center; gap: 8px;
    padding: 15px 26px;
    font-size: 12.5px; font-weight: 700; letter-spacing: .4px;
    transition: var(--transition);
    color: #fff; border: none; cursor: pointer;
    text-decoration: none !important;
}
.svc-card__cta i { transition: transform .25s; }
.svc-card__cta:hover i { transform: translateX(4px); }

.svc-card__cta--blue   { background: var(--primary); }
.svc-card__cta--green  { background: var(--green);   }
.svc-card__cta--orange { background: var(--orange);  }

.svc-card__cta--blue:hover   { background: var(--primary-light); color: #fff; }
.svc-card__cta--green:hover  { background: var(--green-light);   color: #fff; }
.svc-card__cta--orange:hover { background: #f57c00;              color: #fff; }

/* ────────────────────────────────────────────────────────
   TRACK APPLICATION
   ──────────────────────────────────────────────────────── */
.track-section { background: #fff; padding: 54px 0; }

.track-card {
    background: linear-gradient(135deg, #1a3c7c 0%, #2450a4 100%);
    border-radius: var(--radius-lg);
    padding: 44px 44px;
    color: #fff;
    position: relative; overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.track-card::before {
    content: ''; position: absolute; top: -60px; right: -60px;
    width: 220px; height: 220px; border-radius: 50%;
    background: rgba(255,255,255,.05);
}
.track-card::after {
    content: ''; position: absolute; bottom: -90px; right: 60px;
    width: 280px; height: 280px; border-radius: 50%;
    background: rgba(255,255,255,.04);
}
.track-card h3  { font-size: 26px; font-weight: 700; margin-bottom: 6px; }
.track-card > p { font-size: 14px; opacity: .85; margin-bottom: 24px; }

.track-form { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 14px; position: relative; z-index: 1; }
.track-form input {
    flex: 1; min-width: 200px;
    padding: 13px 18px; border-radius: var(--radius-sm);
    border: none; font-size: 14px; outline: none;
    font-family: 'Poppins', sans-serif;
    transition: var(--transition);
}
.track-form input:focus { box-shadow: 0 0 0 3px rgba(232,117,26,.4); }

.btn-track {
    background: var(--secondary); color: #fff;
    border: none; padding: 13px 28px;
    border-radius: var(--radius-sm); font-size: 14px; font-weight: 700;
    cursor: pointer; white-space: nowrap; transition: var(--transition);
    font-family: 'Poppins', sans-serif; position: relative; z-index: 1;
}
.btn-track:hover { background: #d06815; transform: translateY(-1px); box-shadow: 0 6px 18px rgba(232,117,26,.4); }

.track-types { display: flex; gap: 22px; flex-wrap: wrap; position: relative; z-index: 1; }
.track-type { display: flex; align-items: center; gap: 7px; font-size: 13.5px; cursor: pointer; }
.track-type input[type=radio] { accent-color: var(--secondary); width: 15px; height: 15px; }

/* ────────────────────────────────────────────────────────
   WHY CHOOSE US
   ──────────────────────────────────────────────────────── */
.why-section { background: var(--light-bg); padding: 64px 0; }

.why-item { text-align: center; padding: 20px 14px; }
.why-icon {
    width: 74px; height: 74px; border-radius: 50%;
    margin: 0 auto 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 28px; transition: var(--transition);
}
.why-item:hover .why-icon { transform: scale(1.12) rotate(-5deg); box-shadow: var(--shadow-sm); }
.why-item h6 { font-size: 13px; font-weight: 700; color: #333; margin: 0; }
.why-item p  { font-size: 11.5px; color: #666; margin: 4px 0 0; }

/* ────────────────────────────────────────────────────────
   STATS
   ──────────────────────────────────────────────────────── */
.stats-section { background: var(--primary); padding: 54px 0; }

.stat-item { text-align: center; color: #fff; padding: 22px; }
.stat-icon   { font-size: 36px; margin-bottom: 10px; color: rgba(255,255,255,.55); }
.stat-number { font-size: clamp(28px, 4vw, 44px); font-weight: 800; color: #ffd700; line-height: 1; animation: countUp .6s ease; }
.stat-label  { font-size: 13.5px; color: rgba(255,255,255,.82); margin-top: 7px; font-weight: 500; }
.stat-divider { width: 1px; background: rgba(255,255,255,.18); align-self: stretch; margin: 10px 0; }

/* ────────────────────────────────────────────────────────
   DISTRIBUTOR
   ──────────────────────────────────────────────────────── */
.distributor-section { background: #fff; padding: 64px 0; }

.distributor-card {
    background: linear-gradient(135deg, #1b5e20 0%, #2e7d32 100%);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 12px 45px rgba(46,125,50,.28);
    transition: var(--transition);
}
.distributor-card:hover { box-shadow: 0 20px 60px rgba(46,125,50,.35); }

.distributor-left { padding: 44px; color: #fff; }
.distributor-left .badge-earn {
    background: #ffd600; color: #333;
    font-size: 12px; font-weight: 700;
    padding: 5px 14px; border-radius: 20px;
    display: inline-block; margin-bottom: 18px;
}
.distributor-left h2 { font-size: 13px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; opacity: .85; margin-bottom: 4px; }
.distributor-left h1 { font-size: clamp(22px, 3vw, 32px); font-weight: 800; margin-bottom: 8px; }
.distributor-left .salary { font-size: 22px; font-weight: 800; color: #ffd600; margin-bottom: 6px; }

.distributor-benefits { list-style: none; }
.distributor-benefits li {
    color: #fff; font-size: 13.5px;
    margin-bottom: 10px; display: flex; align-items: center; gap: 9px;
}
.distributor-benefits .bi-check-circle-fill { color: #ffd600; font-size: 15px; }

.btn-register-dist {
    background: #ffd600; color: #333;
    border: none; padding: 13px 32px;
    border-radius: var(--radius-sm); font-size: 14px; font-weight: 800;
    cursor: pointer; transition: var(--transition);
    display: inline-flex; align-items: center; gap: 7px; margin-top: 8px;
}
.btn-register-dist:hover { background: #f9c800; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,.2); color: #333; }

.distributor-right { padding: 32px; background: rgba(0,0,0,.1); }
.services-badge-list { list-style: none; }
.services-badge-list li {
    background: rgba(255,255,255,.13);
    color: #fff; font-size: 13.5px; font-weight: 600;
    padding: 11px 16px; border-radius: var(--radius-sm); margin-bottom: 9px;
    display: flex; align-items: center; gap: 10px;
    border-left: 3px solid #ffd600;
    transition: var(--transition);
}
.services-badge-list li:hover { background: rgba(255,255,255,.2); transform: translateX(4px); }

/* ────────────────────────────────────────────────────────
   TESTIMONIALS
   ──────────────────────────────────────────────────────── */
.testimonials-section { background: var(--light-bg); padding: 64px 0; }

.testimonial-card {
    background: #fff; border-radius: var(--radius-md);
    padding: 26px; box-shadow: var(--shadow-sm); height: 100%;
    transition: var(--transition);
    border-top: 3px solid transparent;
}
.testimonial-card:hover {
    box-shadow: var(--shadow-md); transform: translateY(-5px);
    border-top-color: var(--primary);
}
.testimonial-stars  { color: #ffc107; font-size: 16px; margin-bottom: 12px; }
.testimonial-text   { font-size: 13.5px; color: #555; line-height: 1.8; margin-bottom: 18px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
    width: 42px; height: 42px; border-radius: 50%;
    background: var(--primary); color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-size: 17px; font-weight: 700; flex-shrink: 0;
}
.testimonial-name { font-size: 14px; font-weight: 600; color: #333; }
.testimonial-role { font-size: 12px; color: var(--text-muted); }

/* ────────────────────────────────────────────────────────
   SUPPORT
   ──────────────────────────────────────────────────────── */
.support-section { background: #fff; padding: 54px 0; }

.support-card {
    border-radius: var(--radius-md); padding: 26px; text-align: center;
    transition: var(--transition); cursor: pointer; height: 100%;
}
.support-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.support-icon {
    width: 66px; height: 66px; border-radius: 50%; margin: 0 auto 16px;
    display: flex; align-items: center; justify-content: center; font-size: 28px;
    transition: var(--transition);
}
.support-card:hover .support-icon { transform: scale(1.1); }
.support-card h6 { font-size: 15px; font-weight: 700; margin-bottom: 7px; }
.support-card p  { font-size: 13px; color: var(--text-muted); margin: 0; line-height: 1.5; }

/* ────────────────────────────────────────────────────────
   PARTNERS
   ──────────────────────────────────────────────────────── */
.partners-section { background: var(--light-bg); padding: 54px 0; }

.partners-overflow { overflow: hidden; }
.partners-track {
    display: flex;
    animation: marquee 30s linear infinite;
    width: max-content;
}
.partners-track:hover { animation-play-state: paused; }
.partner-logo {
    background: #fff; border-radius: 9px;
    padding: 12px 22px; margin: 0 10px;
    box-shadow: var(--shadow-xs);
    display: flex; align-items: center; justify-content: center;
    min-width: 130px; height: 60px;
    font-size: 13px; font-weight: 700; color: #555;
    white-space: nowrap; transition: var(--transition);
}
.partner-logo:hover { box-shadow: var(--shadow-sm); transform: translateY(-2px); }

/* ────────────────────────────────────────────────────────
   FOOTER
   ──────────────────────────────────────────────────────── */
.footer { background: #0d1b3e; color: #ccd6f6; padding: 62px 0 0; }

.footer-brand .brand-text { font-size: 22px; font-weight: 800; color: #fff; }
.footer-brand p { font-size: 13px; color: #8892b0; line-height: 1.8; margin-top: 10px; }
.footer-social a {
    width: 36px; height: 36px; border-radius: 50%;
    background: rgba(255,255,255,.08); color: #ccd6f6;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 16px; margin-right: 6px;
    transition: var(--transition);
}
.footer-social a:hover { background: var(--secondary); color: #fff; transform: translateY(-2px); }

.footer-heading { font-size: 13.5px; font-weight: 700; color: #fff; margin-bottom: 16px; text-transform: uppercase; letter-spacing: 1px; }

.footer-links { list-style: none; }
.footer-links li { margin-bottom: 9px; }
.footer-links a {
    font-size: 13px; color: #8892b0;
    transition: var(--transition);
    display: flex; align-items: center; gap: 6px;
}
.footer-links a::before { content: '›'; font-size: 16px; color: var(--secondary); font-weight: 700; line-height: 1; }
.footer-links a:hover { color: #fff; padding-left: 4px; }

.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 14px; }
.footer-contact-item .bi { font-size: 16px; color: var(--secondary); flex-shrink: 0; margin-top: 2px; }
.footer-contact-item p   { font-size: 13px; color: #8892b0; margin: 0; line-height: 1.6; }
.footer-contact-item a   { color: #8892b0; transition: color .2s; }
.footer-contact-item a:hover { color: #fff; }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.08);
    padding: 18px 0; margin-top: 42px;
}
.footer-bottom p { font-size: 13px; color: #8892b0; margin: 0; }

/* ────────────────────────────────────────────────────────
   SCROLL-TO-TOP
   ──────────────────────────────────────────────────────── */
.scroll-top {
    position: fixed; bottom: 26px; right: 26px;
    width: 46px; height: 46px; border-radius: 50%;
    background: var(--primary); color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-size: 18px; cursor: pointer;
    box-shadow: 0 4px 18px rgba(26,60,124,.4);
    opacity: 0; pointer-events: none;
    transition: var(--transition); z-index: 999; border: none;
    animation: pulse-dot 2s ease infinite;
}
.scroll-top.visible { opacity: 1; pointer-events: auto; }
.scroll-top:hover { background: var(--secondary); transform: translateY(-3px); }

/* ────────────────────────────────────────────────────────
   RESPONSIVE
   ──────────────────────────────────────────────────────── */
@media (max-width: 991px) {
    .hero-right-col { gap: 12px; }
    .hero-carousel-wrap { min-height: 300px; }
    .hero-banner-slide { min-height: 300px; padding: 26px 20px; }
    .track-card { padding: 28px 22px; }
    .distributor-left { padding: 30px; }

    /* Keep 3 columns on tablet - compact padding */
    .services-grid { gap: 14px; }
    .svc-card__header { padding: 18px 16px 14px; gap: 10px; }
    .svc-card__icon { width: 46px; height: 46px; font-size: 22px; border-radius: 10px; }
    .svc-card__body { padding: 14px 16px 10px; }
    .svc-card__title { font-size: 13px; }
    .svc-card__cta { padding: 13px 16px; font-size: 11.5px; }
    .pvc-grid { grid-template-columns: repeat(3, 1fr); gap: 6px; }
    .pvc-item { padding: 10px 4px; }
    .pvc-item i { font-size: 18px; }
    .pvc-item span { font-size: 9px; }
    .svc-list li { font-size: 12.5px; padding: 8px 0; gap: 8px; }
    .svc-li-icon { font-size: 14px; }
    .ins-features-row { gap: 4px; }
    .ins-feat { font-size: 10.5px; padding: 3px 8px; }
}

@media (max-width: 767px) {
    .hero-section { padding: 18px 0 22px; }
    .hero-carousel-wrap { min-height: 260px; border-radius: var(--radius-sm); }
    .hero-banner-slide { min-height: 260px; padding: 22px 18px; }
    .hero-right-col { margin-top: 12px; }
    .stat-item { border-bottom: 1px solid rgba(255,255,255,.1); }
    .distributor-right { display: none; }
    .top-bar .text-end { text-align: left !important; }
    .track-card { padding: 24px 18px; }
    .hero-right-info { border-right: none; border-bottom: 1px solid rgba(0,0,0,.06); }
}

@media (max-width: 640px) {
    /* Stack to single column on small phones */
    .services-grid { grid-template-columns: 1fr; gap: 18px; }
    .svc-card__header { padding: 22px 20px 16px; gap: 14px; }
    .svc-card__icon { width: 52px; height: 52px; font-size: 24px; border-radius: 12px; }
    .svc-card__body { padding: 16px 20px 12px; }
    .svc-card__title { font-size: 15px; }
    .svc-card__cta { padding: 14px 20px; font-size: 12.5px; }
    .pvc-grid { grid-template-columns: repeat(4, 1fr); gap: 8px; }
    .pvc-item { padding: 12px 6px; }
    .pvc-item i { font-size: 22px; }
    .pvc-item span { font-size: 10px; }
    .svc-list li { font-size: 13.5px; padding: 10px 0; gap: 10px; }
    .svc-li-icon { font-size: 16px; }
}

@media (max-width: 575px) {
    .pvc-checklist-grid { grid-template-columns: 1fr 1fr; padding: 12px; }
    .hero-right-info { padding: 16px 14px; }
    .ins-vehicle-row { gap: 8px; }
}
