/* ================================================================
   SRK Transport Services — Main Stylesheet v2
   Deep Navy + Golden Amber — Professional & Modern
   ================================================================ */

/* ── CSS Custom Properties ─────────────────────────────────────── */
:root {
  /* Primary navy palette */
  --srk-navy:        #0F2044;
  --srk-navy-2:      #1A2F5E;
  --srk-navy-3:      #243A72;
  --srk-blue:        #2563EB;
  --srk-blue-light:  #3B82F6;

  /* Golden amber accent */
  --srk-gold:        #F59E0B;
  --srk-gold-dark:   #D97706;
  --srk-gold-light:  #FCD34D;

  /* Functional */
  --srk-green:       #16A34A;
  --srk-green-wa:    #25D366;

  /* Neutrals */
  --srk-white:       #FFFFFF;
  --srk-offwhite:    #F8FAFC;
  --srk-gray:        #F1F5F9;
  --srk-gray-2:      #E2E8F0;
  --srk-gray-mid:    #94A3B8;
  --srk-gray-dark:   #64748B;
  --srk-dark:        #0F172A;
  --srk-dark2:       #1E293B;

  /* Typography */
  --font-main: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;

  /* Layout */
  --header-h:    68px;
  --container-w: 1200px;
  --radius:       8px;
  --radius-lg:   16px;
  --radius-xl:   24px;

  /* Shadows */
  --shadow-sm:   0 2px 8px  rgba(15,32,68,.07);
  --shadow-md:   0 8px 32px rgba(15,32,68,.13);
  --shadow-lg:   0 20px 64px rgba(15,32,68,.20);
  --shadow-gold: 0 4px 20px rgba(245,158,11,.35);

  /* Transitions */
  --transition: .22s cubic-bezier(.4,0,.2,1);
}

/* ── Reset & Base ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-main);
  color: var(--srk-dark);
  background: var(--srk-white);
  line-height: 1.65;
  overflow-x: hidden;
  padding-top: var(--header-h);
  padding-bottom: 60px;
}

img { max-width: 100%; height: auto; display: block; }
a   { color: var(--srk-blue); text-decoration: none; }
a:hover { color: var(--srk-navy); }
ul { list-style: none; }

/* ── Layout Utilities ─────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container-w);
  margin-inline: auto;
  padding-inline: 1rem;
}

.section-pad    { padding: 5rem 0; }
.section-pad-sm { padding: 2.5rem 0; }

/* ── Buttons ──────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .7rem 1.5rem;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: .95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background var(--transition), color var(--transition),
              box-shadow var(--transition), transform .15s;
  white-space: nowrap;
}
.btn:hover  { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

/* Primary CTA — amber gold */
.btn-red {
  background: var(--srk-gold);
  color: var(--srk-dark);
  border-color: var(--srk-gold);
  box-shadow: var(--shadow-gold);
}
.btn-red:hover {
  background: var(--srk-gold-dark);
  border-color: var(--srk-gold-dark);
  color: var(--srk-dark);
  box-shadow: 0 6px 28px rgba(217,119,6,.45);
}

/* Secondary — lighter gold */
.btn-yellow {
  background: var(--srk-gold-light);
  color: var(--srk-dark);
  border-color: var(--srk-gold-light);
}
.btn-yellow:hover {
  background: var(--srk-gold);
  border-color: var(--srk-gold);
}

/* Outline on dark backgrounds */
.btn-outline {
  background: transparent;
  color: var(--srk-white);
  border-color: rgba(255,255,255,.55);
}
.btn-outline:hover {
  background: var(--srk-white);
  color: var(--srk-navy);
  border-color: var(--srk-white);
}

/* Outline on light backgrounds */
.btn-outline-red {
  background: transparent;
  color: var(--srk-navy-2);
  border-color: var(--srk-navy-3);
}
.btn-outline-red:hover {
  background: var(--srk-navy);
  color: var(--srk-white);
  border-color: var(--srk-navy);
}

/* WhatsApp */
.btn-whatsapp {
  background: var(--srk-green-wa);
  color: #fff;
  border-color: var(--srk-green-wa);
}
.btn-whatsapp:hover { background: #1ebe5a; color: #fff; }

/* Navy solid */
.btn-navy {
  background: var(--srk-navy);
  color: var(--srk-white);
  border-color: var(--srk-navy);
}
.btn-navy:hover { background: var(--srk-navy-2); color: var(--srk-white); }

.btn-sm { padding: .4rem .9rem;  font-size: .83rem; }
.btn-lg { padding: .9rem 2rem;   font-size: 1.05rem; }

/* ── Section Headings ─────────────────────────────────────────── */
.section-title {
  font-size: 2rem;
  font-weight: 800;
  color: var(--srk-dark);
  margin-bottom: .5rem;
  line-height: 1.2;
  letter-spacing: -.02em;
}
.section-title span { color: var(--srk-navy-2); }

.section-sub {
  color: var(--srk-gray-mid);
  font-size: 1rem;
  margin-bottom: 2.5rem;
}

.section-header { text-align: center; margin-bottom: 2.5rem; }

.divider-red {
  width: 60px; height: 4px;
  background: linear-gradient(to right, var(--srk-gold), var(--srk-blue));
  margin: .75rem auto 1.25rem;
  border-radius: 2px;
}

/* ── HEADER ───────────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  background: var(--srk-navy);
  border-bottom: 3px solid var(--srk-gold);
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(15,32,68,.25);
  transition: background .3s, box-shadow .3s, backdrop-filter .3s;
}
.site-header.scrolled {
  background: rgba(15,32,68,.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 32px rgba(15,32,68,.35);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 1rem;
}

/* Brand */
.brand-link {
  display: flex;
  align-items: center;
  gap: .65rem;
  text-decoration: none;
  flex-shrink: 0;
}
.brand-badge {
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--srk-gold-dark), var(--srk-gold));
  border-radius: 6px;
  padding: .15rem .45rem;
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: -.02em;
  line-height: 1;
}
.badge-s, .badge-k { color: var(--srk-navy); }
.badge-r            { color: var(--srk-white); }

.brand-words { display: flex; flex-direction: column; }
.brand-name  { font-size: 1.1rem; font-weight: 800; color: var(--srk-white); line-height: 1.1; }
.brand-sub   { font-size: .68rem; color: var(--srk-gold-light); letter-spacing: .05em; text-transform: uppercase; }

/* Desktop nav */
.main-nav { display: none; }

.nav-list {
  display: flex;
  align-items: center;
  gap: .25rem;
}

.nav-link {
  color: rgba(255,255,255,.72);
  font-weight: 600;
  font-size: .9rem;
  padding: .4rem .75rem;
  border-radius: var(--radius);
  transition: color var(--transition), background var(--transition);
  display: flex;
  align-items: center;
  gap: .25rem;
}
.nav-link:hover, .nav-link.active {
  color: var(--srk-gold-light);
  background: rgba(255,255,255,.08);
}

/* Dropdown */
.nav-has-drop { position: relative; }

.nav-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--srk-dark2);
  border: 1px solid rgba(245,158,11,.18);
  border-radius: var(--radius);
  min-width: 220px;
  padding: .5rem 0;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity .2s, transform .2s, visibility .2s;
  z-index: 10;
}
.nav-has-drop:hover .nav-dropdown,
.nav-has-drop:focus-within .nav-dropdown {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.nav-dropdown li a {
  display: block;
  padding: .55rem 1.1rem;
  color: rgba(255,255,255,.72);
  font-size: .9rem;
  transition: background var(--transition), color var(--transition);
}
.nav-dropdown li a:hover {
  background: rgba(245,158,11,.1);
  color: var(--srk-gold-light);
}

.drop-arrow { transition: transform .2s; }
.nav-has-drop:hover .drop-arrow { transform: rotate(180deg); }

/* Header CTA */
.header-cta {
  flex-shrink: 0;
  background: var(--srk-gold) !important;
  color: var(--srk-dark) !important;
  border-color: var(--srk-gold) !important;
  font-weight: 700;
}
.header-cta:hover {
  background: var(--srk-gold-dark) !important;
  border-color: var(--srk-gold-dark) !important;
  color: var(--srk-dark) !important;
}

/* Hamburger */
.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: .4rem;
  z-index: 1100;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--srk-white);
  border-radius: 2px;
  transition: transform .25s, opacity .25s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav overlay */
.nav-overlay {
  position: fixed; inset: 0;
  background: rgba(15,32,68,.7);
  z-index: 999;
  opacity: 0; visibility: hidden;
  transition: opacity .25s, visibility .25s;
}
.nav-overlay.open { opacity: 1; visibility: visible; }

/* Mobile nav drawer */
@media (max-width: 899px) {
  .main-nav {
    display: block;
    position: fixed;
    top: 0; right: 0;
    width: 280px; height: 100vh;
    background: var(--srk-navy);
    border-left: 1px solid rgba(245,158,11,.15);
    z-index: 1050;
    padding: calc(var(--header-h) + 1rem) 1rem 2rem;
    transform: translateX(100%);
    transition: transform .3s cubic-bezier(.4,0,.2,1);
    overflow-y: auto;
  }
  .main-nav.open { transform: translateX(0); }
  .nav-list { flex-direction: column; align-items: stretch; gap: .25rem; }
  .nav-link  { font-size: 1rem; padding: .75rem .9rem; }
  .nav-dropdown {
    position: static;
    opacity: 1; visibility: visible; transform: none;
    background: rgba(255,255,255,.04);
    border: none; border-radius: 0;
    padding: 0 0 .5rem 1rem;
    box-shadow: none;
  }
  .nav-dropdown li a { padding: .5rem .8rem; }
  .header-cta { display: none; }
}

@media (min-width: 900px) {
  .main-nav   { display: block; }
  .nav-toggle { display: none; }
}

/* ── NOTICE BANNER ──────────────────────────────────────────────── */
.notice-banner {
  background: linear-gradient(to right, var(--srk-gold-dark), var(--srk-gold));
  color: var(--srk-dark);
  text-align: center;
  padding: .75rem 1rem;
  font-weight: 700;
  font-size: .9rem;
}

/* ── HERO ────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  background: linear-gradient(
    135deg,
    #060d1f 0%,
    var(--srk-navy) 28%,
    var(--srk-navy-2) 56%,
    #1a3a7a 80%,
    #1e4799 100%
  );
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Diagonal stripe texture */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -55deg,
    rgba(245,158,11,.04) 0px, rgba(245,158,11,.04) 1px,
    transparent 1px, transparent 28px
  );
  pointer-events: none;
}

/* Wave bottom clip */
.hero::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 80px;
  background: var(--srk-white);
  clip-path: polygon(0 60%, 100% 0, 100% 100%, 0 100%);
  pointer-events: none;
}

/* Glow orbs */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
}
.hero-orb-1 {
  width: 550px; height: 550px;
  background: radial-gradient(circle, rgba(245,158,11,.18) 0%, transparent 70%);
  right: -80px; top: -120px;
}
.hero-orb-2 {
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(59,130,246,.22) 0%, transparent 70%);
  right: 18%; bottom: 5%;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--srk-white);
  max-width: 680px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: rgba(245,158,11,.14);
  border: 1px solid rgba(245,158,11,.38);
  color: var(--srk-gold-light);
  font-size: .73rem;
  font-weight: 700;
  letter-spacing: .11em;
  text-transform: uppercase;
  padding: .35rem .9rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(4px);
}

.hero-title {
  font-size: clamp(3.2rem, 8vw, 5.5rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -.03em;
  margin-bottom: .5rem;
}
.hero-title .srk-s { color: var(--srk-white); }
.hero-title .srk-r { color: var(--srk-gold); }
.hero-title .srk-k { color: var(--srk-white); }

.hero-subtitle {
  font-size: 1.35rem;
  font-weight: 300;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  opacity: .78;
}
.hero-tagline-en {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: .35rem;
  line-height: 1.3;
}
.hero-tagline-ta {
  font-size: 1.1rem;
  opacity: .72;
  margin-bottom: 2.25rem;
  font-weight: 400;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: .75rem; }

/* ── STATS SECTION ─────────────────────────────────────────────── */
.stats-section {
  background: var(--srk-navy);
  padding: 0;
}
.stats-grid-home {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat-item {
  text-align: center;
  padding: 2rem 1rem;
  border-right: 1px solid rgba(255,255,255,.08);
  position: relative;
  transition: background var(--transition);
}
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: rgba(245,158,11,.06); }

.stat-item-num {
  font-size: 2.6rem;
  font-weight: 900;
  color: var(--srk-gold);
  line-height: 1;
  display: block;
  letter-spacing: -.02em;
}
.stat-item-label {
  font-size: .75rem;
  font-weight: 700;
  color: rgba(255,255,255,.5);
  text-transform: uppercase;
  letter-spacing: .09em;
  margin-top: .4rem;
  display: block;
}

/* ── ROUTES SECTION ─────────────────────────────────────────────── */
.routes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}
.route-card {
  background: var(--srk-white);
  border: 2px solid var(--srk-gray-2);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
  position: relative;
  overflow: hidden;
}
.route-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 5px; height: 100%;
  background: linear-gradient(to bottom, var(--srk-gold), var(--srk-blue));
  border-radius: 0;
}
.route-card:hover {
  border-color: var(--srk-gold);
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}
.route-card-head {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: 1.1rem;
}
.route-icon {
  width: 50px; height: 50px;
  background: linear-gradient(135deg, var(--srk-navy), var(--srk-navy-2));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--srk-gold);
  flex-shrink: 0;
}
.route-card-name    { font-size: 1.15rem; font-weight: 800; color: var(--srk-dark); }
.route-card-name-ta { font-size: .85rem;  color: var(--srk-gray-mid); margin-top: .15rem; }

.route-cities {
  display: flex;
  align-items: center;
  gap: .5rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}
.city-pill {
  background: var(--srk-gray);
  padding: .35rem .9rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: .9rem;
  color: var(--srk-dark);
}
.city-arrow { color: var(--srk-gold); font-size: 1.4rem; font-weight: 900; }

/* ── WHY CHOOSE SRK ─────────────────────────────────────────────── */
.why-section {
  background: var(--srk-navy);
  color: var(--srk-white);
  position: relative;
  overflow: hidden;
}
.why-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    rgba(245,158,11,.04) 0px, rgba(245,158,11,.04) 1px,
    transparent 1px, transparent 38px
  );
}
.why-section .section-title          { color: var(--srk-white); }
.why-section .section-title span     { color: var(--srk-gold-light); }
.why-section .section-sub            { color: rgba(255,255,255,.52); }
.why-section .divider-red            { background: linear-gradient(to right, var(--srk-gold), var(--srk-blue-light)); }

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  position: relative;
  z-index: 2;
}
.feature-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: background var(--transition), transform var(--transition), border-color var(--transition);
}
.feature-card:hover {
  background: rgba(245,158,11,.1);
  border-color: rgba(245,158,11,.32);
  transform: translateY(-5px);
}
.feature-icon {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, var(--srk-gold-dark), var(--srk-gold));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  color: var(--srk-dark);
  box-shadow: 0 4px 18px rgba(245,158,11,.3);
}
.feature-title-en { font-size: 1.1rem;  font-weight: 700; color: var(--srk-white); margin-bottom: .25rem; }
.feature-title-ta { font-size: .85rem;  color: var(--srk-gold-light); margin-bottom: .5rem; }
.feature-desc     { font-size: .875rem; color: rgba(255,255,255,.52); line-height: 1.65; }

/* ── TIMINGS PREVIEW ─────────────────────────────────────────────── */
.timings-preview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.timing-preview-card {
  background: var(--srk-white);
  border-radius: var(--radius-lg);
  border: 2px solid var(--srk-gray-2);
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
}
.timing-preview-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }

.timing-preview-head {
  background: linear-gradient(to right, var(--srk-navy), var(--srk-navy-2));
  color: var(--srk-white);
  padding: 1rem 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.timing-route-name { font-weight: 800; font-size: 1rem; }
.timing-trip-name  { font-size: .8rem; opacity: .65; margin-top: .15rem; }
.timing-preview-body { padding: 1.1rem 1.25rem; }

/* ── TIMINGS PAGE (full stop-wise) ─────────────────────────────── */
.timings-page-header {
  background: linear-gradient(135deg, var(--srk-navy) 0%, var(--srk-navy-2) 55%, #1a3a7a 100%);
  color: var(--srk-white);
  padding: 4.5rem 0 3.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.timings-page-header::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    -55deg,
    rgba(245,158,11,.04) 0px, rgba(245,158,11,.04) 1px,
    transparent 1px, transparent 28px
  );
}
.timings-page-header::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 60px;
  background: var(--srk-offwhite);
  clip-path: polygon(0 60%, 100% 0, 100% 100%, 0 100%);
}
.timings-page-header h1          { font-size: 2.4rem; font-weight: 900; letter-spacing: -.02em; position: relative; z-index: 2; }
.timings-page-header .ta-heading { font-size: 1.15rem; opacity: .72; margin-top: .5rem; position: relative; z-index: 2; }

.timings-page-header .route-cities-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}
.route-city-badge {
  background: rgba(245,158,11,.14);
  border: 1px solid rgba(245,158,11,.35);
  padding: .5rem 1.25rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  color: var(--srk-gold-light);
  backdrop-filter: blur(4px);
}
.route-arrow-icon { font-size: 1.5rem; color: var(--srk-gold); }

.trips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.75rem;
  margin-top: 2.5rem;
}
.trip-card {
  background: var(--srk-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  border: 1px solid var(--srk-gray-2);
  transition: box-shadow var(--transition), transform var(--transition);
}
.trip-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }

.trip-card-header {
  background: linear-gradient(to right, var(--srk-navy), var(--srk-navy-2));
  color: var(--srk-white);
  padding: 1.1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: .75rem;
}
.trip-num {
  background: rgba(245,158,11,.18);
  border: 1px solid rgba(245,158,11,.28);
  width: 34px; height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: .9rem;
  color: var(--srk-gold-light);
  flex-shrink: 0;
}
.trip-name-label  { font-weight: 700; font-size: 1rem; }
.trip-approximate { font-size: .75rem; opacity: .68; margin-top: .15rem; }

.stop-timeline { padding: 1.1rem 1.25rem; }
.stop-row {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  position: relative;
  padding-bottom: 1.1rem;
}
.stop-row:last-child { padding-bottom: 0; }
.stop-row:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 10px; top: 24px; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--srk-gold), var(--srk-gray-2));
}
.stop-dot {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--srk-navy-2);
  border: 3px solid var(--srk-white);
  box-shadow: 0 0 0 2px var(--srk-navy-2);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  margin-top: 2px;
}
.stop-row:first-child .stop-dot { background: var(--srk-gold); box-shadow: 0 0 0 2px var(--srk-gold); }
.stop-row:last-child  .stop-dot { background: var(--srk-navy); box-shadow: 0 0 0 2px var(--srk-navy); }

.stop-details { flex: 1; }
.stop-name-en { font-weight: 700; color: var(--srk-dark); font-size: .95rem; }
.stop-name-ta { font-size: .78rem; color: var(--srk-gray-mid); }
.stop-time {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--srk-navy-2);
  margin-left: auto;
  white-space: nowrap;
  padding-top: 2px;
}

.timing-notice {
  background: #fffbeb;
  border: 1px solid rgba(245,158,11,.22);
  border-left: 4px solid var(--srk-gold);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  margin-top: 2rem;
}
.timing-notice p { font-size: .9rem; color: #555; margin-bottom: .35rem; }
.timing-notice p:last-child { margin-bottom: 0; }

/* ── ENQUIRY FORM ─────────────────────────────────────────────── */
.enquiry-section { background: var(--srk-gray); }

.enquiry-grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; }
@media (min-width: 768px) { .enquiry-grid { grid-template-columns: 1fr 1fr; } }

.enquiry-info h2 { margin-bottom: .75rem; }
.enquiry-info p  { color: #555; margin-bottom: 1.25rem; line-height: 1.7; }

.contact-chips { display: flex; flex-direction: column; gap: .75rem; }
.contact-chip {
  display: flex;
  align-items: center;
  gap: .75rem;
  background: var(--srk-white);
  border-radius: var(--radius);
  padding: .9rem 1.1rem;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
}
.contact-chip:hover { box-shadow: var(--shadow-md); transform: translateX(4px); }
.contact-chip svg    { color: var(--srk-navy-2); flex-shrink: 0; }
.contact-chip strong { display: block; font-size: .75rem; color: var(--srk-gray-dark); font-weight: 700; text-transform: uppercase; letter-spacing: .05em; }
.contact-chip a      { font-weight: 700; color: var(--srk-dark); font-size: .95rem; }
.contact-chip a:hover { color: var(--srk-navy-2); }

.enquiry-form {
  background: var(--srk-white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--srk-gray-2);
}
.form-title {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: var(--srk-dark);
  display: flex;
  align-items: center;
  gap: .6rem;
}
.form-title::before {
  content: '';
  display: block;
  width: 4px; height: 22px;
  background: var(--srk-gold);
  border-radius: 2px;
}

.form-row        { display: grid; gap: 1rem; margin-bottom: 1rem; }
.form-row.two-col { grid-template-columns: 1fr 1fr; }

.form-group label {
  display: block;
  font-size: .78rem;
  font-weight: 700;
  color: var(--srk-gray-dark);
  margin-bottom: .3rem;
  text-transform: uppercase;
  letter-spacing: .045em;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: .7rem 1rem;
  border: 2px solid var(--srk-gray-2);
  border-radius: var(--radius);
  font-size: .95rem;
  font-family: var(--font-main);
  background: var(--srk-offwhite);
  color: var(--srk-dark);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--srk-navy-2);
  box-shadow: 0 0 0 3px rgba(26,47,94,.1);
  background: var(--srk-white);
}
.form-notice { font-size: .78rem; color: #999; margin-top: .5rem; text-align: center; }

/* ── GALLERY ──────────────────────────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.25rem;
}
.gallery-page-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
}
.gallery-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
  cursor: pointer;
  background: var(--srk-gray);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
}
.gallery-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.gallery-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s cubic-bezier(.4,0,.2,1); }
.gallery-card:hover img { transform: scale(1.07); }

.gallery-card-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: .85rem 1rem;
  background: linear-gradient(to top, rgba(15,32,68,.88), transparent);
  color: #fff;
  transform: translateY(100%);
  transition: transform .28s cubic-bezier(.4,0,.2,1);
}
.gallery-card:hover .gallery-card-overlay { transform: translateY(0); }
.gallery-card-overlay p { font-size: .85rem; font-weight: 600; }

/* ── LIGHTBOX ─────────────────────────────────────────────────── */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(10,16,32,.95);
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0; visibility: hidden;
  transition: opacity .25s, visibility .25s;
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox-inner {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
}
.lightbox-inner img {
  max-width: 90vw; max-height: 80vh;
  border-radius: var(--radius);
  box-shadow: 0 0 80px rgba(0,0,0,.6);
  object-fit: contain;
}
.lightbox-caption { text-align: center; color: #ccc; margin-top: .75rem; font-size: .9rem; }
.lightbox-close {
  position: absolute;
  top: -2.5rem; right: 0;
  background: none; border: none;
  color: #fff; font-size: 2rem;
  cursor: pointer; line-height: 1;
  transition: color .2s;
}
.lightbox-close:hover { color: var(--srk-gold-light); }
.lightbox-nav {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  background: rgba(245,158,11,.18);
  border: 1px solid rgba(245,158,11,.3);
  color: #fff;
  width: 44px; height: 44px;
  border-radius: 50%;
  font-size: 1.3rem;
  cursor: pointer;
  transition: background .2s;
  display: flex; align-items: center; justify-content: center;
}
.lightbox-nav:hover { background: rgba(245,158,11,.42); }
.lightbox-prev { left: -56px; }
.lightbox-next { right: -56px; }

/* ── CONTACT SECTION ─────────────────────────────────────────── */
#contact.contact-section {
  background: linear-gradient(135deg, var(--srk-navy) 0%, var(--srk-navy-2) 60%, #1a3a7a 100%);
  color: var(--srk-white);
  position: relative;
  overflow: hidden;
}
#contact.contact-section::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    rgba(245,158,11,.03) 0px, rgba(245,158,11,.03) 1px,
    transparent 1px, transparent 38px
  );
}
#contact .section-title      { color: var(--srk-white); }
#contact .section-title span { color: var(--srk-gold-light); }
#contact .divider-red        { background: linear-gradient(to right, var(--srk-gold), var(--srk-blue-light)); }
#contact .section-sub        { color: rgba(255,255,255,.52); }

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
  position: relative;
  z-index: 2;
}
.contact-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  backdrop-filter: blur(6px);
  transition: background var(--transition), transform var(--transition), border-color var(--transition);
}
.contact-card:hover {
  background: rgba(245,158,11,.1);
  border-color: rgba(245,158,11,.3);
  transform: translateY(-4px);
}
.contact-card svg  { color: var(--srk-gold); margin: 0 auto .85rem; }
.contact-card h4   { color: var(--srk-gold-light); font-size: .76rem; letter-spacing: .1em; text-transform: uppercase; margin-bottom: .5rem; }
.contact-card a    { color: var(--srk-white); font-size: 1.05rem; font-weight: 700; }
.contact-card a:hover { color: var(--srk-gold-light); }

/* ── FOOTER ───────────────────────────────────────────────────── */
.site-footer {
  background: var(--srk-dark);
  color: rgba(255,255,255,.5);
  position: relative;
}
.footer-stripe {
  height: 4px;
  background: linear-gradient(
    to right,
    var(--srk-gold) 0%, var(--srk-gold) 35%,
    var(--srk-blue) 35%, var(--srk-blue) 65%,
    var(--srk-gold) 65%
  );
}
.footer-main {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
  padding: 3rem 1rem 2.5rem;
}
.footer-logo       { font-size: 2.5rem; font-weight: 900; color: var(--srk-gold); letter-spacing: -.02em; line-height: 1; margin-bottom: .5rem; }
.footer-brand-name { font-weight: 700; color: rgba(255,255,255,.8); margin-bottom: .25rem; }
.footer-tagline-en { font-size: .85rem; color: rgba(255,255,255,.42); }
.footer-tagline-ta { font-size: .85rem; color: var(--srk-gold-light); margin-top: .25rem; }

.footer-heading {
  color: var(--srk-white);
  font-size: .78rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  padding-bottom: .5rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-links li { margin-bottom: .4rem; }
.footer-links a  {
  color: rgba(255,255,255,.48);
  font-size: .9rem;
  transition: color var(--transition), padding-left var(--transition);
}
.footer-links a:hover { color: var(--srk-gold-light); padding-left: 4px; }

.footer-contact-list li  { display: flex; align-items: flex-start; gap: .6rem; margin-bottom: .65rem; font-size: .9rem; }
.footer-contact-list svg { color: var(--srk-gold); flex-shrink: 0; margin-top: 2px; }
.footer-contact-list a   { color: rgba(255,255,255,.52); }
.footer-contact-list a:hover { color: var(--srk-gold-light); }

.footer-bottom {
  background: rgba(0,0,0,.3);
  padding: 1rem;
  font-size: .82rem;
  color: rgba(255,255,255,.32);
  border-top: 1px solid rgba(255,255,255,.05);
}

/* ── MOBILE ACTION BAR ─────────────────────────────────────────── */
.mob-action-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  z-index: 990;
  height: 56px;
}
.mob-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  font-size: .9rem;
  font-weight: 700;
  color: var(--srk-white);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: filter .2s;
}
.mob-btn:hover { filter: brightness(.9); color: var(--srk-white); }
.mob-call     { background: var(--srk-gold); color: var(--srk-dark) !important; }
.mob-whatsapp { background: var(--srk-green-wa); }

@media (min-width: 900px) {
  .mob-action-bar { display: none; }
  body { padding-bottom: 0; }
}

/* ── PAGE HERO (Gallery / Timings sub-pages) ─────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--srk-navy) 0%, var(--srk-navy-2) 60%, #1a3a7a 100%);
  color: var(--srk-white);
  padding: 4.5rem 0 3.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    -55deg,
    rgba(245,158,11,.04) 0px, rgba(245,158,11,.04) 1px,
    transparent 1px, transparent 28px
  );
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 50px;
  background: var(--srk-white);
  clip-path: polygon(0 60%, 100% 0, 100% 100%, 0 100%);
}
.page-hero h1 { font-size: 2.4rem; font-weight: 900; letter-spacing: -.02em; position: relative; z-index: 2; }
.page-hero p  { opacity: .72; margin-top: .5rem; position: relative; z-index: 2; }

/* ── FLOATING ELEMENTS ─────────────────────────────────────────── */
/* Floating WhatsApp FAB (desktop only) */
.fab-whatsapp {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  width: 56px; height: 56px;
  background: var(--srk-green-wa);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 22px rgba(37,211,102,.42);
  z-index: 980;
  transition: transform .22s, box-shadow .22s;
  text-decoration: none;
}
.fab-whatsapp:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37,211,102,.56);
  color: #fff;
}
.fab-whatsapp-tooltip {
  position: absolute;
  right: 68px;
  background: var(--srk-dark);
  color: #fff;
  padding: .35rem .75rem;
  border-radius: 6px;
  font-size: .78rem;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(8px);
  transition: opacity .2s, transform .2s;
  pointer-events: none;
}
.fab-whatsapp:hover .fab-whatsapp-tooltip { opacity: 1; transform: translateX(0); }

@media (max-width: 899px) { .fab-whatsapp { display: none; } }

/* Back to top */
.back-to-top {
  position: fixed;
  bottom: 5.5rem;
  right: 1.75rem;
  width: 44px; height: 44px;
  background: var(--srk-navy);
  color: #fff;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  z-index: 980;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity .25s, visibility .25s, transform .25s, background .2s;
}
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover   { background: var(--srk-navy-2); }

@media (max-width: 899px) { .back-to-top { bottom: 4.5rem; right: 1rem; } }

/* ── SCROLL REVEAL ─────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .65s cubic-bezier(.4,0,.2,1), transform .65s cubic-bezier(.4,0,.2,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

/* ── ADMIN STYLES ──────────────────────────────────────────────── */
.admin-body {
  font-family: var(--font-main);
  background: #F0F2F5;
  color: var(--srk-dark);
  padding-top: 0;
  padding-bottom: 0;
}

.admin-header {
  background: var(--srk-navy);
  border-bottom: 3px solid var(--srk-gold);
  height: 58px;
  display: flex;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 100;
}
.admin-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0 1.5rem;
}
.admin-brand      { font-size: 1.2rem; font-weight: 900; color: var(--srk-gold); letter-spacing: .05em; }
.admin-brand span { color: var(--srk-white); }

.admin-nav-list   { display: flex; gap: .25rem; }
.admin-nav-list a {
  color: rgba(255,255,255,.68);
  font-size: .85rem;
  padding: .35rem .75rem;
  border-radius: var(--radius);
  font-weight: 600;
}
.admin-nav-list a:hover,
.admin-nav-list a.active { background: rgba(245,158,11,.1); color: var(--srk-gold-light); }

.admin-logout-btn {
  background: rgba(255,255,255,.1);
  color: rgba(255,255,255,.78);
  padding: .35rem .85rem;
  border-radius: var(--radius);
  font-size: .85rem;
  font-weight: 700;
  border: 1px solid rgba(255,255,255,.14);
}
.admin-logout-btn:hover { background: rgba(255,255,255,.18); color: #fff; }

.admin-layout  { display: flex; min-height: calc(100vh - 58px); }
.admin-sidebar { width: 220px; background: var(--srk-dark2); flex-shrink: 0; padding: 1.5rem 0; }

.sidebar-section-label {
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.3);
  padding: .75rem 1.25rem .25rem;
}
.sidebar-link {
  display: flex;
  align-items: center;
  gap: .6rem;
  color: rgba(255,255,255,.52);
  font-size: .88rem;
  font-weight: 600;
  padding: .6rem 1.25rem;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}
.sidebar-link:hover,
.sidebar-link.active {
  background: rgba(245,158,11,.1);
  color: var(--srk-white);
  border-right: 3px solid var(--srk-gold);
}
.sidebar-link svg { width: 16px; height: 16px; opacity: .6; }

.admin-main { flex: 1; padding: 2rem; overflow-y: auto; }

.admin-page-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--srk-dark);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: .75rem;
}
.admin-page-title span { color: var(--srk-navy-2); }

.admin-card {
  background: var(--srk-white);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  margin-bottom: 1.5rem;
}
.admin-card-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--srk-dark);
  margin-bottom: 1.25rem;
  padding-bottom: .75rem;
  border-bottom: 2px solid var(--srk-gray);
  display: flex;
  align-items: center;
  gap: .5rem;
}
.admin-card-title span { color: var(--srk-navy-2); }

/* Admin stats */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1.25rem;
  margin-bottom: 2rem;
}
.stat-card {
  background: var(--srk-white);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border-top: 4px solid var(--srk-gold);
}
.stat-num   { font-size: 2.5rem; font-weight: 900; color: var(--srk-navy-2); line-height: 1; }
.stat-label { font-size: .8rem; font-weight: 700; color: #888; text-transform: uppercase; letter-spacing: .06em; margin-top: .25rem; }

/* Tables */
.admin-table-wrap { overflow-x: auto; }
.admin-table { width: 100%; border-collapse: collapse; font-size: .9rem; }
.admin-table th {
  background: var(--srk-gray);
  padding: .7rem 1rem;
  text-align: left;
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: #555;
  white-space: nowrap;
}
.admin-table td           { padding: .75rem 1rem; border-bottom: 1px solid #F0F0F0; vertical-align: middle; }
.admin-table tr:hover td  { background: #FAFAFA; }

/* Badges */
.badge        { display: inline-block; padding: .2rem .6rem; border-radius: 50px; font-size: .75rem; font-weight: 700; }
.badge-green  { background: #E6F4EA; color: #1E8A2E; }
.badge-red    { background: #FEF3C7; color: #92400E; }
.badge-yellow { background: #FEF3C7; color: #92400E; }

/* Table action buttons */
.action-btns { display: flex; gap: .4rem; align-items: center; }
.btn-edit     { background: #EFF6FF; color: #1D4ED8; border: none; border-radius: var(--radius); padding: .3rem .7rem; font-size: .8rem; font-weight: 600; cursor: pointer; }
.btn-edit:hover   { background: #DBEAFE; }
.btn-delete   { background: #FEF3C7; color: #92400E; border: none; border-radius: var(--radius); padding: .3rem .7rem; font-size: .8rem; font-weight: 600; cursor: pointer; }
.btn-delete:hover { background: #FDE68A; }
.btn-view     { background: #E6F4EA; color: #1E8A2E; border: none; border-radius: var(--radius); padding: .3rem .7rem; font-size: .8rem; font-weight: 600; cursor: pointer; }

/* Admin forms */
.admin-form .form-group { margin-bottom: 1.1rem; }
.admin-form label       { display: block; font-size: .82rem; font-weight: 700; color: #444; margin-bottom: .35rem; }

.admin-form input[type="text"],
.admin-form input[type="email"],
.admin-form input[type="time"],
.admin-form input[type="number"],
.admin-form input[type="password"],
.admin-form select,
.admin-form textarea {
  width: 100%;
  padding: .65rem .85rem;
  border: 2px solid #E0E0E0;
  border-radius: var(--radius);
  font-size: .95rem;
  font-family: var(--font-main);
  color: var(--srk-dark);
  background: var(--srk-white);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.admin-form input:focus,
.admin-form select:focus,
.admin-form textarea:focus {
  outline: none;
  border-color: var(--srk-navy-2);
  box-shadow: 0 0 0 3px rgba(26,47,94,.1);
}
.admin-form .form-row            { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.admin-form .form-row.three      { grid-template-columns: 1fr 1fr 1fr; }
.admin-form .form-check          { display: flex; align-items: center; gap: .5rem; font-size: .9rem; }
.admin-form .form-check input[type="checkbox"] { width: 18px; height: 18px; accent-color: var(--srk-navy-2); }

/* Alert messages */
.alert         { padding: .85rem 1.1rem; border-radius: var(--radius); margin-bottom: 1.25rem; font-size: .9rem; }
.alert-success { background: #E6F4EA; border: 1px solid #B6D9BF; color: #1E6B2E; }
.alert-error   { background: #FEF3C7; border: 1px solid #FDE68A; color: #92400E; }
.alert-warning { background: #FEF3C7; border: 1px solid #FDE68A; color: #795548; }

/* Image preview */
.img-preview-wrap     { margin-top: .5rem; }
.img-preview-wrap img { max-width: 200px; max-height: 150px; border-radius: var(--radius); border: 2px solid #E0E0E0; object-fit: cover; }

/* Admin gallery grid */
.admin-gallery-grid       { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 1rem; }
.admin-gallery-item       { border-radius: var(--radius); overflow: hidden; position: relative; background: var(--srk-gray); box-shadow: var(--shadow-sm); }
.admin-gallery-item img   { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.admin-gallery-item-info  { padding: .5rem .65rem; font-size: .78rem; font-weight: 600; color: #555; }

/* ── UTILITY CLASSES ─────────────────────────────────────────── */
.text-center  { text-align: center; }
.text-red     { color: var(--srk-gold); }
.text-yellow  { color: var(--srk-gold-light); }
.mt-1 { margin-top: .5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 2rem; }
.d-flex          { display: flex; }
.align-center    { align-items: center; }
.gap-1           { gap: .5rem; }
.gap-2           { gap: 1rem; }
.flex-wrap       { flex-wrap: wrap; }
.justify-between { justify-content: space-between; }
.w-100           { width: 100%; }

/* No-data placeholder */
.no-data     { text-align: center; padding: 4rem 1rem; color: var(--srk-gray-mid); }
.no-data svg { margin: 0 auto 1rem; opacity: .32; }
.no-data p   { font-size: 1rem; font-weight: 600; }

/* ── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 599px) {
  .section-pad         { padding: 3rem 0; }
  .section-title       { font-size: 1.6rem; }
  .hero-title          { font-size: 3.2rem; }
  .hero-tagline-en     { font-size: 1.3rem; }
  .form-row.two-col    { grid-template-columns: 1fr; }
  .admin-form .form-row        { grid-template-columns: 1fr; }
  .admin-form .form-row.three  { grid-template-columns: 1fr; }
  .admin-layout   { flex-direction: column; }
  .admin-sidebar  { width: 100%; padding: .5rem 0; }
  .lightbox-prev  { left: -40px; }
  .lightbox-next  { right: -40px; }
  .stats-grid-home { grid-template-columns: repeat(2, 1fr); }
  .stat-item       { border-right: none; border-bottom: 1px solid rgba(255,255,255,.08); }
  .stat-item:nth-child(odd)  { border-right: 1px solid rgba(255,255,255,.08); }
  .stat-item:last-child, .stat-item:nth-last-child(2):nth-child(odd) { border-bottom: none; }
}

/* ================================================================
   PREMIUM ADDITIONS v3
   ================================================================ */

/* ── Custom Scrollbar ─────────────────────────────────────────── */
::-webkit-scrollbar       { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--srk-navy-2); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--srk-gold); }

/* ── Scroll Progress Bar ──────────────────────────────────────── */
.scroll-progress-bar {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(to right, var(--srk-gold), var(--srk-blue));
  z-index: 9999;
  pointer-events: none;
  border-radius: 0 2px 2px 0;
  transition: width .08s linear;
}

/* ── Dark Mode ────────────────────────────────────────────────── */
[data-theme="dark"] {
  --srk-white:     #1C2840;
  --srk-offwhite:  #172035;
  --srk-gray:      #1E2A40;
  --srk-gray-2:    #2A3A54;
  --srk-dark:      #E8EEF8;
  --srk-dark2:     #C8D6EC;
  --srk-gray-mid:  #8090A8;
  --srk-gray-dark: #94A3B8;
}
[data-theme="dark"] body             { background: #111827; }
[data-theme="dark"] .admin-body      { background: #0D1520; }
[data-theme="dark"] .admin-card      { background: #1C2840; }
[data-theme="dark"] .admin-table th  { background: #1E2A40; }
[data-theme="dark"] .admin-table td  { border-bottom-color: #2A3A54; }
[data-theme="dark"] .timing-notice   { background: #1C2A1A; border-color: rgba(245,158,11,.2); }
[data-theme="dark"] .timing-notice p { color: #aab; }
[data-theme="dark"] .enquiry-section { background: #172035; }
[data-theme="dark"] .testimonials-section { background: #1E2A40; }
[data-theme="dark"] .contact-chip a  { color: var(--srk-dark); }
[data-theme="dark"] .footer-bottom   { color: rgba(255,255,255,.28); }

/* Dark mode toggle button */
.dark-mode-btn {
  background: none;
  border: 1px solid rgba(255,255,255,.2);
  color: rgba(255,255,255,.75);
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition), color var(--transition);
  flex-shrink: 0;
}
.dark-mode-btn:hover {
  background: rgba(245,158,11,.15);
  border-color: rgba(245,158,11,.4);
  color: var(--srk-gold-light);
}
.dark-mode-btn .icon-sun  { display: none; }
.dark-mode-btn .icon-moon { display: block; }
[data-theme="dark"] .dark-mode-btn .icon-sun  { display: block; }
[data-theme="dark"] .dark-mode-btn .icon-moon { display: none; }

/* ── Toast Notifications ──────────────────────────────────────── */
.toast-container {
  position: fixed;
  bottom: 5rem;
  right: 1.5rem;
  z-index: 8000;
  display: flex;
  flex-direction: column;
  gap: .5rem;
  pointer-events: none;
}
@media (max-width: 899px) {
  .toast-container { bottom: 4.5rem; left: 1rem; right: 1rem; }
}
.toast {
  background: var(--srk-dark);
  color: #fff;
  padding: .8rem 1.1rem;
  border-radius: var(--radius);
  font-size: .88rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: .6rem;
  box-shadow: var(--shadow-lg);
  transform: translateX(110%);
  transition: transform .35s cubic-bezier(.4,0,.2,1), opacity .35s;
  opacity: 0;
  pointer-events: all;
  min-width: 240px;
  max-width: 340px;
}
@media (max-width: 899px) {
  .toast { min-width: unset; max-width: unset; transform: translateY(80px); }
  .toast.show { transform: translateY(0); }
}
.toast.show { transform: translateX(0); opacity: 1; }
.toast-success { border-left: 4px solid #4ade80; }
.toast-info    { border-left: 4px solid var(--srk-gold); }
.toast-icon    { flex-shrink: 0; }

/* ── Next Departure Widget ────────────────────────────────────── */
.next-dep-widget {
  display: none;
  align-items: center;
  gap: .85rem;
  background: rgba(245,158,11,.1);
  border: 1px solid rgba(245,158,11,.28);
  border-radius: var(--radius);
  padding: .75rem 1.1rem;
  margin-top: 1.75rem;
  backdrop-filter: blur(6px);
  max-width: 460px;
  flex-wrap: wrap;
}
.nd-live {
  display: flex;
  align-items: center;
  gap: .35rem;
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .1em;
  color: #4ade80;
  background: rgba(74,222,128,.12);
  padding: .2rem .5rem;
  border-radius: 4px;
  white-space: nowrap;
  flex-shrink: 0;
}
.nd-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #4ade80;
  animation: ndBlink 1.5s ease-in-out infinite;
}
@keyframes ndBlink {
  0%, 100% { opacity: 1; }
  50%       { opacity: .2; }
}
.nd-content { flex: 1; min-width: 0; }
.nd-label   { font-size: .68rem; color: rgba(255,255,255,.5); font-weight: 700; text-transform: uppercase; letter-spacing: .07em; display: block; }
.nd-route   { font-size: .9rem; color: var(--srk-white); font-weight: 700; display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.nd-time    { font-size: 1rem; font-weight: 900; color: var(--srk-gold-light); white-space: nowrap; flex-shrink: 0; }

/* ── Hero Two-Column Layout ───────────────────────────────────── */
.hero-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.hero-map {
  display: none;
  flex-shrink: 0;
  width: 270px;
  opacity: .92;
}
@media (min-width: 1024px) {
  .hero-map { display: block; }
}

/* Route map SVG elements */
.map-route-line {
  fill: none;
  stroke: rgba(245,158,11,.18);
  stroke-width: 2.5;
}
.map-route-draw {
  fill: none;
  stroke: var(--srk-gold);
  stroke-width: 2.5;
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  animation: mapDraw 1.8s ease forwards;
}
.map-route-draw-2 { animation-delay: .45s; }
@keyframes mapDraw { to { stroke-dashoffset: 0; } }

.map-city-node { fill: var(--srk-gold); filter: drop-shadow(0 0 5px rgba(245,158,11,.6)); }
.map-hub-node  { fill: var(--srk-white); stroke: var(--srk-gold); stroke-width: 2.5; filter: drop-shadow(0 0 6px rgba(245,158,11,.5)); }

.map-city-ring {
  fill: none;
  stroke: var(--srk-gold);
  stroke-width: 1;
  animation: mapRingPulse 2.2s ease-out infinite;
  transform-box: fill-box;
  transform-origin: center;
}
.map-city-ring:nth-child(2) { animation-delay: .55s; }
.map-city-ring:nth-child(3) { animation-delay: 1.1s; }
@keyframes mapRingPulse {
  0%   { opacity: .4; transform: scale(.6); }
  100% { opacity: 0;  transform: scale(1.8); }
}

.map-city-label {
  fill: rgba(255,255,255,.72);
  font-size: 11px;
  font-weight: 600;
  text-anchor: middle;
  font-family: var(--font-main);
}
.map-bus rect.bus-body { fill: var(--srk-gold); }
.map-bus rect.bus-win  { fill: rgba(255,255,255,.65); }
.map-bus-2 rect.bus-body { fill: var(--srk-blue-light); }

/* ── Testimonials ─────────────────────────────────────────────── */
.testimonials-section { background: var(--srk-gray); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}
.testimonial-card {
  background: var(--srk-white);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--srk-gray-2);
  position: relative;
  transition: box-shadow var(--transition), transform var(--transition);
}
.testimonial-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }

.testimonial-stars {
  display: flex;
  gap: .15rem;
  margin-bottom: .85rem;
}
.star { color: var(--srk-gold); font-size: 1rem; line-height: 1; }

.testimonial-text {
  font-size: .9rem;
  color: var(--srk-gray-dark);
  line-height: 1.75;
  margin-bottom: 1.25rem;
  font-style: italic;
}
.testimonial-ta {
  font-size: .78rem;
  color: var(--srk-gray-mid);
  margin-top: .35rem;
  display: block;
}

.testimonial-author  { display: flex; align-items: center; gap: .65rem; }
.testimonial-avatar  {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--srk-navy), var(--srk-navy-2));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--srk-gold-light);
  font-size: .9rem;
  font-weight: 800;
  flex-shrink: 0;
}
.testimonial-name  { font-weight: 700; font-size: .9rem; color: var(--srk-dark); line-height: 1.2; }
.testimonial-route { font-size: .75rem; color: var(--srk-gray-mid); margin-top: .1rem; }

/* ── Stop Finder ──────────────────────────────────────────────── */
.stop-finder {
  margin-bottom: 2rem;
  position: relative;
  max-width: 440px;
}
.stop-finder-icon {
  position: absolute;
  left: .9rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--srk-gray-mid);
  pointer-events: none;
}
.stop-finder-input {
  width: 100%;
  padding: .75rem 1rem .75rem 2.8rem;
  border: 2px solid var(--srk-gray-2);
  border-radius: var(--radius);
  font-size: .95rem;
  font-family: var(--font-main);
  color: var(--srk-dark);
  background: var(--srk-white);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.stop-finder-input:focus {
  outline: none;
  border-color: var(--srk-navy-2);
  box-shadow: 0 0 0 3px rgba(26,47,94,.1);
}
.stop-row.sf-match  .stop-name-en { color: var(--srk-navy-2); font-weight: 800; }
.stop-row.sf-match  .stop-dot     { background: var(--srk-gold) !important; box-shadow: 0 0 0 2px var(--srk-gold) !important; }
.stop-row.sf-dim    { opacity: .28; }
.trip-card.sf-hidden { display: none; }

/* ── Print Styles ─────────────────────────────────────────────── */
.print-btn { display: inline-flex; }

@media print {
  .site-header, .mob-action-bar, .fab-whatsapp, .back-to-top,
  .stats-section, .why-section, .testimonials-section,
  .enquiry-section, #contact, .site-footer,
  .next-dep-widget, .stop-finder, .toast-container,
  .scroll-progress-bar, .dark-mode-btn,
  .no-print { display: none !important; }

  body { padding: 0 !important; background: white !important; font-size: 12pt; }

  .timings-page-header {
    background: none !important;
    color: #000 !important;
    padding: 1rem 0 !important;
  }
  .timings-page-header::after,
  .timings-page-header::before { display: none !important; }
  .timings-page-header h1         { color: #000 !important; font-size: 1.6rem; }
  .timings-page-header .ta-heading { color: #333 !important; }
  .route-city-badge { background: #f0f0f0 !important; color: #000 !important; border: 1px solid #ccc !important; }
  .route-arrow-icon { color: #555 !important; }

  .trips-grid { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); margin-top: 1rem; }
  .trip-card  { break-inside: avoid; box-shadow: none !important; border: 1px solid #ccc !important; }
  .trip-card-header {
    background: #1A2F5E !important;
    color: white !important;
    -webkit-print-color-adjust: exact !important;
    print-color-adjust: exact !important;
  }
  .stop-dot  { -webkit-print-color-adjust: exact !important; print-color-adjust: exact !important; }
  .stop-time { color: #1A2F5E !important; }
  .timing-notice { display: block !important; background: #fffbeb !important; }
  .section-title span { color: #1A2F5E !important; }
  .divider-red { background: #D97706 !important; -webkit-print-color-adjust: exact !important; }

  .btn-red, .btn-whatsapp, .btn-outline-red { display: none !important; }
  a[href]::after { content: none !important; }

  @page { margin: 1.5cm; }
}

/* ── 404 Page ─────────────────────────────────────────────────── */
.page-404 {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3rem 1rem;
}
.page-404-inner { max-width: 520px; }
.page-404-code {
  font-size: clamp(6rem, 18vw, 10rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -.04em;
  background: linear-gradient(135deg, var(--srk-navy-2), var(--srk-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: .25rem;
}
.page-404-icon   { font-size: 3.5rem; margin-bottom: 1rem; }
.page-404-title  { font-size: 1.5rem; font-weight: 800; margin-bottom: .75rem; color: var(--srk-dark); }
.page-404-desc   { color: var(--srk-gray-mid); margin-bottom: 2rem; line-height: 1.7; }
.page-404-links  { display: flex; flex-wrap: wrap; gap: .75rem; justify-content: center; }

/* ── JSON-LD / Structured Data marker (visual, debug only) ───── */
/* Nothing needed here — it's in <head> */

