/* =========================================================
   PRISDANNA EXPRESS — v2
   Design: modern editorial + cinematic motion
   Fonts:  Clash Display + Satoshi
   Theme:  brand colours piped from DB via inline --css-vars
   ========================================================= */

@import url('https://api.fontshare.com/v2/css?f[]=clash-display@400,500,600,700&f[]=satoshi@400,500,700,900&display=swap');

:root {
    /* Brand colour defaults. Overridden inline from DB settings. */
    --brand:        #8B5CF6;
    --brand-deep:   #6D28D9;
    --brand-glow:   rgba(139,92,246,0.15);
    --brand-soft:   rgba(139,92,246,0.06);
    --accent:       #F59E0B;
    --accent-light: #FBBF24;
    --emerald:      #10B981;
    --danger:       #EF4444;
    --ink:          #0D0B1E;
    --ink-light:    #1A1730;
    --white:        #FFFFFF;
    --off-white:    #F8F7FF;
    --cream:        #FAF9F6;
    --gray-100:     #F3F2F8;
    --gray-200:     #E5E3EF;
    --gray-300:     #C9C6D9;
    --gray-400:     #9B97B0;
    --gray-500:     #6E6A85;
    --gray-600:     #4A4660;
    --gray-700:     #2D2A3E;

    --heading: 'Clash Display', 'Inter', system-ui, sans-serif;
    --body:    'Satoshi', 'Inter', system-ui, sans-serif;

    --ease:        cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);

    --radius-xs: 8px;
    --radius-sm: 12px;
    --radius:    16px;
    --radius-lg: 24px;
    --radius-xl: 32px;

    --max-w:  1220px;
    --gap:    24px;

    --shadow-float: 0 24px 72px -12px rgba(13,11,30,0.18);
    --shadow-card:  0 4px 24px rgba(13,11,30,0.06);
    --shadow-soft:  0 2px 12px rgba(13,11,30,0.04);
    --shadow-glow:  0 12px 48px -8px var(--brand-glow);
}

/* ---------- RESETS ---------- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 96px; -webkit-text-size-adjust: 100%; }
body {
    font-family: var(--body);
    color: var(--gray-700);
    background: var(--white);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    min-height: 100vh;
}
img, svg, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; }
input, textarea, select { font: inherit; }
h1,h2,h3,h4,h5,h6 { font-family: var(--heading); font-weight: 600; line-height: 1.12; color: var(--ink); letter-spacing: -0.02em; }
h1 { font-size: clamp(2.4rem, 5vw + 0.5rem, 4.5rem); font-weight: 700; letter-spacing: -0.035em; }
h2 { font-size: clamp(1.8rem, 3vw + 0.5rem, 2.8rem); }
h3 { font-size: clamp(1.3rem, 1.2vw + 1rem, 1.6rem); }
h4 { font-size: 1.15rem; }
p  { color: var(--gray-500); }
::selection { background: var(--brand); color: #fff; }

/* ---------- LAYOUT ---------- */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.section { padding: clamp(64px, 9vw, 120px) 0; position: relative; }
.section.cream { background: var(--cream); }
.section.light { background: var(--off-white); }
.section.dark  { background: var(--ink); color: #fff; }
.section.dark h1, .section.dark h2, .section.dark h3, .section.dark h4 { color: #fff; }
.section.dark p { color: rgba(255,255,255,0.65); }

/* ---------- REVEAL ANIMATIONS ---------- */
.reveal { opacity: 0; transform: translateY(32px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); will-change: opacity, transform; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }
.reveal-delay-5 { transition-delay: 0.40s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
}

/* Floaty orbs — purely decorative, GPU-accelerated */
.orb {
    position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.55;
    pointer-events: none; z-index: 0; will-change: transform;
    animation: floaty 14s ease-in-out infinite;
}
@keyframes floaty {
    0%,100% { transform: translate3d(0,0,0) scale(1); }
    50%     { transform: translate3d(20px,-30px,0) scale(1.08); }
}

/* ---------- NAVIGATION ---------- */
.site-nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    padding: 18px 0; transition: all 0.4s var(--ease);
}
.site-nav::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(to bottom, rgba(13,11,30,0.6), transparent);
    opacity: 1; transition: opacity 0.3s var(--ease); pointer-events: none;
}
.site-nav.scrolled {
    background: rgba(13,11,30,0.85); backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    padding: 12px 0;
    box-shadow: 0 4px 30px rgba(0,0,0,0.18);
}
.site-nav.scrolled::before { opacity: 0; }
.nav-inner {
    position: relative; z-index: 1;
    display: flex; align-items: center; justify-content: space-between;
    max-width: var(--max-w); margin: 0 auto; padding: 0 24px; gap: 24px;
}
.nav-brand { display: inline-flex; align-items: center; gap: 10px; transition: transform 0.3s var(--ease); }
.nav-brand:hover { transform: translateY(-1px); }
.nav-brand .logo-mark {
    width: 42px; height: 42px; border-radius: 12px;
    background: linear-gradient(135deg, var(--brand), var(--brand-deep));
    display: grid; place-items: center;
    font-family: var(--heading); font-weight: 700; font-size: 20px; color: #fff;
    box-shadow: 0 4px 20px var(--brand-glow);
    overflow: hidden;
}
.nav-brand .logo-mark img { width: 100%; height: 100%; object-fit: cover; }
.nav-brand span { font-family: var(--heading); font-weight: 600; font-size: 20px; color: #fff; letter-spacing: -0.01em; }

.nav-links { display: flex; align-items: center; gap: 28px; list-style: none; }
.nav-links a {
    color: rgba(255,255,255,0.75); font-size: 14px; font-weight: 500;
    position: relative; transition: color 0.2s var(--ease);
}
.nav-links a::after {
    content: ''; position: absolute; left: 0; bottom: -6px; width: 0; height: 2px;
    background: var(--accent); transition: width 0.3s var(--ease); border-radius: 2px;
}
.nav-links a:hover, .nav-links a.active { color: #fff; }
.nav-links a.active::after, .nav-links a:hover::after { width: 100%; }

.nav-ctas { display: flex; align-items: center; gap: 10px; }
.nav-cta {
    display: inline-flex; align-items: center; gap: 8px;
    background: linear-gradient(135deg, var(--brand), var(--brand-deep));
    color: #fff; padding: 10px 22px; border-radius: 999px;
    font-size: 13px; font-weight: 600; letter-spacing: 0.01em;
    transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
    box-shadow: 0 6px 20px var(--brand-glow);
    white-space: nowrap;
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 10px 30px var(--brand-glow); }
.nav-cta.ghost {
    background: transparent; border: 1.5px solid rgba(255,255,255,0.18);
    box-shadow: none;
}
.nav-cta.ghost:hover { border-color: rgba(255,255,255,0.4); background: rgba(255,255,255,0.04); box-shadow: none; }

.mobile-toggle { display: none; color: #fff; font-size: 22px; padding: 8px; }

@media (max-width: 980px) {
    .nav-links, .nav-ctas .nav-cta.ghost { display: none; }
    .mobile-toggle { display: inline-flex; }
}
@media (max-width: 560px) {
    .nav-ctas .nav-cta { padding: 8px 16px; font-size: 12px; }
}

/* ---------- MOBILE MENU ---------- */
.mobile-menu {
    position: fixed; inset: 0; background: rgba(13,11,30,0.98); z-index: 200;
    display: flex; flex-direction: column; gap: 4px; padding: 80px 32px 32px;
    transform: translateX(100%); transition: transform 0.4s var(--ease);
    backdrop-filter: blur(20px);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu a {
    color: #fff; font-family: var(--heading); font-size: 26px; font-weight: 500;
    padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.08);
}
.mobile-menu .close-btn {
    position: absolute; top: 24px; right: 24px; width: 44px; height: 44px;
    border-radius: 50%; background: rgba(255,255,255,0.08);
    color: #fff; font-size: 26px; display: grid; place-items: center;
}

/* ---------- BUTTONS ---------- */
.btn-hero {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 16px 32px; border-radius: 999px;
    font-family: var(--body); font-weight: 600; font-size: 14.5px;
    letter-spacing: 0.01em; transition: all 0.35s var(--ease);
    white-space: nowrap;
}
.btn-hero.primary {
    background: linear-gradient(135deg, var(--brand), var(--brand-deep));
    color: #fff; box-shadow: 0 8px 28px var(--brand-glow);
}
.btn-hero.primary:hover { transform: translateY(-2px); box-shadow: 0 14px 40px var(--brand-glow); }
.btn-hero.ghost {
    background: rgba(255,255,255,0.06); color: #fff;
    border: 1.5px solid rgba(255,255,255,0.18);
}
.btn-hero.ghost:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.35); transform: translateY(-2px); }
.btn-hero.accent {
    background: var(--accent); color: var(--ink);
    box-shadow: 0 8px 28px rgba(245,158,11,0.28);
}
.btn-hero.accent:hover { transform: translateY(-2px); box-shadow: 0 14px 40px rgba(245,158,11,0.35); }

/* ---------- HERO ---------- */
.hero {
    position: relative; overflow: hidden;
    background:
        radial-gradient(ellipse 80% 50% at 70% 20%, rgba(139,92,246,0.25), transparent 60%),
        radial-gradient(ellipse 60% 50% at 20% 80%, rgba(245,158,11,0.12), transparent 60%),
        linear-gradient(135deg, var(--ink) 0%, var(--ink-light) 100%);
    color: #fff; padding: 180px 0 120px;
    min-height: 100vh; display: flex; align-items: center;
}
.hero::before {
    content: ''; position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 40%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 40%, transparent 75%);
    pointer-events: none;
}
.hero .container { position: relative; z-index: 1; }
.hero-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 64px; align-items: center; }
@media (max-width: 900px) { .hero-grid { grid-template-columns: 1fr; gap: 48px; } .hero { padding: 140px 0 80px; min-height: auto; } }

.hero-tag {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 8px 16px; border-radius: 999px;
    background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.85); font-size: 13px; font-weight: 500;
    margin-bottom: 28px; backdrop-filter: blur(12px);
}
.hero-tag .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--emerald); box-shadow: 0 0 0 3px rgba(16,185,129,0.25); animation: pulse 1.6s ease-in-out infinite; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.55; } }
.hero h1 { color: #fff; }
.hero h1 .accent { color: var(--accent); }
.hero h1 .accent-v {
    background: linear-gradient(135deg, var(--brand-soft-2, #c4b5fd), #fff);
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent;
}
.hero-desc {
    color: rgba(255,255,255,0.7); font-size: 17px; line-height: 1.65;
    margin: 28px 0 36px; max-width: 520px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* Hero tracker card — glassmorphism */
.hero-visual { position: relative; }
.hero-card {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius-lg);
    padding: 28px; position: relative;
    box-shadow: 0 24px 60px rgba(0,0,0,0.35);
    transform: perspective(1000px) rotateY(-4deg) rotateX(2deg);
    transition: transform 0.8s var(--ease);
}
.hero-card:hover { transform: perspective(1000px) rotateY(-2deg) rotateX(1deg); }
.hero-card-header { display: flex; align-items: center; gap: 14px; margin-bottom: 24px; padding-bottom: 20px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.hero-card-icon {
    width: 48px; height: 48px; border-radius: 14px;
    background: linear-gradient(135deg, var(--brand), var(--brand-deep));
    display: grid; place-items: center; color: #fff; font-size: 20px;
    box-shadow: 0 4px 20px var(--brand-glow);
}
.hero-card-title { font-family: var(--heading); font-size: 17px; color: #fff; font-weight: 600; }
.hero-card-sub { font-size: 12.5px; color: rgba(255,255,255,0.55); margin-top: 2px; }

.hero-track-step { display: grid; grid-template-columns: 24px 1fr auto; gap: 12px; align-items: center; padding: 12px 0; font-size: 13.5px; color: rgba(255,255,255,0.88); }
.hero-track-dot { width: 14px; height: 14px; border-radius: 50%; margin-left: 5px; position: relative; }
.hero-track-dot.green { background: var(--emerald); box-shadow: 0 0 0 4px rgba(16,185,129,0.2); }
.hero-track-dot.violet { background: var(--brand); box-shadow: 0 0 0 4px var(--brand-glow); animation: pulse 1.4s ease-in-out infinite; }
.hero-track-dot.gray  { background: rgba(255,255,255,0.18); }
.hero-track-time { color: rgba(255,255,255,0.5); font-variant-numeric: tabular-nums; font-size: 12.5px; }

.hero-float-badge {
    position: absolute; background: #fff; color: var(--ink);
    padding: 10px 16px; border-radius: 999px; font-size: 13px; font-weight: 600;
    box-shadow: 0 12px 40px rgba(0,0,0,0.25); display: inline-flex; align-items: center;
    animation: floatBadge 4s ease-in-out infinite;
}
.hero-float-badge.top-right { top: -16px; right: -12px; animation-delay: 0.2s; }
.hero-float-badge.bottom-left { bottom: 12px; left: -20px; animation-delay: 1s; }
@keyframes floatBadge { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }

/* ---------- STATS BAR ---------- */
.stats-bar {
    background: #fff;
    border-radius: var(--radius-xl);
    padding: 48px 36px; margin-top: -72px; position: relative; z-index: 2;
    box-shadow: var(--shadow-float);
    border: 1px solid var(--gray-100);
}
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
@media (max-width: 760px) { .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; } .stats-bar { padding: 32px 24px; } }
.stat-item { text-align: center; }
.stat-number {
    font-family: var(--heading); font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700; color: var(--ink); line-height: 1; letter-spacing: -0.03em;
    font-variant-numeric: tabular-nums;
}
.stat-number .highlight { color: var(--brand); }
.stat-label { font-size: 13px; color: var(--gray-500); margin-top: 8px; font-weight: 500; letter-spacing: 0.02em; text-transform: uppercase; }

/* ---------- SECTION HEADERS ---------- */
.section-header { max-width: 680px; margin-bottom: 56px; }
.section-header.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-tag {
    display: inline-flex; align-items: center; gap: 10px;
    color: var(--brand); font-size: 13px; font-weight: 600;
    text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 16px;
}
.section-tag .bar { width: 28px; height: 2px; background: var(--brand); border-radius: 2px; }
.section-header h2 { margin-bottom: 14px; }
.section-header p { font-size: 17px; line-height: 1.7; }

/* ---------- SERVICES / CARDS ---------- */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 960px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .services-grid { grid-template-columns: 1fr; } }

.service-card {
    background: #fff; border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg); padding: 36px 32px;
    transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease), border-color 0.3s var(--ease);
    position: relative; overflow: hidden;
}
.service-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--brand), var(--accent));
    transform: scaleX(0); transform-origin: left; transition: transform 0.45s var(--ease);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-float); border-color: transparent; }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
    width: 56px; height: 56px; border-radius: 16px; display: grid; place-items: center;
    margin-bottom: 22px; font-size: 22px; color: #fff;
    transition: transform 0.4s var(--ease);
}
.service-card:hover .service-icon { transform: rotate(-8deg) scale(1.08); }
.service-icon.v { background: linear-gradient(135deg, var(--brand), var(--brand-deep)); box-shadow: 0 4px 20px var(--brand-glow); }
.service-icon.a { background: linear-gradient(135deg, var(--accent), #D97706); box-shadow: 0 4px 20px rgba(245,158,11,0.25); }
.service-icon.e { background: linear-gradient(135deg, var(--emerald), #059669); box-shadow: 0 4px 20px rgba(16,185,129,0.25); }
.service-card h3 { font-size: 1.3rem; margin-bottom: 10px; }
.service-card p { font-size: 15px; line-height: 1.7; }

/* ---------- ABOUT ---------- */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
@media (max-width: 900px) { .about-grid { grid-template-columns: 1fr; gap: 48px; } }
.about-image {
    position: relative; border-radius: var(--radius-lg); overflow: hidden;
    aspect-ratio: 4/5; background: linear-gradient(135deg, var(--brand-glow), rgba(245,158,11,0.08));
}
.img-placeholder { width: 100%; height: 100%; display: grid; place-items: center; font-size: 120px; color: var(--brand); opacity: 0.5; }
.about-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.about-badge {
    padding: 10px 16px; background: var(--brand-soft); border-radius: 999px;
    font-size: 13px; font-weight: 500; color: var(--ink); display: inline-flex; align-items: center;
}

/* ---------- TEAM ---------- */
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
@media (max-width: 960px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .team-grid { grid-template-columns: 1fr; } }
.team-card {
    text-align: center; background: #fff; padding: 36px 24px 28px;
    border-radius: var(--radius-lg); border: 1px solid var(--gray-200);
    transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.team-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-float); border-color: transparent; }
.team-avatar {
    width: 84px; height: 84px; border-radius: 50%; margin: 0 auto 16px;
    display: grid; place-items: center; color: #fff; font-family: var(--heading);
    font-size: 32px; font-weight: 700; text-transform: uppercase;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08); overflow: hidden;
}
.team-avatar img { width: 100%; height: 100%; object-fit: cover; }
.team-card h4 { margin-bottom: 4px; font-size: 17px; }
.team-card .role { color: var(--gray-400); font-size: 13px; margin-bottom: 12px; }
.stars { display: inline-flex; gap: 3px; color: var(--accent); font-size: 14px; align-items: center; }
.stars .empty { color: var(--gray-200); }
.team-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--gray-100); }
.ts-val { font-family: var(--heading); font-size: 18px; font-weight: 600; color: var(--ink); }
.ts-label { font-size: 11px; color: var(--gray-400); text-transform: uppercase; letter-spacing: 0.08em; margin-top: 2px; }

/* ---------- REVIEWS ---------- */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; background: transparent; }
@media (max-width: 900px) { .reviews-grid { grid-template-columns: 1fr; } }
.review-card {
    background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-lg); padding: 32px;
    backdrop-filter: blur(10px);
    transition: transform 0.4s var(--ease), border-color 0.3s var(--ease);
}
.section.dark .review-card:hover { transform: translateY(-4px); border-color: rgba(255,255,255,0.2); }
.review-stars { margin-bottom: 16px; }
.review-card blockquote {
    font-size: 16px; line-height: 1.7; color: rgba(255,255,255,0.88);
    margin-bottom: 20px; font-style: italic;
}
.review-author { display: flex; align-items: center; gap: 12px; padding-top: 16px; border-top: 1px solid rgba(255,255,255,0.08); }
.review-avatar { width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,0.1); color: #fff; display: grid; place-items: center; font-weight: 700; font-family: var(--heading); }
.review-name { color: #fff; font-weight: 600; font-size: 14.5px; }
.review-meta { font-size: 12px; color: rgba(255,255,255,0.5); margin-top: 2px; }

/* Light-theme review cards */
.reviews-light .review-card { background: #fff; border-color: var(--gray-200); }
.reviews-light .review-card blockquote { color: var(--gray-600); }
.reviews-light .review-avatar { background: var(--brand-soft); color: var(--brand); }
.reviews-light .review-name { color: var(--ink); }
.reviews-light .review-meta { color: var(--gray-400); }
.reviews-light .review-author { border-top-color: var(--gray-100); }

/* ---------- CTA BANNER ---------- */
.cta-banner {
    background:
        radial-gradient(ellipse at 20% 0%, rgba(245,158,11,0.2), transparent 50%),
        radial-gradient(ellipse at 80% 100%, rgba(139,92,246,0.3), transparent 50%),
        linear-gradient(135deg, var(--ink) 0%, var(--ink-light) 100%);
    border-radius: var(--radius-xl); padding: 72px 48px; text-align: center;
    color: #fff; position: relative; overflow: hidden;
    box-shadow: var(--shadow-float);
}
.cta-banner::before {
    content: ''; position: absolute; inset: 0;
    background-image: linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 50px 50px;
    mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%);
}
.cta-banner h2 { color: #fff; margin-bottom: 14px; font-size: clamp(2rem, 4vw, 2.6rem); position: relative; }
.cta-banner p { color: rgba(255,255,255,0.75); font-size: 17px; margin-bottom: 32px; position: relative; }

/* ---------- FOOTER ---------- */
.site-footer { background: var(--ink); color: rgba(255,255,255,0.6); padding: 80px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 48px; margin-bottom: 56px; }
@media (max-width: 820px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand .nav-brand { margin-bottom: 18px; }
.footer-brand p { font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.7; max-width: 320px; }
.footer-col h5 { color: #fff; font-size: 14px; font-weight: 600; margin-bottom: 20px; letter-spacing: 0.02em; }
.footer-col a { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,0.58); font-size: 14px; padding: 6px 0; transition: color 0.2s var(--ease), transform 0.2s var(--ease); }
.footer-col a:hover { color: var(--accent); transform: translateX(4px); }
.footer-socials { display: flex; gap: 10px; margin-top: 16px; }
.footer-socials a {
    width: 36px; height: 36px; border-radius: 50%; padding: 0;
    background: rgba(255,255,255,0.06); display: grid; place-items: center;
    color: rgba(255,255,255,0.7); transition: all 0.3s var(--ease);
}
.footer-socials a:hover { background: var(--brand); color: #fff; transform: translateY(-2px); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08); padding-top: 24px;
    display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px;
    font-size: 12.5px; color: rgba(255,255,255,0.35);
}
.footer-bottom .tridax-trigger { color: var(--accent); font-weight: 600; cursor: pointer; border-bottom: 1px dashed currentColor; }

/* ---------- TRIDAX MODAL ---------- */
.tridax-overlay { position: fixed; inset: 0; background: rgba(13,11,30,0.85); backdrop-filter: blur(12px); display: none; align-items: center; justify-content: center; z-index: 500; padding: 24px; }
.tridax-overlay.open { display: flex; animation: fadein 0.3s var(--ease); }
@keyframes fadein { from { opacity: 0; } to { opacity: 1; } }
.tridax-modal-box {
    background: #fff; border-radius: var(--radius-lg); padding: 40px 32px; max-width: 440px; width: 100%;
    text-align: center; animation: pop 0.4s var(--ease);
}
@keyframes pop { from { transform: scale(0.92); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.tridax-close { position: absolute; top: 16px; right: 16px; width: 36px; height: 36px; border-radius: 50%; background: var(--gray-100); color: var(--gray-500); font-size: 22px; display: grid; place-items: center; }
.tridax-logo { width: 72px; height: 72px; border-radius: 20px; background: linear-gradient(135deg, #7C3AED, #4F46E5); color: #fff; display: grid; place-items: center; font-family: var(--heading); font-size: 26px; font-weight: 700; margin: 0 auto 20px; }
.tridax-modal-box h3 { font-size: 24px; margin-bottom: 6px; }
.tridax-modal-box .tagline { color: var(--gray-400); font-size: 14px; margin-bottom: 24px; }
.tridax-contact { text-align: left; }
.tc-row { display: flex; align-items: flex-start; gap: 14px; padding: 12px 0; border-top: 1px solid var(--gray-100); font-size: 14px; color: var(--gray-600); }
.tc-row:first-of-type { border-top: 0; }
.tc-icon { width: 36px; height: 36px; border-radius: 10px; background: var(--brand-soft); color: var(--brand); display: grid; place-items: center; flex-shrink: 0; }
.tc-row strong { color: var(--ink); }
.tc-row a { color: var(--brand); }

/* ---------- PAGE HEROES ---------- */
.page-hero {
    background: linear-gradient(135deg, var(--ink) 0%, var(--ink-light) 100%);
    color: #fff; padding: 160px 0 80px; position: relative; overflow: hidden;
}
.page-hero::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(ellipse 60% 50% at 70% 30%, var(--brand-glow), transparent 60%);
}
.page-hero::after {
    content: ''; position: absolute; inset: 0;
    background-image: linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 40%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 40%, transparent 75%);
    pointer-events: none;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: #fff; margin-bottom: 18px; max-width: 820px; }
.page-hero p { color: rgba(255,255,255,0.72); font-size: 17px; max-width: 620px; line-height: 1.7; }
.breadcrumb { color: rgba(255,255,255,0.45); font-size: 13px; margin-bottom: 18px; }
.breadcrumb a { color: var(--accent); font-weight: 500; }

/* ---------- CONTACT ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; gap: 48px; } }
.contact-info-card {
    display: flex; align-items: flex-start; gap: 16px; padding: 20px;
    background: #fff; border: 1px solid var(--gray-100); border-radius: var(--radius);
    margin-bottom: 12px; transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.contact-info-card:hover { transform: translateX(4px); box-shadow: var(--shadow-soft); }
.contact-icon { width: 44px; height: 44px; border-radius: 12px; background: var(--brand-soft); color: var(--brand); display: grid; place-items: center; flex-shrink: 0; font-size: 18px; }
.contact-info-card h4 { font-size: 15px; margin-bottom: 4px; }
.contact-info-card p { font-size: 14px; color: var(--gray-500); line-height: 1.5; }
.contact-info-card a { color: var(--brand); }

.contact-form { background: #fff; border: 1px solid var(--gray-200); border-radius: var(--radius-lg); padding: 36px; box-shadow: var(--shadow-card); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--ink); margin-bottom: 8px; }
.form-input {
    width: 100%; padding: 14px 16px; border: 1.5px solid var(--gray-200); border-radius: 12px;
    font-family: var(--body); font-size: 14.5px; background: #fff; color: var(--ink);
    transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.form-input:focus { outline: 0; border-color: var(--brand); box-shadow: 0 0 0 4px var(--brand-glow); }
textarea.form-input { min-height: 120px; resize: vertical; }
.btn-submit {
    display: inline-flex; align-items: center; justify-content: center; gap: 10px; width: 100%;
    background: linear-gradient(135deg, var(--brand), var(--brand-deep)); color: #fff;
    padding: 16px 28px; border-radius: 12px; font-weight: 600; font-size: 14.5px;
    transition: all 0.3s var(--ease); box-shadow: 0 6px 20px var(--brand-glow);
}
.btn-submit:hover { transform: translateY(-2px); box-shadow: 0 12px 32px var(--brand-glow); }
.btn-submit:disabled { opacity: 0.6; transform: none; cursor: not-allowed; }

/* ---------- BLOG ---------- */
.blog-search {
    display: flex; gap: 10px; background: #fff; padding: 6px; border-radius: 999px;
    box-shadow: var(--shadow-soft); border: 1px solid var(--gray-100);
    max-width: 520px; margin-bottom: 48px;
}
.blog-search input {
    flex: 1; padding: 12px 18px; border: 0; font-size: 14px; background: transparent; color: var(--ink);
}
.blog-search input:focus { outline: 0; }
.blog-search button { padding: 10px 20px; border-radius: 999px; background: var(--ink); color: #fff; font-weight: 600; font-size: 13px; }

.blog-categories { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 40px; }
.blog-cat-chip {
    padding: 8px 16px; border-radius: 999px; background: var(--gray-100); color: var(--gray-600);
    font-size: 13px; font-weight: 500; transition: all 0.25s var(--ease);
    border: 1px solid transparent;
}
.blog-cat-chip:hover { background: #fff; border-color: var(--gray-200); }
.blog-cat-chip.active { background: var(--ink); color: #fff; }

.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
@media (max-width: 900px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .blog-grid { grid-template-columns: 1fr; } }
.blog-card {
    background: #fff; border: 1px solid var(--gray-100); border-radius: var(--radius-lg);
    overflow: hidden; transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.3s var(--ease);
    display: flex; flex-direction: column;
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-float); border-color: transparent; }
.blog-thumb {
    aspect-ratio: 16/10; display: grid; place-items: center;
    font-size: 72px; position: relative; overflow: hidden;
}
.blog-thumb.violet  { background: linear-gradient(135deg, rgba(139,92,246,0.18), rgba(109,40,217,0.12)); }
.blog-thumb.amber   { background: linear-gradient(135deg, rgba(245,158,11,0.22), rgba(217,119,6,0.12)); }
.blog-thumb.emerald { background: linear-gradient(135deg, rgba(16,185,129,0.22), rgba(5,150,105,0.12)); }
.blog-cat {
    position: absolute; top: 16px; left: 16px; background: rgba(13,11,30,0.8); color: #fff; padding: 6px 12px;
    border-radius: 999px; font-size: 11px; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase;
    backdrop-filter: blur(8px);
}
.blog-body { padding: 28px; flex: 1; display: flex; flex-direction: column; }
.blog-body h3 { font-size: 1.15rem; margin-bottom: 12px; line-height: 1.35; }
.blog-body h3 a { transition: color 0.2s var(--ease); }
.blog-card:hover .blog-body h3 a { color: var(--brand); }
.blog-body p { font-size: 14.5px; line-height: 1.6; margin-bottom: 20px; flex: 1; }
.blog-meta {
    display: flex; justify-content: space-between; align-items: center; gap: 12px;
    padding-top: 16px; border-top: 1px solid var(--gray-100); font-size: 12.5px; color: var(--gray-400);
}
.blog-meta span { display: inline-flex; align-items: center; gap: 6px; }

/* Blog post page */
.blog-post {
    max-width: 780px; margin: 0 auto;
}
.blog-post-meta { display: flex; gap: 16px; flex-wrap: wrap; color: var(--gray-400); font-size: 14px; margin: 20px 0 36px; }
.blog-post-meta span { display: inline-flex; align-items: center; gap: 6px; }
.blog-post-thumb {
    aspect-ratio: 21/9; display: grid; place-items: center; font-size: 120px;
    border-radius: var(--radius-lg); margin-bottom: 40px;
}
.blog-post-body { font-size: 17px; line-height: 1.85; color: var(--gray-700); }
.blog-post-body h2 { font-size: 1.6rem; margin: 40px 0 18px; }
.blog-post-body h3 { font-size: 1.25rem; margin: 30px 0 14px; }
.blog-post-body p  { margin-bottom: 20px; }
.blog-post-body ul, .blog-post-body ol { margin: 0 0 20px 24px; }
.blog-post-body li { margin-bottom: 10px; }
.blog-post-body a  { color: var(--brand); border-bottom: 1px solid var(--brand-glow); }
.blog-post-body a:hover { background: var(--brand-soft); }
.blog-post-body code {
    background: var(--brand-soft); color: var(--brand); padding: 2px 8px; border-radius: 6px;
    font-family: ui-monospace, "SF Mono", Menlo, monospace; font-size: 0.9em;
}
.blog-post-body blockquote {
    border-left: 3px solid var(--brand); padding: 8px 0 8px 20px; margin: 20px 0;
    color: var(--gray-600); font-style: italic;
}
.share-row { display: flex; gap: 10px; margin-top: 40px; padding-top: 32px; border-top: 1px solid var(--gray-100); }
.share-btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 10px 18px; border-radius: 999px;
    background: var(--gray-100); color: var(--gray-700); font-size: 13px; font-weight: 500;
    transition: all 0.25s var(--ease);
}
.share-btn:hover { background: var(--ink); color: #fff; transform: translateY(-2px); }

/* ---------- TRACKING PAGE ---------- */
.track-hero {
    background: linear-gradient(135deg, var(--ink) 0%, var(--ink-light) 100%);
    color: #fff; padding: 140px 0 80px; position: relative; overflow: hidden;
}
.track-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 60% 50% at 50% 30%, var(--brand-glow), transparent 60%); }
.track-hero .container { position: relative; z-index: 1; text-align: center; }
.track-hero h1 { color: #fff; font-size: clamp(2rem, 4vw, 3.2rem); }
.track-hero p  { color: rgba(255,255,255,0.7); max-width: 540px; margin: 16px auto 40px; font-size: 17px; }

.track-form {
    max-width: 560px; margin: 0 auto; display: flex; gap: 10px;
    background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); padding: 8px;
    border-radius: 999px; backdrop-filter: blur(12px);
}
.track-form input {
    flex: 1; background: transparent; border: 0; padding: 14px 20px; color: #fff;
    font-size: 15px; letter-spacing: 0.02em;
}
.track-form input::placeholder { color: rgba(255,255,255,0.4); }
.track-form input:focus { outline: 0; }
.track-form button {
    padding: 12px 28px; border-radius: 999px; background: var(--accent); color: var(--ink);
    font-weight: 600; font-size: 14px; display: inline-flex; align-items: center; gap: 8px;
    transition: all 0.3s var(--ease);
}
.track-form button:hover { transform: translateY(-1px); background: var(--accent-light); }
@media (max-width: 520px) {
    .track-form { flex-direction: column; padding: 12px; border-radius: 20px; }
    .track-form button { width: 100%; justify-content: center; padding: 14px; }
}

.track-status-card {
    background: #fff; border: 1px solid var(--gray-100); border-radius: var(--radius-xl); padding: 36px;
    box-shadow: var(--shadow-float); margin-top: -50px; position: relative; z-index: 2;
}
.track-code-row { display: flex; justify-content: space-between; align-items: start; flex-wrap: wrap; gap: 16px; margin-bottom: 28px; }
.track-code { font-family: ui-monospace, "SF Mono", Menlo, monospace; font-size: 18px; font-weight: 600; color: var(--ink); }
.track-code-label { font-size: 12px; color: var(--gray-400); text-transform: uppercase; letter-spacing: 0.1em; font-weight: 600; }

.status-pill {
    display: inline-flex; align-items: center; gap: 8px; padding: 10px 18px;
    border-radius: 999px; font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.04em;
}
.status-pill .dot { width: 8px; height: 8px; border-radius: 50%; background: currentColor; box-shadow: 0 0 0 4px currentColor; box-shadow: 0 0 0 4px color-mix(in srgb, currentColor 20%, transparent); }
.status-pill.pending      { background: rgba(245,158,11,0.12); color: #D97706; }
.status-pill.approved     { background: rgba(99,102,241,0.12); color: #4F46E5; }
.status-pill.assigned     { background: rgba(59,130,246,0.12); color: #2563EB; }
.status-pill.picked_up    { background: rgba(245,158,11,0.12); color: #D97706; }
.status-pill.in_transit   { background: var(--brand-soft); color: var(--brand); }
.status-pill.delivered    { background: rgba(16,185,129,0.12); color: #059669; }
.status-pill.failed, .status-pill.cancelled { background: rgba(239,68,68,0.12); color: #DC2626; }
.status-pill.in_transit .dot { animation: pulse 1.4s ease-in-out infinite; }

/* Progress bar */
.track-progress { display: grid; grid-template-columns: repeat(5, 1fr); gap: 4px; margin: 32px 0; position: relative; }
.track-progress::before { content: ''; position: absolute; left: 0; right: 0; top: 18px; height: 2px; background: var(--gray-100); z-index: 0; }
.progress-fill { position: absolute; left: 0; top: 18px; height: 2px; background: linear-gradient(90deg, var(--brand), var(--emerald)); z-index: 1; transition: width 1.2s var(--ease); }
.progress-step { position: relative; text-align: center; z-index: 2; }
.progress-step .sb {
    width: 36px; height: 36px; border-radius: 50%; background: #fff; border: 2px solid var(--gray-200);
    display: grid; place-items: center; margin: 0 auto 10px; font-size: 13px; color: var(--gray-400);
    transition: all 0.4s var(--ease);
}
.progress-step.done .sb { background: var(--emerald); border-color: var(--emerald); color: #fff; }
.progress-step.current .sb { background: var(--brand); border-color: var(--brand); color: #fff; box-shadow: 0 0 0 6px var(--brand-glow); animation: pulse 1.4s ease-in-out infinite; }
.progress-step .lbl { font-size: 11.5px; font-weight: 600; color: var(--gray-500); letter-spacing: 0.03em; text-transform: uppercase; }
.progress-step.done .lbl, .progress-step.current .lbl { color: var(--ink); }
@media (max-width: 640px) { .progress-step .lbl { font-size: 10px; } .progress-step .sb { width: 30px; height: 30px; font-size: 11px; } }

/* Track grid (left: details, right: map) */
.track-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; align-items: start; margin-top: 40px; }
@media (max-width: 900px) { .track-grid { grid-template-columns: 1fr; } }

.track-panel { background: #fff; border: 1px solid var(--gray-100); border-radius: var(--radius-lg); padding: 28px; box-shadow: var(--shadow-soft); }
.track-panel h3 { font-size: 1.1rem; margin-bottom: 20px; display: flex; align-items: center; gap: 8px; }
.track-panel h3 i { color: var(--brand); }

.detail-row { display: grid; grid-template-columns: 120px 1fr; gap: 12px; padding: 12px 0; border-top: 1px solid var(--gray-100); font-size: 14px; }
.detail-row:first-of-type { border-top: 0; padding-top: 0; }
.detail-label { color: var(--gray-400); font-size: 12px; text-transform: uppercase; letter-spacing: 0.05em; font-weight: 600; }
.detail-val { color: var(--ink); font-weight: 500; }

.rider-card { display: flex; align-items: center; gap: 16px; padding: 20px; background: var(--brand-soft); border-radius: var(--radius); margin-top: 20px; }
.rider-avatar { width: 56px; height: 56px; border-radius: 50%; background: linear-gradient(135deg, var(--brand), var(--brand-deep)); color: #fff; display: grid; place-items: center; font-family: var(--heading); font-size: 22px; font-weight: 700; text-transform: uppercase; flex-shrink: 0; overflow: hidden; }
.rider-avatar img { width: 100%; height: 100%; object-fit: cover; }
.rider-name { font-weight: 600; color: var(--ink); }
.rider-meta { font-size: 13px; color: var(--gray-500); margin-top: 2px; }
.rider-call { margin-left: auto; width: 44px; height: 44px; border-radius: 50%; background: var(--brand); color: #fff; display: grid; place-items: center; font-size: 16px; transition: transform 0.3s var(--ease); }
.rider-call:hover { transform: scale(1.08); }

/* Timeline */
.timeline { position: relative; padding-left: 32px; }
.timeline::before { content: ''; position: absolute; left: 12px; top: 6px; bottom: 6px; width: 2px; background: linear-gradient(to bottom, var(--brand), var(--gray-100)); }
.timeline-item { position: relative; padding-bottom: 24px; }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item::before { content: ''; position: absolute; left: -26px; top: 4px; width: 12px; height: 12px; border-radius: 50%; background: #fff; border: 2px solid var(--brand); }
.timeline-item.active::before { background: var(--brand); box-shadow: 0 0 0 4px var(--brand-glow); }
.timeline-title { font-weight: 600; color: var(--ink); font-size: 14.5px; margin-bottom: 2px; }
.timeline-meta { font-size: 12.5px; color: var(--gray-400); }

/* Map wrapper */
.track-map {
    aspect-ratio: 4/5; border-radius: var(--radius-lg); overflow: hidden;
    background: linear-gradient(135deg, var(--brand-soft), rgba(245,158,11,0.06));
    position: relative; min-height: 400px;
}
.map-placeholder { position: absolute; inset: 0; display: grid; place-items: center; color: var(--gray-400); font-size: 14px; text-align: center; padding: 24px; }
#tracking-map { width: 100%; height: 100%; }

.track-empty {
    text-align: center; padding: 72px 24px; background: #fff; border-radius: var(--radius-lg);
    border: 1px solid var(--gray-100); margin-top: -50px; position: relative; z-index: 2; box-shadow: var(--shadow-float);
}
.track-empty i { font-size: 56px; color: var(--gray-200); margin-bottom: 20px; }
.track-empty h2 { font-size: 1.5rem; margin-bottom: 10px; }
.track-empty p { color: var(--gray-500); }

/* ---------- BOOKING PAGE ---------- */
.book-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 40px; align-items: start; }
@media (max-width: 900px) { .book-grid { grid-template-columns: 1fr; } }
.book-form {
    background: #fff; border: 1px solid var(--gray-200); border-radius: var(--radius-lg);
    padding: 40px; box-shadow: var(--shadow-card);
}
.book-section-title { font-size: 13px; color: var(--brand); font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; margin: 24px 0 14px; display: flex; align-items: center; gap: 8px; }
.book-section-title:first-child { margin-top: 0; }
.book-section-title .bar { width: 22px; height: 2px; background: var(--brand); }

.book-summary {
    background: var(--ink); color: #fff; border-radius: var(--radius-lg); padding: 32px;
    position: sticky; top: 100px;
}
.book-summary h3 { color: #fff; font-size: 1.15rem; margin-bottom: 6px; }
.book-summary .sub { color: rgba(255,255,255,0.55); font-size: 13px; margin-bottom: 24px; }
.summary-row { display: flex; justify-content: space-between; padding: 12px 0; border-top: 1px solid rgba(255,255,255,0.08); font-size: 14px; color: rgba(255,255,255,0.8); }
.summary-row:first-of-type { border-top: 0; padding-top: 0; }
.summary-row strong { color: #fff; font-weight: 600; font-family: var(--heading); font-size: 16px; font-variant-numeric: tabular-nums; }
.summary-total { border-top: 1px solid rgba(255,255,255,0.2) !important; padding-top: 18px !important; margin-top: 8px; }
.summary-total span { font-size: 15px; color: #fff; }
.summary-total strong { font-size: 24px; color: var(--accent); }

.pkg-type-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 8px; }
@media (max-width: 560px) { .pkg-type-grid { grid-template-columns: repeat(3, 1fr); } }
.pkg-type {
    border: 1.5px solid var(--gray-200); border-radius: 12px; padding: 14px 8px; text-align: center; cursor: pointer;
    font-size: 12px; color: var(--gray-500); transition: all 0.25s var(--ease); background: #fff;
}
.pkg-type i { display: block; font-size: 22px; margin-bottom: 6px; color: var(--gray-400); }
.pkg-type:hover { border-color: var(--brand); color: var(--ink); }
.pkg-type.sel { background: var(--brand-soft); border-color: var(--brand); color: var(--brand); }
.pkg-type.sel i { color: var(--brand); }

.success-card {
    background: linear-gradient(135deg, rgba(16,185,129,0.08), #fff);
    border: 1px solid rgba(16,185,129,0.3); border-radius: var(--radius-lg); padding: 40px; text-align: center;
}
.success-card .sc-icon { width: 72px; height: 72px; border-radius: 50%; background: var(--emerald); color: #fff; margin: 0 auto 20px; display: grid; place-items: center; font-size: 30px; animation: pop 0.5s var(--ease); }
.success-card h2 { margin-bottom: 10px; }
.success-code {
    display: inline-flex; align-items: center; gap: 10px; margin: 24px 0;
    padding: 14px 24px; background: #fff; border: 1.5px dashed var(--brand); border-radius: 12px;
    font-family: ui-monospace, Menlo, monospace; font-size: 18px; font-weight: 700; color: var(--brand);
}

/* ---------- ZONES / PRICING TABLE ---------- */
.zones-table { background: #fff; border-radius: var(--radius-lg); border: 1px solid var(--gray-100); overflow: hidden; box-shadow: var(--shadow-soft); }
.zones-head, .zones-row { display: grid; grid-template-columns: 1.2fr 2fr 1fr 1fr; gap: 16px; padding: 16px 24px; align-items: center; font-size: 14px; }
.zones-head { background: var(--off-white); font-size: 12px; text-transform: uppercase; letter-spacing: 0.05em; color: var(--gray-500); font-weight: 700; }
.zones-row { border-top: 1px solid var(--gray-100); }
.zones-row strong { font-family: var(--heading); font-weight: 600; color: var(--ink); }
.zones-row .desc { color: var(--gray-500); font-size: 13px; }
.zones-row .price { font-family: var(--heading); color: var(--brand); font-weight: 600; font-variant-numeric: tabular-nums; }
@media (max-width: 700px) {
    .zones-head { display: none; }
    .zones-row { grid-template-columns: 1fr; gap: 6px; padding: 20px; }
    .zones-row .desc, .zones-row .price { font-size: 13px; }
}

/* ---------- STEPS TIMELINE ---------- */
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
@media (max-width: 900px) { .steps-grid { grid-template-columns: repeat(2, 1fr); } }
.step-box { text-align: center; padding: 32px 20px; position: relative; }
.step-icon {
    width: 64px; height: 64px; border-radius: 50%; background: var(--brand-soft);
    display: grid; place-items: center; margin: 0 auto 16px; font-size: 24px; color: var(--brand);
    position: relative;
}
.step-num {
    position: absolute; top: -4px; right: -4px; width: 24px; height: 24px; border-radius: 50%;
    background: var(--accent); color: var(--ink); font-size: 12px; font-weight: 800; display: grid; place-items: center;
}
.step-box h4 { font-size: 17px; margin-bottom: 8px; }
.step-box p  { font-size: 14px; color: var(--gray-500); line-height: 1.6; }

/* ---------- UTILITY ---------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0 !important; }
.mt-2 { margin-top: 16px; } .mt-4 { margin-top: 32px; }
.mb-0 { margin-bottom: 0 !important; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
.flash { padding: 14px 20px; border-radius: 12px; margin-bottom: 16px; font-size: 14px; font-weight: 500; }
.flash.success { background: rgba(16,185,129,0.1); color: #059669; border: 1px solid rgba(16,185,129,0.2); }
.flash.error   { background: rgba(239,68,68,0.1); color: #DC2626; border: 1px solid rgba(239,68,68,0.2); }

/* Scroll-to-top */
.scroll-top {
    position: fixed; bottom: 28px; right: 28px; width: 48px; height: 48px; border-radius: 50%;
    background: var(--ink); color: #fff; display: grid; place-items: center; font-size: 18px;
    box-shadow: var(--shadow-float); opacity: 0; transform: translateY(20px); pointer-events: none;
    transition: all 0.35s var(--ease); z-index: 99;
}
.scroll-top.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.scroll-top:hover { background: var(--brand); transform: translateY(-4px); }

/* =========================================================
   PAGE STYLES EXTENSION — covers about/services/team/reviews/
   blog/post/contact/track/book. Merges cleanly with v1 above.
   ========================================================= */

/* ---------- SHARED TYPOGRAPHY ---------- */
.accent   { color: var(--accent); }
.accent-v { color: var(--brand); font-style: italic; }
.lede { font-size: 1.15rem; color: var(--gray-600); line-height: 1.7; margin-bottom: 16px; }
.eyebrow {
    display: inline-flex; align-items: center; gap: 10px;
    font-size: 12px; font-weight: 700; letter-spacing: 0.15em;
    text-transform: uppercase; color: var(--brand);
    padding: 6px 14px; border-radius: 100px;
    background: var(--brand-soft); border: 1px solid var(--brand-glow);
    margin-bottom: 18px;
}

/* ---------- SECTION HELPERS ---------- */
.section-muted { background: var(--cream); }
.section-head { max-width: 720px; margin: 0 auto 56px; text-align: center; }
.section-head h2 { margin-bottom: 14px; }
.section-sub { font-size: 1.05rem; color: var(--gray-500); line-height: 1.7; max-width: 640px; margin: 0 auto; }

/* ---------- PAGE HERO (override for inner pages) ---------- */
.page-hero {
    position: relative;
    background: linear-gradient(135deg, var(--ink) 0%, #1F1C3A 50%, var(--brand-deep) 100%);
    padding: 140px 0 80px;
    overflow: hidden;
}
.page-hero.compact { padding: 120px 0 60px; }
.page-hero-bg {
    position: absolute; inset: 0;
    background-image:
        radial-gradient(circle at 85% 15%, var(--brand-glow), transparent 50%),
        radial-gradient(circle at 15% 85%, rgba(245,158,11,0.12), transparent 50%);
    pointer-events: none;
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero-desc {
    color: rgba(255,255,255,0.72); font-size: 1.1rem;
    max-width: 640px; line-height: 1.7; margin-top: 18px;
}
.breadcrumbs {
    color: rgba(255,255,255,0.45); font-size: 13px;
    margin-bottom: 24px; display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
}
.breadcrumbs a { color: var(--accent); font-weight: 500; transition: color .2s; }
.breadcrumbs a:hover { color: #fff; }
.breadcrumbs i { font-size: 9px; opacity: 0.5; }
.breadcrumbs.light span { color: rgba(255,255,255,0.85); }

/* ---------- EMPTY STATE ---------- */
.empty-state {
    text-align: center; padding: 80px 24px; max-width: 520px; margin: 0 auto;
}
.empty-state i {
    font-size: 64px; color: var(--gray-300); margin-bottom: 24px; display: block;
}
.empty-state h3 { margin-bottom: 12px; }
.empty-state p { margin-bottom: 24px; color: var(--gray-500); }

/* ---------- ABOUT PAGE ---------- */
.about-grid {
    display: grid; grid-template-columns: 1.2fr 1fr; gap: 60px; align-items: center;
}
.about-badges {
    display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px;
}
.badge-pill {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 8px 16px; background: var(--brand-soft);
    border: 1px solid var(--brand-glow); border-radius: 100px;
    font-size: 13px; font-weight: 600; color: var(--brand-deep);
}
.badge-pill i { font-size: 11px; }
.about-stats-card {
    background: linear-gradient(135deg, var(--ink) 0%, var(--brand-deep) 100%);
    border-radius: var(--radius-lg); padding: 40px;
    display: grid; grid-template-columns: 1fr 1fr; gap: 32px;
    box-shadow: var(--shadow-float);
    position: relative; overflow: hidden;
}
.about-stats-card::before {
    content: ''; position: absolute; top: -50%; right: -30%;
    width: 400px; height: 400px; border-radius: 50%;
    background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
    opacity: 0.25;
}
.astat { position: relative; z-index: 1; }
.astat-num {
    font-family: var(--heading); font-size: 2.8rem; font-weight: 700;
    color: #fff; line-height: 1; margin-bottom: 6px; letter-spacing: -0.03em;
}
.astat-label { color: rgba(255,255,255,0.7); font-size: 13px; font-weight: 500; }

/* VALUES */
.values-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}
.value-card {
    background: #fff; border-radius: var(--radius);
    padding: 32px; border: 1px solid var(--gray-200);
    transition: all .3s var(--ease);
}
.value-card:hover {
    transform: translateY(-4px);
    border-color: var(--brand-glow);
    box-shadow: var(--shadow-card);
}
.value-icon {
    width: 52px; height: 52px; border-radius: 14px;
    display: grid; place-items: center; margin-bottom: 20px;
    background: linear-gradient(135deg, var(--brand) 0%, var(--brand-deep) 100%);
    color: #fff; font-size: 22px;
}
.value-card h3 { margin-bottom: 10px; font-size: 1.25rem; }
.value-card p { font-size: 15px; line-height: 1.65; }

/* COVERAGE */
.coverage-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}
.coverage-card {
    background: #fff; border: 1px solid var(--gray-200);
    border-radius: var(--radius); padding: 28px;
    transition: all .3s var(--ease); position: relative;
}
.coverage-card:hover {
    border-color: var(--brand); transform: translateY(-3px);
    box-shadow: var(--shadow-card);
}
.coverage-icon {
    width: 44px; height: 44px; border-radius: 12px;
    display: grid; place-items: center; margin-bottom: 16px;
    background: var(--brand-soft); color: var(--brand);
}
.coverage-card h3 { margin-bottom: 6px; font-size: 1.2rem; }
.coverage-card p { font-size: 14px; margin-bottom: 14px; min-height: 42px; }
.coverage-meta {
    padding-top: 14px; border-top: 1px solid var(--gray-200);
    font-size: 13px; color: var(--gray-500);
}
.coverage-meta strong { color: var(--ink); font-weight: 700; }

/* ---------- SERVICES PAGE ---------- */
.service-meta {
    display: flex; justify-content: space-between; align-items: center;
    margin-top: 20px; padding-top: 18px; border-top: 1px solid var(--gray-200);
    font-size: 14px;
}
.service-meta > span { font-weight: 700; color: var(--ink); }
.service-meta a {
    color: var(--brand); font-weight: 600; display: inline-flex;
    align-items: center; gap: 6px; transition: gap .25s;
}
.service-meta a:hover { gap: 10px; }

.zones-table-wrap {
    border-radius: var(--radius); overflow: hidden;
    border: 1px solid var(--gray-200); background: #fff;
    box-shadow: var(--shadow-soft);
}
.zones-table {
    width: 100%; border-collapse: collapse; font-size: 15px;
}
.zones-table thead th {
    background: var(--cream); padding: 18px 20px; text-align: left;
    font-weight: 700; color: var(--ink); font-size: 13px;
    text-transform: uppercase; letter-spacing: 0.08em;
    border-bottom: 1px solid var(--gray-200);
}
.zones-table tbody td {
    padding: 18px 20px; border-bottom: 1px solid var(--gray-100);
    color: var(--gray-700);
}
.zones-table tbody tr:last-child td { border-bottom: 0; }
.zones-table tbody tr:hover { background: var(--brand-soft); }
.zones-table tbody td:first-child { font-weight: 700; color: var(--ink); }
.pricing-note {
    text-align: center; margin-top: 24px; color: var(--gray-500); font-size: 15px;
}
.pricing-note a { color: var(--brand); font-weight: 600; text-decoration: underline; }

/* ---------- TEAM PAGE ---------- */
.team-role {
    color: var(--gray-500); font-size: 13px; font-weight: 500;
    margin-top: 4px; margin-bottom: 14px;
}
.team-avatar-placeholder {
    width: 100%; height: 100%; display: grid; place-items: center;
    background: linear-gradient(135deg, var(--brand) 0%, var(--brand-deep) 100%);
    color: #fff; font-family: var(--heading); font-weight: 700; font-size: 2rem;
}
.join-card {
    background: linear-gradient(135deg, var(--ink) 0%, var(--brand-deep) 100%);
    border-radius: var(--radius-lg); padding: 56px;
    display: grid; grid-template-columns: 1fr auto; gap: 40px;
    align-items: center; color: #fff; position: relative; overflow: hidden;
}
.join-card::before {
    content: ''; position: absolute; top: -50%; right: -20%;
    width: 500px; height: 500px; border-radius: 50%;
    background: radial-gradient(circle, var(--accent), transparent 70%);
    opacity: 0.2;
}
.join-card h2 { color: #fff; margin: 10px 0; }
.join-card p { color: rgba(255,255,255,0.75); max-width: 520px; }
.join-card .eyebrow { background: rgba(255,255,255,0.1); color: var(--accent); border-color: rgba(245,158,11,0.3); }
.join-card > * { position: relative; z-index: 1; }

/* ---------- REVIEWS PAGE ---------- */
.rating-summary {
    display: grid; grid-template-columns: 1fr 1.5fr; gap: 56px;
    max-width: 820px; margin: 0 auto; align-items: center;
    background: #fff; padding: 48px; border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200); box-shadow: var(--shadow-card);
}
.rating-big { text-align: center; }
.rating-num {
    font-family: var(--heading); font-size: 4.5rem; font-weight: 700;
    color: var(--ink); line-height: 1; letter-spacing: -0.04em;
}
.rating-stars { color: var(--accent); font-size: 20px; letter-spacing: 3px; margin: 10px 0; }
.rating-count { color: var(--gray-500); font-size: 14px; }
.rating-breakdown { display: flex; flex-direction: column; gap: 10px; }
.rating-row {
    display: grid; grid-template-columns: 40px 1fr 40px;
    gap: 14px; align-items: center; font-size: 14px;
}
.rating-row > span:first-child { color: var(--gray-600); font-weight: 600; }
.rating-row > span:first-child i { color: var(--accent); font-size: 11px; margin-left: 2px; }
.rating-bar {
    height: 8px; background: var(--gray-100); border-radius: 100px; overflow: hidden;
}
.rating-bar-fill {
    height: 100%; background: linear-gradient(90deg, var(--accent), var(--accent-light));
    border-radius: 100px; transition: width .6s var(--ease);
}
.rating-n { text-align: right; color: var(--gray-500); font-size: 13px; }

.reviews-grid-light {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}
.review-card-light {
    background: #fff; border: 1px solid var(--gray-200);
    border-radius: var(--radius); padding: 28px;
    transition: all .3s var(--ease);
}
.review-card-light:hover {
    border-color: var(--brand-glow); transform: translateY(-3px);
    box-shadow: var(--shadow-card);
}
.review-stars { color: var(--accent); font-size: 14px; letter-spacing: 2px; margin-bottom: 12px; }
.review-text {
    color: var(--gray-700); font-size: 15px; line-height: 1.65;
    margin-bottom: 20px; min-height: 64px;
}
.review-author {
    display: flex; align-items: center; gap: 12px;
    padding-top: 16px; border-top: 1px solid var(--gray-100);
}
.review-avatar {
    width: 40px; height: 40px; border-radius: 50%;
    background: linear-gradient(135deg, var(--brand), var(--brand-deep));
    color: #fff; display: grid; place-items: center;
    font-weight: 700; font-family: var(--heading);
}
.review-name { font-weight: 700; color: var(--ink); font-size: 14px; }
.review-time { color: var(--gray-400); font-size: 12px; }

/* ---------- BLOG LISTING ---------- */
.blog-search {
    display: flex; align-items: center;
    background: rgba(255,255,255,0.08); backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.15); border-radius: 100px;
    padding: 6px; max-width: 520px; margin-top: 28px;
    transition: border-color .3s;
}
.blog-search:focus-within { border-color: var(--accent); }
.blog-search i { color: rgba(255,255,255,0.5); padding: 0 14px 0 18px; }
.blog-search input {
    flex: 1; background: transparent; border: 0; color: #fff;
    padding: 12px 0; font-size: 15px; outline: 0;
}
.blog-search input::placeholder { color: rgba(255,255,255,0.4); }
.blog-search button {
    background: var(--accent); color: var(--ink); padding: 10px 22px;
    border-radius: 100px; font-weight: 700; font-size: 14px;
    transition: background .2s;
}
.blog-search button:hover { background: var(--accent-light); }

.blog-chips-wrap { padding: 28px 0 0; }
.blog-chips {
    display: flex; gap: 10px; flex-wrap: wrap;
    padding-bottom: 12px; overflow-x: auto;
}
.chip {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 9px 18px; border-radius: 100px;
    background: #fff; border: 1px solid var(--gray-200);
    color: var(--gray-600); font-size: 14px; font-weight: 600;
    transition: all .25s; white-space: nowrap;
}
.chip:hover { border-color: var(--brand); color: var(--brand); }
.chip.active { background: var(--ink); color: #fff; border-color: var(--ink); }
.chip-n {
    padding: 1px 8px; border-radius: 100px;
    background: var(--gray-100); color: var(--gray-500);
    font-size: 11px; font-weight: 700;
}
.chip.active .chip-n { background: rgba(255,255,255,0.18); color: #fff; }

.blog-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 28px;
}
.blog-card {
    display: flex; flex-direction: column;
    background: #fff; border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg); overflow: hidden;
    transition: all .35s var(--ease); color: inherit;
    text-decoration: none;
}
.blog-card:hover {
    transform: translateY(-6px); border-color: var(--brand-glow);
    box-shadow: var(--shadow-float);
}
.blog-cover {
    aspect-ratio: 16/9; position: relative;
    display: grid; place-items: center; overflow: hidden;
}
.blog-cover::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(circle at 70% 30%, rgba(255,255,255,0.2), transparent 60%);
}
.blog-emoji {
    font-size: 3.5rem;
    filter: drop-shadow(0 4px 16px rgba(0,0,0,0.2));
    position: relative; z-index: 1;
}
.blog-featured {
    position: absolute; top: 16px; left: 16px;
    padding: 5px 12px; border-radius: 100px;
    background: var(--accent); color: var(--ink);
    font-size: 11px; font-weight: 800; text-transform: uppercase;
    letter-spacing: 0.08em; z-index: 2;
}
.blog-body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.blog-meta {
    font-size: 12px; color: var(--gray-500); font-weight: 600;
    text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 10px;
}
.blog-cat { color: var(--brand); }
.blog-body h3 {
    font-size: 1.25rem; margin-bottom: 10px; line-height: 1.3;
    transition: color .2s;
}
.blog-card:hover .blog-body h3 { color: var(--brand); }
.blog-body p {
    font-size: 14px; line-height: 1.6; color: var(--gray-500);
    margin-bottom: 16px; display: -webkit-box;
    -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}
.blog-foot {
    display: flex; justify-content: space-between; align-items: center;
    margin-top: auto; padding-top: 16px; border-top: 1px solid var(--gray-100);
    font-size: 13px; color: var(--gray-500);
}
.blog-arrow {
    width: 32px; height: 32px; border-radius: 50%;
    background: var(--brand-soft); color: var(--brand);
    display: grid; place-items: center;
    transition: transform .25s, background .25s;
}
.blog-card:hover .blog-arrow { background: var(--brand); color: #fff; transform: translateX(3px); }

/* PAGINATION */
.pagination {
    display: flex; justify-content: center; align-items: center;
    gap: 16px; margin-top: 56px;
}
.page-btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 11px 20px; border-radius: 100px;
    background: #fff; border: 1px solid var(--gray-200);
    color: var(--ink); font-weight: 600; font-size: 14px;
    transition: all .25s;
}
.page-btn:hover { border-color: var(--brand); color: var(--brand); }
.page-info { color: var(--gray-500); font-size: 14px; font-weight: 600; }

/* ---------- POST PAGE ---------- */
.post { color: var(--gray-700); }
.post-hero {
    padding: 140px 0 80px; color: #fff; position: relative; overflow: hidden;
}
.post-hero::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.35) 100%);
}
.post-hero .container { position: relative; z-index: 1; }
.post-emoji { font-size: 4rem; margin-bottom: 20px; line-height: 1; }
.post-hero h1 { color: #fff; margin-bottom: 20px; max-width: 820px; }
.post-meta {
    display: flex; gap: 20px; flex-wrap: wrap;
    color: rgba(255,255,255,0.8); font-size: 14px;
}
.post-meta span { display: inline-flex; align-items: center; gap: 6px; }
.post-meta i { color: var(--accent); }

.post-layout {
    display: grid; grid-template-columns: 1fr 320px; gap: 56px;
    max-width: 1100px; margin: 0 auto; padding: 72px 0;
}
.post-body { font-size: 17px; line-height: 1.8; color: var(--gray-700); }
.post-body h2 {
    font-size: 1.8rem; margin: 48px 0 18px; color: var(--ink);
}
.post-body h3 {
    font-size: 1.35rem; margin: 32px 0 14px; color: var(--ink);
}
.post-body p { margin-bottom: 20px; color: var(--gray-700); }
.post-body a { color: var(--brand); text-decoration: underline; text-decoration-thickness: 1.5px; text-underline-offset: 3px; }
.post-body ul, .post-body ol { margin: 20px 0 20px 24px; }
.post-body li { margin-bottom: 10px; }
.post-body blockquote {
    border-left: 4px solid var(--brand); padding: 16px 24px;
    margin: 24px 0; background: var(--brand-soft); font-style: italic;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.post-body code {
    background: var(--gray-100); padding: 2px 8px;
    border-radius: 6px; font-size: 0.9em; color: var(--brand-deep);
    font-family: 'SF Mono', Monaco, monospace;
}
.post-body img { margin: 24px 0; border-radius: var(--radius); }
.post-body strong { color: var(--ink); font-weight: 700; }

.post-share {
    margin-top: 56px; padding-top: 28px;
    border-top: 1px solid var(--gray-200);
    display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
}
.post-share > span { font-weight: 700; color: var(--ink); margin-right: 4px; }
.share-btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 10px 18px; border-radius: 100px;
    background: var(--gray-100); color: var(--gray-700);
    font-weight: 600; font-size: 14px; border: 0; cursor: pointer;
    transition: all .25s;
}
.share-btn:hover { background: var(--brand); color: #fff; }

.post-sidebar { position: sticky; top: 110px; align-self: start; }
.post-cta {
    background: linear-gradient(135deg, var(--ink) 0%, var(--brand-deep) 100%);
    border-radius: var(--radius-lg); padding: 32px;
    color: #fff; text-align: center;
    box-shadow: var(--shadow-card);
}
.post-cta-icon {
    width: 56px; height: 56px; border-radius: 16px;
    background: rgba(255,255,255,0.12); color: var(--accent);
    display: grid; place-items: center; margin: 0 auto 20px;
    font-size: 24px;
}
.post-cta h3 { color: #fff; margin-bottom: 8px; }
.post-cta p { color: rgba(255,255,255,0.75); font-size: 14px; margin-bottom: 20px; }
.post-cta .btn-hero { width: 100%; justify-content: center; }

/* ---------- CONTACT PAGE ---------- */
.contact-cards {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}
.contact-card {
    background: #fff; border: 1px solid var(--gray-200);
    border-radius: var(--radius); padding: 28px;
    transition: all .3s var(--ease); color: inherit; text-decoration: none;
    display: flex; flex-direction: column;
}
.contact-card:hover {
    transform: translateY(-4px); border-color: var(--brand);
    box-shadow: var(--shadow-card);
}
.contact-icon {
    width: 48px; height: 48px; border-radius: 14px;
    background: var(--brand-soft); color: var(--brand);
    display: grid; place-items: center; font-size: 20px;
    margin-bottom: 18px;
}
.contact-icon.green { background: rgba(16,185,129,0.1); color: var(--emerald); }
.contact-card h3 { margin-bottom: 6px; font-size: 1.1rem; }
.contact-card p {
    font-size: 14px; font-weight: 600; color: var(--ink);
    word-break: break-word; margin-bottom: 10px;
}
.contact-meta {
    margin-top: auto; font-size: 12px; color: var(--gray-500);
    padding-top: 12px; border-top: 1px solid var(--gray-100);
}

.contact-form-wrap {
    display: grid; grid-template-columns: 1fr 1.2fr; gap: 56px;
    align-items: start; max-width: 1100px; margin: 0 auto;
}
.contact-form-side { padding-top: 20px; }
.contact-list {
    list-style: none; margin-top: 24px; display: flex;
    flex-direction: column; gap: 10px;
}
.contact-list li {
    display: flex; align-items: center; gap: 10px;
    color: var(--gray-600); font-size: 15px;
}
.contact-list i { color: var(--emerald); font-size: 13px; }
.contact-form {
    background: #fff; border-radius: var(--radius-lg);
    padding: 36px; border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-card);
}
.form-field { margin-bottom: 18px; }
.form-field label {
    display: block; font-size: 13px; font-weight: 600;
    color: var(--ink); margin-bottom: 8px;
}
.form-field input,
.form-field textarea,
.form-field select {
    width: 100%; padding: 13px 16px; border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-sm); font-size: 15px; color: var(--ink);
    background: #fff; transition: all .2s; font-family: inherit;
}
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
    outline: 0; border-color: var(--brand);
    box-shadow: 0 0 0 4px var(--brand-glow);
}
.form-field textarea { resize: vertical; min-height: 110px; line-height: 1.6; }
.form-field select { cursor: pointer; appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%236E6A85' stroke-width='2'><polyline points='6 9 12 15 18 9'/></svg>");
    background-repeat: no-repeat; background-position: right 14px center;
    padding-right: 42px;
}
.contact-form .btn-hero { width: 100%; justify-content: center; margin-top: 8px; }
.btn-text { display: inline-flex; align-items: center; gap: 8px; }
.btn-loader { display: inline-flex; align-items: center; gap: 8px; }
.form-status {
    margin-top: 14px; padding: 12px 16px; border-radius: var(--radius-sm);
    font-size: 14px; display: none;
}
.form-status.show { display: block; }
.form-status.success { background: rgba(16,185,129,0.08); color: var(--emerald); border: 1px solid rgba(16,185,129,0.2); }
.form-status.error { background: rgba(239,68,68,0.08); color: var(--danger); border: 1px solid rgba(239,68,68,0.2); }

/* ---------- TRACK PAGE ---------- */
.track-search {
    display: flex; align-items: center;
    background: rgba(255,255,255,0.08); backdrop-filter: blur(8px);
    border: 1.5px solid rgba(255,255,255,0.18); border-radius: 100px;
    padding: 6px; max-width: 540px; margin-top: 28px;
    transition: all .3s;
}
.track-search:focus-within { border-color: var(--accent); background: rgba(255,255,255,0.12); }
.track-search i { color: rgba(255,255,255,0.5); padding: 0 10px 0 20px; }
.track-search input {
    flex: 1; background: transparent; border: 0; color: #fff;
    padding: 13px 4px; font-size: 16px; outline: 0;
    font-family: 'SF Mono', Monaco, 'Courier New', monospace;
    letter-spacing: 0.05em;
}
.track-search input::placeholder { color: rgba(255,255,255,0.4); }
.track-search button {
    background: var(--accent); color: var(--ink); padding: 11px 26px;
    border-radius: 100px; font-weight: 700;
    transition: background .2s;
}
.track-search button:hover { background: var(--accent-light); }

.track-empty-icon {
    width: 80px; height: 80px; border-radius: 20px;
    background: var(--brand-soft); color: var(--brand);
    display: grid; place-items: center; margin: 0 auto 20px;
    font-size: 34px;
}
.track-empty-icon.red { background: rgba(239,68,68,0.08); color: var(--danger); }

.track-header {
    display: flex; justify-content: space-between; align-items: center;
    flex-wrap: wrap; gap: 20px; margin-bottom: 32px;
}
.track-code-label {
    font-size: 12px; color: var(--gray-500); font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 6px;
}
.track-code {
    font-family: 'SF Mono', Monaco, 'Courier New', monospace;
    font-size: 1.6rem; color: var(--ink); font-weight: 700;
    letter-spacing: 0.04em;
}
.status-pill {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 10px 20px; border-radius: 100px;
    font-size: 14px; font-weight: 700;
    background: var(--gray-100); color: var(--gray-700);
}
.status-pill .pulse {
    width: 8px; height: 8px; border-radius: 50%;
    background: currentColor; position: relative;
}
.status-pill .pulse::before {
    content: ''; position: absolute; inset: -4px; border-radius: 50%;
    background: currentColor; opacity: 0.4;
    animation: statusPulse 2s infinite;
}
@keyframes statusPulse {
    0%   { transform: scale(1); opacity: 0.4; }
    100% { transform: scale(2.5); opacity: 0; }
}
.status-green  { background: rgba(16,185,129,0.1); color: #047857; }
.status-violet { background: var(--brand-soft); color: var(--brand-deep); }
.status-blue   { background: rgba(59,130,246,0.1); color: #1D4ED8; }
.status-amber  { background: rgba(245,158,11,0.12); color: #B45309; }
.status-red    { background: rgba(239,68,68,0.08); color: #B91C1C; }
.status-gray   { background: var(--gray-100); color: var(--gray-600); }

.progress-track {
    position: relative; margin: 32px 0 48px; padding: 0 8px;
}
.progress-track::before {
    content: ''; position: absolute; top: 11px; left: 8px; right: 8px;
    height: 4px; background: var(--gray-100); border-radius: 100px;
}
.progress-fill {
    position: absolute; top: 11px; left: 8px;
    height: 4px; background: linear-gradient(90deg, var(--brand), var(--accent));
    border-radius: 100px; transition: width .8s var(--ease);
    box-shadow: 0 0 16px var(--brand-glow);
}
.progress-stops {
    display: flex; justify-content: space-between; align-items: flex-start;
    position: relative;
}
.stop { text-align: center; flex: 1; position: relative; z-index: 1; }
.stop span {
    display: block; width: 22px; height: 22px; border-radius: 50%;
    background: #fff; border: 3px solid var(--gray-200); margin: 0 auto 10px;
    transition: all .3s;
}
.stop.done span {
    border-color: var(--brand); background: var(--brand);
    box-shadow: 0 0 0 5px var(--brand-glow);
}
.stop small {
    font-size: 12px; color: var(--gray-500); font-weight: 600;
    display: block;
}
.stop.done small { color: var(--ink); }

.track-notice {
    padding: 14px 18px; background: rgba(245,158,11,0.1);
    border: 1px solid rgba(245,158,11,0.25); border-radius: var(--radius-sm);
    color: #B45309; font-size: 14px; margin-bottom: 32px;
}
.track-notice i { margin-right: 8px; }

.track-grid {
    display: grid; grid-template-columns: 1fr 1.15fr; gap: 28px; align-items: start;
}
.track-left { display: flex; flex-direction: column; gap: 20px; }
.track-right { position: sticky; top: 110px; }

.track-card {
    background: #fff; border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg); padding: 24px;
    box-shadow: var(--shadow-soft);
}
.track-card h3 {
    font-size: 1rem; text-transform: uppercase; letter-spacing: 0.08em;
    font-weight: 700; color: var(--ink); margin-bottom: 20px;
    display: flex; align-items: center; gap: 10px;
}
.track-card h3 i { color: var(--brand); font-size: 16px; }

.route-line { display: flex; flex-direction: column; gap: 4px; }
.route-point { display: flex; gap: 14px; align-items: flex-start; }
.route-dot {
    width: 14px; height: 14px; border-radius: 50%;
    margin-top: 5px; flex-shrink: 0; box-shadow: 0 0 0 3px #fff;
}
.route-dot.green  { background: var(--emerald); }
.route-dot.violet { background: var(--brand); }
.route-connector {
    width: 2px; height: 32px; background: var(--gray-200);
    margin-left: 6px;
}
.route-label {
    font-size: 11px; color: var(--gray-500); font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 3px;
}
.route-value { font-weight: 700; color: var(--ink); margin-bottom: 2px; font-size: 15px; }
.route-sub { font-size: 13px; color: var(--gray-500); line-height: 1.5; }

.detail-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.detail-grid > div { display: flex; flex-direction: column; gap: 4px; }
.detail-grid span {
    font-size: 11px; color: var(--gray-500); font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.1em;
}
.detail-grid strong { color: var(--ink); font-size: 15px; }

.rider-card { background: linear-gradient(135deg, var(--brand-soft) 0%, transparent 100%); border-color: var(--brand-glow); }
.rider-row { display: flex; align-items: center; gap: 14px; }
.rider-avatar {
    width: 52px; height: 52px; border-radius: 50%; overflow: hidden;
    flex-shrink: 0; border: 2px solid #fff; box-shadow: var(--shadow-soft);
}
.rider-avatar img { width: 100%; height: 100%; object-fit: cover; }
.rider-info { flex: 1; min-width: 0; }
.rider-name { font-weight: 700; color: var(--ink); font-size: 15px; }
.rider-meta { color: var(--gray-500); font-size: 13px; margin-top: 2px; }
.btn-call {
    width: 44px; height: 44px; border-radius: 50%;
    background: var(--emerald); color: #fff;
    display: grid; place-items: center; flex-shrink: 0;
    box-shadow: 0 6px 20px rgba(16,185,129,0.35);
    transition: transform .2s;
}
.btn-call:hover { transform: scale(1.08); }

.timeline {
    list-style: none; padding: 0; position: relative;
    padding-left: 28px;
}
.timeline::before {
    content: ''; position: absolute; left: 9px; top: 4px; bottom: 4px;
    width: 2px; background: var(--gray-200);
}
.timeline li { position: relative; padding-bottom: 20px; }
.timeline li:last-child { padding-bottom: 0; }
.timeline-dot {
    position: absolute; left: -24px; top: 4px;
    width: 14px; height: 14px; border-radius: 50%;
    background: var(--brand); border: 3px solid #fff;
    box-shadow: 0 0 0 2px var(--brand-glow);
}
.timeline li:first-child .timeline-dot {
    background: var(--accent); box-shadow: 0 0 0 4px rgba(245,158,11,0.2);
}
.timeline-body { padding-left: 4px; }
.timeline-action { font-weight: 700; color: var(--ink); font-size: 14px; }
.timeline-details { font-size: 13px; color: var(--gray-600); margin-top: 3px; line-height: 1.5; }
.timeline-meta { font-size: 11px; color: var(--gray-400); margin-top: 5px; }

.track-share .share-row {
    display: flex; gap: 8px; align-items: center;
}
.track-share input {
    flex: 1; padding: 11px 14px; font-size: 13px;
    border: 1px solid var(--gray-200); border-radius: var(--radius-sm);
    background: var(--cream); color: var(--gray-600);
    font-family: 'SF Mono', Monaco, monospace;
}
.track-share .share-btn {
    padding: 11px 20px; background: var(--ink); color: #fff;
    border-radius: var(--radius-sm);
}

.map-card { padding: 0; overflow: hidden; }
.map-head {
    display: flex; justify-content: space-between; align-items: center;
    padding: 20px 24px; border-bottom: 1px solid var(--gray-200);
}
.map-head h3 { margin: 0; }
.map-updated { font-size: 12px; color: var(--gray-500); }
.map-canvas { aspect-ratio: 4/3.2; background: var(--cream); position: relative; }
.map-placeholder {
    position: absolute; inset: 0; display: grid; place-items: center;
    text-align: center; padding: 24px; color: var(--gray-500);
}
.map-placeholder i { font-size: 56px; color: var(--gray-300); margin-bottom: 14px; }
.map-placeholder p { font-size: 14px; max-width: 260px; margin: 0 auto; }

/* ---------- BOOK PAGE ---------- */
.book-form { max-width: 1100px; margin: 0 auto; }
.book-grid {
    display: grid; grid-template-columns: 1fr 380px; gap: 32px; align-items: start;
}
.book-fields { display: flex; flex-direction: column; gap: 28px; }
.book-section {
    background: #fff; border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg); padding: 28px;
    box-shadow: var(--shadow-soft);
}
.book-section-head {
    display: flex; gap: 16px; align-items: flex-start; margin-bottom: 20px;
}
.book-section-num {
    width: 36px; height: 36px; border-radius: 12px;
    background: linear-gradient(135deg, var(--brand), var(--brand-deep));
    color: #fff; display: grid; place-items: center;
    font-weight: 700; font-family: var(--heading); flex-shrink: 0;
}
.book-section-head h3 { font-size: 1.2rem; margin: 0; }
.book-section-head p { font-size: 13px; color: var(--gray-500); margin: 2px 0 0; }

.pkg-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    gap: 10px;
}
.pkg-card {
    display: flex; flex-direction: column; align-items: center;
    padding: 18px 12px; border: 2px solid var(--gray-200);
    border-radius: var(--radius); cursor: pointer; text-align: center;
    transition: all .2s; background: #fff;
}
.pkg-card input { position: absolute; opacity: 0; pointer-events: none; }
.pkg-card:hover { border-color: var(--brand); transform: translateY(-2px); }
.pkg-card:has(input:checked) {
    border-color: var(--brand); background: var(--brand-soft);
    box-shadow: 0 0 0 3px var(--brand-glow);
}
.pkg-emoji { font-size: 2rem; margin-bottom: 8px; }
.pkg-label { font-weight: 700; color: var(--ink); font-size: 14px; }
.pkg-desc { font-size: 11px; color: var(--gray-500); margin-top: 3px; line-height: 1.3; }

.speed-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 10px;
}
.speed-card {
    display: flex; gap: 12px; align-items: center;
    padding: 16px; border: 2px solid var(--gray-200);
    border-radius: var(--radius); cursor: pointer;
    transition: all .2s; background: #fff;
}
.speed-card input { position: absolute; opacity: 0; pointer-events: none; }
.speed-card:hover { border-color: var(--brand); }
.speed-card:has(input:checked) {
    border-color: var(--brand); background: var(--brand-soft);
}
.speed-icon {
    width: 38px; height: 38px; border-radius: 10px;
    background: var(--brand-soft); color: var(--brand);
    display: grid; place-items: center; flex-shrink: 0;
}
.speed-card:has(input:checked) .speed-icon { background: var(--brand); color: #fff; }
.speed-label { font-weight: 700; color: var(--ink); font-size: 14px; }
.speed-desc { font-size: 12px; color: var(--gray-500); margin-top: 1px; }

.book-summary { position: sticky; top: 110px; }
.summary-card {
    background: linear-gradient(135deg, var(--ink) 0%, var(--brand-deep) 100%);
    border-radius: var(--radius-lg); padding: 28px;
    color: #fff; box-shadow: var(--shadow-float);
    position: relative; overflow: hidden;
}
.summary-card::before {
    content: ''; position: absolute; top: -40%; right: -30%;
    width: 300px; height: 300px; border-radius: 50%;
    background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
    opacity: 0.22; pointer-events: none;
}
.summary-card > * { position: relative; z-index: 1; }
.summary-card h3 { color: #fff; margin-bottom: 20px; font-size: 1.1rem; text-transform: uppercase; letter-spacing: 0.08em; }
.summary-row {
    display: flex; justify-content: space-between; padding: 10px 0;
    font-size: 14px; color: rgba(255,255,255,0.75);
}
.summary-row strong { color: #fff; font-weight: 700; }
.summary-divider { height: 1px; background: rgba(255,255,255,0.15); margin: 6px 0; }
.summary-total {
    display: flex; justify-content: space-between; align-items: baseline;
    padding: 14px 0 18px; margin-top: 4px;
    border-top: 1px solid rgba(255,255,255,0.15);
}
.summary-total span { color: rgba(255,255,255,0.75); font-size: 14px; }
.summary-total strong {
    color: var(--accent); font-family: var(--heading);
    font-size: 1.8rem; font-weight: 700; letter-spacing: -0.02em;
}
.summary-card .btn-hero { width: 100%; justify-content: center; }
.summary-assurance {
    display: flex; gap: 14px; flex-wrap: wrap;
    margin-top: 16px; font-size: 11px;
    color: rgba(255,255,255,0.65);
}
.summary-assurance span { display: inline-flex; align-items: center; gap: 5px; }
.summary-assurance i { color: var(--emerald); }

/* SUCCESS STATE */
.booking-success {
    max-width: 540px; margin: 0 auto; text-align: center;
    background: #fff; border-radius: var(--radius-lg);
    padding: 48px 36px; border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-float);
}
.success-icon {
    width: 80px; height: 80px; border-radius: 50%;
    background: rgba(16,185,129,0.12); color: var(--emerald);
    display: grid; place-items: center; margin: 0 auto 20px;
    font-size: 40px;
}
.booking-success h2 { margin-bottom: 10px; }
.booking-success > p { color: var(--gray-500); margin-bottom: 20px; }
.success-code {
    font-family: 'SF Mono', Monaco, monospace;
    font-size: 1.8rem; font-weight: 700; letter-spacing: 0.08em;
    color: var(--brand-deep); padding: 18px;
    background: var(--brand-soft); border: 1.5px dashed var(--brand);
    border-radius: var(--radius); margin: 20px 0;
}
.success-note { font-size: 14px; color: var(--gray-500); margin-bottom: 24px; }
.success-actions {
    display: flex; gap: 12px; justify-content: center; flex-wrap: wrap;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 960px) {
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .about-stats-card { grid-template-columns: 1fr 1fr; padding: 28px; }
    .rating-summary { grid-template-columns: 1fr; gap: 32px; padding: 32px; }
    .contact-form-wrap { grid-template-columns: 1fr; gap: 32px; }
    .post-layout { grid-template-columns: 1fr; gap: 32px; padding: 48px 0; }
    .post-sidebar { position: static; }
    .track-grid { grid-template-columns: 1fr; }
    .track-right { position: static; }
    .book-grid { grid-template-columns: 1fr; }
    .book-summary { position: static; }
    .join-card { grid-template-columns: 1fr; padding: 36px; text-align: center; }
}
@media (max-width: 680px) {
    .page-hero { padding: 110px 0 60px; }
    .page-hero.compact { padding: 100px 0 50px; }
    .about-stats-card { padding: 24px; gap: 20px; }
    .astat-num { font-size: 2.2rem; }
    .rating-num { font-size: 3.5rem; }
    .track-header { flex-direction: column; align-items: flex-start; }
    .progress-stops .stop small { font-size: 10px; }
    .post-hero { padding: 110px 0 50px; }
    .post-hero h1 { font-size: 2rem; }
    .blog-search, .track-search { flex-wrap: wrap; padding: 8px; }
    .blog-search button, .track-search button { width: 100%; margin-top: 6px; }
    .zones-table { font-size: 13px; }
    .zones-table thead th, .zones-table tbody td { padding: 12px 14px; }
    .pkg-grid { grid-template-columns: repeat(2, 1fr); }
    .pkg-emoji { font-size: 1.6rem; }
    .detail-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .contact-form, .book-section { padding: 22px; }
    .booking-success { padding: 36px 24px; }
    .success-code { font-size: 1.3rem; }
}

/* ---------- FINAL GAP FILLERS ---------- */
/* step-card is an alias used on services.php */
.step-card {
    text-align: center; padding: 32px 24px; position: relative;
    background: #fff; border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg); transition: all .3s var(--ease);
}
.step-card:hover { transform: translateY(-4px); border-color: var(--brand); box-shadow: var(--shadow-card); }
.step-card .step-num {
    display: inline-block; font-family: var(--heading);
    font-size: 2.5rem; font-weight: 700; color: var(--brand);
    line-height: 1; margin-bottom: 16px; letter-spacing: -0.03em;
    opacity: 0.85;
}
.step-card h3 { font-size: 1.15rem; margin-bottom: 8px; }
.step-card p { font-size: 14px; line-height: 1.6; }

/* post-cta links sit on dark bg, ensure visibility */
.post-cta a.btn-hero.primary {
    background: var(--accent); color: var(--ink);
}
.post-cta a.btn-hero.primary:hover {
    background: var(--accent-light); box-shadow: 0 14px 40px rgba(245,158,11,0.4);
}

/* Share button link variant */
a.share-btn {
    text-decoration: none; display: inline-flex;
    align-items: center; justify-content: center;
    min-width: 44px; height: 44px;
    padding: 0 16px; border-radius: 100px;
}
a.share-btn i { font-size: 15px; }

/* Fix services-grid for page use (may already exist as home variant) */
.section .services-grid { margin-top: 0; }

/* Ensure page-hero sections look balanced with no hero */
body.page-inner .page-hero { margin-top: 0; }

/* Steps grid at bottom of responsive: stacking on mobile */
@media (max-width: 820px) {
    .steps-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
    .steps-grid { grid-template-columns: 1fr; }
    .values-grid { grid-template-columns: 1fr; }
    .speed-grid { grid-template-columns: 1fr; }
    .contact-cards { grid-template-columns: 1fr; }
    .coverage-grid { grid-template-columns: 1fr; }
}

/* Small style: form status when shown via JS */
.form-status { display: none; }
.form-status:not(:empty) { display: block; }
