/* ==========================================================================
   Gujarat WOSH 2026 — Site Stylesheet
   Palette derived from the official brochure/logo: deep navy + safety orange
   ========================================================================== */

:root {
  --navy: #0c3b63;
  --navy-dark: #082644;
  --navy-darker: #051a2e;
  /* Navy blended toward the logo icon's blue — used for the nav bar so it visibly
     ties to the brand mark, while staying dark enough for white text (contrast 7:1+). */
  --navy-icon: #155b8d;
  --navy-icon-dark: #11476d;
  --orange: #f26522;
  --orange-dark: #d4530f;
  --orange-light: #ff9257;
  --green-accent: #2e8b45;
  --gray-bg: #f5f7fa;
  --gray-border: #e2e8f0;
  --text-dark: #1c2b3a;
  --text-muted: #5c6b7a;
  --white: #ffffff;

  --font-heading: 'Poppins', 'Segoe UI', sans-serif;
  --font-body: 'Inter', 'Segoe UI', sans-serif;

  --radius: 10px;
  --shadow-sm: 0 2px 10px rgba(12, 59, 99, 0.08);
  --shadow-md: 0 10px 30px rgba(12, 59, 99, 0.12);
  --shadow-lg: 0 25px 60px rgba(5, 26, 46, 0.25);
  --grad-orange: linear-gradient(135deg, var(--orange-light), var(--orange) 55%, var(--orange-dark));
  --grad-navy: linear-gradient(135deg, var(--navy) 0%, var(--navy-darker) 100%);
}

/* ---------- Base ---------- */
/* overflow-x lives on html, not body: overflow-x on body forces overflow-y to a
   non-visible value too (per spec), which makes body a "scroll container" that
   position:sticky descendants (the nav) measure themselves against — but the
   browser still scrolls html/the viewport, not body, so sticky silently never
   engages. Keeping this on html avoids that trap while still killing the
   horizontal scrollbar from full-bleed sections. */
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--white);
}
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--navy);
}
p { color: var(--text-muted); line-height: 1.7; }
a { color: var(--navy); text-decoration: none; }
a:hover { color: var(--orange); }
.skip-link { position: absolute; top: -40px; left: 0; background: var(--navy); color: #fff; padding: 8px 16px; z-index: 2000; }
.skip-link:focus { top: 0; }

section { padding: 72px 0; }
@media (max-width: 767.98px) { section { padding: 48px 0; } }

.section-eyebrow {
  display: inline-block;
  color: var(--orange);
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-size: 0.82rem;
  margin-bottom: 10px;
}
.section-title { font-size: 2rem; margin-bottom: 14px; }
.text-gradient {
  background: var(--grad-orange);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.section-lead { max-width: 720px; }
.bg-light-gray { background: var(--gray-bg); }
.bg-navy { background: var(--navy); color: #fff; }
.bg-navy h1, .bg-navy h2, .bg-navy h3, .bg-navy h4 { color: #fff; }
.bg-navy p { color: rgba(255,255,255,0.85); }

/* ---------- Buttons ---------- */
.btn-cta {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: var(--grad-orange);
  background-size: 200% auto;
  background-position: 0% center;
  border: none;
  color: #fff;
  font-weight: 600;
  padding: 0.75rem 1.7rem;
  border-radius: 50px;
  box-shadow: 0 8px 20px rgba(242, 101, 34, 0.32);
  transition: background-position 0.5s ease, transform 0.25s ease, box-shadow 0.25s ease;
}
.btn-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(115deg, transparent 30%, rgba(255,255,255,0.45) 48%, rgba(255,255,255,0.45) 52%, transparent 70%);
  background-size: 250% 100%;
  background-position: 150% 0;
  transition: background-position 0.6s ease;
}
.btn-cta:hover, .btn-cta:focus {
  background-position: 100% center;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(242, 101, 34, 0.42);
}
.btn-cta:hover::before { background-position: -50% 0; }
.btn-outline-cta {
  background: transparent;
  border: 2px solid rgba(255,255,255,0.7);
  color: #fff;
  font-weight: 600;
  padding: 0.7rem 1.6rem;
  border-radius: 50px;
  transition: all 0.25s ease;
}
.btn-outline-cta:hover { background: #fff; color: var(--navy); border-color: #fff; transform: translateY(-3px); }
.btn-cta-light {
  background: #fff;
  border: 2px solid #fff;
  color: var(--orange-dark);
  font-weight: 700;
  padding: 0.7rem 1.6rem;
  border-radius: 50px;
  transition: all 0.25s ease;
  box-shadow: var(--shadow-sm);
}
.btn-cta-light:hover { background: var(--navy-darker); color: #fff; border-color: var(--navy-darker); transform: translateY(-3px); box-shadow: var(--shadow-md); }

/* ---------- Header ---------- */
.topbar {
  background: var(--navy-darker);
  color: rgba(255,255,255,0.85);
  font-size: 0.85rem;
  padding: 7px 0;
}
.topbar a { color: rgba(255,255,255,0.85); }
.topbar a:hover { color: var(--orange); }
.topbar-item i { color: var(--orange); margin-right: 4px; }

/* ---------- Social icons (header topbar + footer) ---------- */
.social-links { display: flex; align-items: center; gap: 10px; }
.social-links a {
  width: 30px; height: 30px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: #fff !important;
  font-size: 0.9rem;
  transition: all 0.25s ease;
}
.social-links a:hover { background: var(--grad-orange); color: #fff !important; transform: translateY(-3px); }

.main-navbar {
  background: var(--gray-bg);
  padding: 8px 0;
  box-shadow: none;
  border-top: 1px solid var(--gray-border);
  transition: all 0.3s ease;
}
.main-navbar.scrolled { padding: 7px 0; box-shadow: var(--shadow-md); background: #fff; border-top-color: transparent; }
.brand-logo { height: 42px; transition: height 0.3s ease; }
.main-navbar.scrolled .brand-logo { height: 36px; }
.main-navbar .nav-link {
  color: var(--text-dark);
  font-weight: 600;
  font-size: 0.94rem;
  padding: 0.4rem 0.8rem !important;
  position: relative;
}
/* Desktop: no logo in this bar (already shown large in the partner strip above) —
   nav bar switches to a navy background with links + brochure CTA centered as one group. */
@media (min-width: 992px) {
  .main-navbar { background: var(--navy-icon); border-top: none; }
  .main-navbar.scrolled { background: var(--navy-icon-dark); }
  /* Links and the brochure button are centered together as a single visual block —
     not links centered separately with the button hung off the right edge, which
     reads as the whole row being pushed right. */
  .main-navbar .nav-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 28px;
  }
  .main-navbar .nav-links-slot { flex-grow: 0; min-width: max-content; margin: 0; }
  .main-navbar .nav-links-slot .navbar-nav { flex-wrap: nowrap; }
  .main-navbar .nav-link { color: rgba(255,255,255,0.85); }
}
.main-navbar .nav-link::after {
  content: "";
  position: absolute;
  left: 0.8rem; right: 0.8rem; bottom: 0.05rem;
  height: 2px;
  background: var(--grad-orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}
.main-navbar .nav-link.active::after,
.main-navbar .nav-link:hover::after { transform: scaleX(1); }
.main-navbar .nav-link.active,
.main-navbar .nav-link:hover { color: var(--orange); }
.main-navbar .btn-cta { padding: 0.5rem 1.2rem; font-size: 0.85rem; }

/* ---------- Partner / Trust Strip ---------- */
.partner-strip {
  background: #fff;
  padding: 9px 0;
}
.partner-strip .container {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
}
.partner-logos {
  display: flex;
  align-items: center;
  gap: 26px;
  justify-self: start;
}
.partner-center-logo { justify-self: center; display: inline-flex; }
.partner-center-logo img { height: 60px; width: auto; }
.partner-logo-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.partner-logo-item .logo-label {
  font-size: 0.58rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 700;
  color: var(--text-muted);
  white-space: nowrap;
}
.partner-logo-item img {
  height: 48px;
  width: auto;
  object-fit: contain;
  filter: grayscale(35%);
  opacity: 0.85;
  transition: all 0.25s ease;
}
.partner-logo-item:hover img { filter: grayscale(0%); opacity: 1; }
.partner-divider { width: 1px; height: 30px; background: var(--gray-border); flex-shrink: 0; }
.header-cta-group { display: flex; align-items: center; gap: 10px; flex-shrink: 0; justify-self: end; }
.btn-header-cta {
  background: var(--grad-orange);
  background-size: 200% auto;
  background-position: 0% center;
  color: #fff;
  font-weight: 600;
  font-size: 0.82rem;
  padding: 0.45rem 1.05rem;
  border-radius: 50px;
  border: none;
  box-shadow: 0 6px 16px rgba(242, 101, 34, 0.28);
  transition: background-position 0.5s ease, transform 0.25s ease, box-shadow 0.25s ease;
  white-space: nowrap;
  display: inline-block;
}
.btn-header-cta:hover, .btn-header-cta:focus {
  background-position: 100% center;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(242, 101, 34, 0.38);
}
.btn-header-outline {
  background: transparent;
  border: 2px solid var(--navy);
  color: var(--navy);
  font-weight: 600;
  font-size: 0.82rem;
  padding: 0.38rem 1rem;
  border-radius: 50px;
  transition: all 0.25s ease;
  white-space: nowrap;
  display: inline-block;
}
.btn-header-outline:hover { background: var(--navy); color: #fff; transform: translateY(-2px); }
@media (max-width: 1250px) {
  .partner-logo-item .logo-label { display: none; }
  .partner-logos { gap: 18px; }
  .partner-divider { height: 24px; }
}

/* ---------- Hero ---------- */
@keyframes kenburns {
  0% { transform: scale(1) translate(0, 0); }
  100% { transform: scale(1.12) translate(-1.5%, -1%); }
}
@keyframes floatBlob {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-18px, 24px) scale(1.08); }
}
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes bounceDown {
  0%, 100% { transform: translateY(0); opacity: 0.7; }
  50% { transform: translateY(8px); opacity: 1; }
}

.hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  padding: 170px 0 150px;
  background: var(--navy-darker);
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('../images/site/hero-main.jpg');
  background-size: cover;
  background-position: center;
  animation: kenburns 22s ease-in-out infinite alternate;
  z-index: 0;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  /* A single-tone cinematic scrim (no colour bleed onto the photo) so the
     photography reads clean, the way a premium event site's hero does. */
  background: linear-gradient(100deg, rgba(5,26,46,0.93) 0%, rgba(5,26,46,0.72) 45%, rgba(12,59,99,0.42) 78%, rgba(12,59,99,0.2) 100%);
  z-index: 1;
}
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  z-index: 1;
  opacity: 0.55;
  pointer-events: none;
}
.hero-blob-1 { width: 380px; height: 380px; background: var(--orange); top: -80px; right: 5%; animation: floatBlob 9s ease-in-out infinite; }
.hero-blob-2 { width: 260px; height: 260px; background: #2e6f9e; bottom: -60px; right: 25%; animation: floatBlob 11s ease-in-out infinite reverse; }
.hero .container { position: relative; z-index: 2; }
.hero-eyebrow {
  display: inline-block;
  color: var(--orange);
  font-weight: 700; letter-spacing: 2px; text-transform: uppercase; font-size: 0.9rem;
  animation: fadeSlideUp 0.7s ease both;
}
.hero h1 {
  color: #fff; font-size: 3.1rem; font-weight: 800; line-height: 1.15; margin: 14px 0;
  animation: fadeSlideUp 0.7s ease 0.1s both;
}
.hero .tagline {
  font-size: 1.25rem; color: var(--orange-light); font-weight: 600; font-style: italic; margin-bottom: 22px;
  animation: fadeSlideUp 0.7s ease 0.2s both;
}
.hero p.hero-desc { animation: fadeSlideUp 0.7s ease 0.28s both; }
.hero-meta { display: flex; flex-wrap: wrap; gap: 22px; margin: 26px 0 32px; animation: fadeSlideUp 0.7s ease 0.36s both; }
.hero-meta-item { display: flex; align-items: center; gap: 10px; font-weight: 600; }
.hero-meta-item i { color: var(--orange); font-size: 1.3rem; }
.hero-ctas { animation: fadeSlideUp 0.7s ease 0.44s both; }
.hero-logos { display: flex; flex-wrap: wrap; align-items: center; gap: 18px; margin-top: 40px; animation: fadeSlideUp 0.7s ease 0.52s both; }
.hero-logos img { height: 46px; background: #fff; border-radius: 6px; padding: 6px 10px; box-shadow: var(--shadow-sm); transition: transform 0.25s ease; }
.hero-logos img:hover { transform: translateY(-4px) scale(1.04); }
.hero-scroll-indicator {
  position: absolute; bottom: 22px; left: 50%; transform: translateX(-50%);
  z-index: 2; color: rgba(255,255,255,0.75); font-size: 1.5rem;
  animation: bounceDown 2s ease-in-out infinite;
}
@media (max-width: 767.98px) {
  .hero { padding: 140px 0 70px; text-align: center; }
  .hero h1 { font-size: 2.15rem; }
  .hero-meta, .hero-logos { justify-content: center; }
  .hero-scroll-indicator { display: none; }
}

/* ---------- Homepage stats bridge (floats across the hero/section seam) ---------- */
.stats-bridge-wrap { position: relative; z-index: 3; margin-top: -64px; padding-top: 0; padding-bottom: 0; }
.stats-bridge-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  padding: 30px 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.stats-bridge-card .stat-chip {
  background: transparent;
  border: none;
  border-right: 1px solid var(--gray-border);
  border-radius: 0;
  flex: 1 1 0;
  min-width: 150px;
  text-align: center;
  padding: 4px 12px;
}
.stats-bridge-card .stat-chip:last-child { border-right: none; }
.stats-bridge-card .stat-chip .num {
  color: var(--orange);
  font-size: 2.1rem;
  font-weight: 800;
  display: block;
}
.stats-bridge-card .stat-chip .label { color: var(--text-muted); font-size: 0.85rem; font-weight: 600; }
@media (max-width: 767.98px) {
  .stats-bridge-wrap { margin-top: -36px; }
  .stats-bridge-card { flex-direction: column; text-align: center; padding: 22px 24px; }
  .stats-bridge-card .stat-chip { border-right: none; border-bottom: 1px solid var(--gray-border); padding: 12px 0; }
  .stats-bridge-card .stat-chip:first-child { padding-top: 0; }
  .stats-bridge-card .stat-chip:last-child { border-bottom: none; padding-bottom: 0; }
}

/* Page header (non-home pages) */
.page-header {
  position: relative;
  overflow: hidden;
  background: linear-gradient(120deg, var(--navy-darker), var(--navy) 120%);
  background-size: 200% 200%;
  animation: gradientDrift 12s ease infinite;
  color: #fff;
  padding: 140px 0 64px;
  text-align: center;
}
@keyframes gradientDrift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
.page-header .hero-blob-1 { width: 300px; height: 300px; top: -100px; left: 8%; opacity: 0.35; }
.page-header .hero-blob-2 { width: 220px; height: 220px; bottom: -80px; right: 12%; opacity: 0.3; }
.page-header .container { position: relative; z-index: 2; }
.page-header h1 { color: #fff; font-size: 2.5rem; margin-bottom: 10px; animation: fadeSlideUp 0.6s ease both; }
.page-header p { color: rgba(255,255,255,0.85); font-size: 1.1rem; font-style: italic; max-width: 650px; margin: 0 auto; animation: fadeSlideUp 0.6s ease 0.1s both; }
.page-header .breadcrumb-nav { margin-top: 14px; font-size: 0.9rem; color: rgba(255,255,255,0.7); animation: fadeSlideUp 0.6s ease 0.2s both; }
.page-header .breadcrumb-nav a { color: rgba(255,255,255,0.8); }
.page-header .breadcrumb-nav a:hover { color: var(--orange); }

/* ---------- Stat chips ---------- */
.stat-row { display: flex; flex-wrap: wrap; gap: 14px; }
.stat-chip {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius);
  padding: 14px 20px;
  min-width: 140px;
}
.stat-chip .num { font-family: var(--font-heading); font-weight: 800; font-size: 1.5rem; color: var(--orange); display: block; }
.stat-chip .label { font-size: 0.85rem; color: rgba(255,255,255,0.85); }

/* ---------- Cards ---------- */
.wosh-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--gray-border);
  border-radius: var(--radius);
  padding: 28px 24px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
/* Equal-height cards is opt-in (add Bootstrap's .h-100) — a bare height:100%
   here breaks any wosh-card used outside a stretched flex row (e.g. stacked
   standalone cards), since the card would inherit a stretched ancestor height
   instead of sizing to its own content. */
.wosh-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--grad-orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}
.wosh-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.wosh-card:hover::before { transform: scaleX(1); }
.wosh-card .icon-badge {
  width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(242, 101, 34, 0.1);
  color: var(--orange);
  border-radius: 14px;
  font-size: 1.6rem;
  margin-bottom: 16px;
  transition: transform 0.35s ease, background 0.35s ease, color 0.35s ease;
}
.wosh-card:hover .icon-badge {
  background: var(--grad-orange);
  color: #fff;
  transform: rotate(-8deg) scale(1.12);
}
.wosh-card h4 { font-size: 1.1rem; margin-bottom: 8px; }
.wosh-card p { margin-bottom: 0; font-size: 0.95rem; }
.wosh-card ul { padding-left: 1.1rem; margin-bottom: 0; color: var(--text-muted); font-size: 0.93rem; }
.wosh-card ul li { margin-bottom: 4px; }

.wosh-card.card-navy { background: var(--navy); border-color: var(--navy); }
.wosh-card.card-navy h4, .wosh-card.card-navy p, .wosh-card.card-navy ul { color: #fff; }
.wosh-card.card-navy .icon-badge { background: rgba(255,255,255,0.15); color: var(--orange); }
.wosh-card.card-navy:hover .icon-badge { background: var(--grad-orange); color: #fff; }

/* Photo card (used for image-led sections) */
.photo-card { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); transition: box-shadow 0.3s ease; }
.photo-card::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(5,26,46,0.35) 100%);
  opacity: 0;
  transition: opacity 0.35s ease;
}
.photo-card:hover { box-shadow: var(--shadow-lg); }
.photo-card:hover::after { opacity: 1; }
.photo-card img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.6s cubic-bezier(.25,.8,.25,1); }
.photo-card:hover img { transform: scale(1.08); }

/* ---------- Tier / pricing cards (Partnership) ---------- */
@keyframes glowPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(242, 101, 34, 0.45), var(--shadow-md); }
  50% { box-shadow: 0 0 0 10px rgba(242, 101, 34, 0), var(--shadow-md); }
}
.tier-card {
  position: relative;
  background: #fff;
  border: 2px solid var(--gray-border);
  border-radius: var(--radius);
  padding: 26px 20px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.tier-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--orange); }
.tier-card.featured {
  border-color: var(--orange);
  box-shadow: var(--shadow-md);
  animation: glowPulse 2.6s ease-in-out infinite;
}
.tier-card.featured::before {
  content: "Most Exclusive";
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--grad-orange); color: #fff; font-size: 0.72rem; font-weight: 700;
  padding: 4px 14px; border-radius: 20px; text-transform: uppercase; letter-spacing: 0.5px;
  box-shadow: var(--shadow-sm);
}
.tier-card .tier-name { font-family: var(--font-heading); font-weight: 700; color: var(--navy); font-size: 1.1rem; }
.tier-card .tier-price {
  font-family: var(--font-heading); font-weight: 800; font-size: 1.4rem; margin: 8px 0 2px;
  background: var(--grad-orange);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.tier-card .tier-gst { color: var(--text-muted); font-size: 0.8rem; }
.tier-card .tier-exclusivity { margin-top: 10px; font-size: 0.85rem; color: var(--text-muted); }

/* ---------- Tables ---------- */
.wosh-table-wrap { overflow-x: auto; border-radius: var(--radius); box-shadow: var(--shadow-sm); }
table.wosh-table { width: 100%; border-collapse: collapse; background: #fff; min-width: 720px; }
table.wosh-table th, table.wosh-table td {
  padding: 14px 16px; border-bottom: 1px solid var(--gray-border); font-size: 0.92rem; text-align: center; vertical-align: middle;
}
table.wosh-table th { background: var(--navy); color: #fff; font-family: var(--font-heading); font-weight: 600; white-space: nowrap; }
table.wosh-table td:first-child, table.wosh-table th:first-child { text-align: left; font-weight: 600; color: var(--text-dark); min-width: 240px; }
table.wosh-table tbody tr:nth-child(even) { background: var(--gray-bg); }
table.wosh-table .yes { color: var(--green-accent); font-weight: 700; }
table.wosh-table .no { color: #b0b8c1; }

/* Schedule table */
.schedule-table .time-col { color: var(--orange); font-weight: 700; white-space: nowrap; width: 210px; }
.schedule-table th:first-child, .schedule-table td:first-child { text-align: left; }

/* On narrow screens, stack the 2-column schedule table into cards instead of forcing horizontal scroll */
@media (max-width: 575.98px) {
  table.wosh-table.schedule-table { min-width: 0; }
  .schedule-table thead { display: none; }
  table.wosh-table.schedule-table,
  table.wosh-table.schedule-table tbody,
  table.wosh-table.schedule-table tr,
  table.wosh-table.schedule-table td { display: block; width: 100%; }
  .schedule-table tr { border-bottom: 1px solid var(--gray-border); padding: 12px 16px; }
  table.wosh-table.schedule-table td { border: none; padding: 4px 0 !important; text-align: left !important; min-width: 0 !important; white-space: normal !important; }
  .schedule-table .time-col { width: auto; }
}

/* ---------- CTA banner ---------- */
.cta-banner {
  position: relative;
  overflow: hidden;
  background: linear-gradient(120deg, var(--orange-light), var(--orange) 45%, var(--orange-dark));
  background-size: 200% 200%;
  animation: gradientDrift 8s ease infinite;
  color: #fff;
  padding: 48px 0;
}
.cta-banner h3 { color: #fff; }
.cta-banner p { color: rgba(255,255,255,0.92); margin-bottom: 0; }
.cta-banner.cta-banner-navy { background: linear-gradient(120deg, var(--navy), var(--navy-darker), var(--navy)); background-size: 200% 200%; }
.cta-banner.cta-banner-navy .btn-cta-light { color: var(--navy); }
.cta-banner.cta-banner-navy .btn-cta-light:hover { background: var(--orange); color: #fff; border-color: var(--orange); }

/* ---------- Enquiry form ---------- */
.enquiry-form-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: 34px 30px;
  border-top: 4px solid var(--orange);
}
.enquiry-form .form-label { font-weight: 600; font-size: 0.9rem; color: var(--text-dark); }
.enquiry-form .form-control, .enquiry-form .form-select {
  border-radius: 8px; border: 1px solid var(--gray-border); padding: 0.65rem 0.9rem;
}
.enquiry-form .form-control:focus, .enquiry-form .form-select:focus {
  border-color: var(--orange); box-shadow: 0 0 0 0.2rem rgba(242, 101, 34, 0.15);
}
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* ---------- Contact page ---------- */
.contact-info-card {
  background: var(--navy);
  color: #fff;
  border-radius: var(--radius);
  padding: 34px 30px;
}
.contact-info-card h3 { color: #fff; }
.contact-info-card .contact-line { display: flex; gap: 14px; margin-bottom: 20px; align-items: flex-start; }
.contact-info-card .contact-line i { color: var(--orange); font-size: 1.3rem; margin-top: 3px; }
.contact-info-card .contact-line a { color: #fff; }
.contact-info-card .contact-line a:hover { color: var(--orange); }
.contact-info-card small { color: rgba(255,255,255,0.7); }

/* ---------- Footer ---------- */
.footer-cta {
  background: linear-gradient(120deg, var(--orange-light), var(--orange) 45%, var(--orange-dark));
  background-size: 200% 200%;
  animation: gradientDrift 8s ease infinite;
  padding: 44px 0;
}
.footer-cta h3 { color: #fff; margin-bottom: 8px; }
.footer-cta p { color: rgba(255,255,255,0.92); margin-bottom: 20px; }

.site-footer { background: var(--navy-darker); color: rgba(255,255,255,0.75); }
.footer-main { padding: 56px 0 24px; }
.footer-logo { height: 50px; background: #fff; padding: 6px 10px; border-radius: 6px; }
.footer-tagline { color: var(--orange); font-weight: 600; margin-bottom: 6px; }
.site-footer h6 { color: #fff; text-transform: uppercase; letter-spacing: 1px; font-size: 0.85rem; margin-bottom: 16px; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: rgba(255,255,255,0.75); font-size: 0.92rem; }
.footer-links a:hover { color: var(--orange); }
.footer-contact { list-style: none; padding: 0; margin: 0; font-size: 0.9rem; }
.footer-contact li { margin-bottom: 12px; display: flex; gap: 10px; align-items: flex-start; }
.footer-contact i { color: var(--orange); margin-top: 3px; }
.footer-contact a { color: rgba(255,255,255,0.85); }
.footer-contact a:hover { color: var(--orange); }
.footer-divider { border-color: rgba(255,255,255,0.15); margin: 30px 0 20px; }
.footer-main .small { color: rgba(255,255,255,0.6); }
.footer-main .small a { color: rgba(255,255,255,0.85); font-weight: 600; text-decoration: underline; text-decoration-color: rgba(255,255,255,0.35); text-underline-offset: 2px; }
.footer-main .small a:hover { color: var(--orange); text-decoration-color: var(--orange); }

/* ---------- Badges / tags ---------- */
.tag-pill {
  display: inline-block;
  background: rgba(12, 59, 99, 0.06);
  color: var(--navy);
  border: 1px solid rgba(12, 59, 99, 0.15);
  border-radius: 30px;
  padding: 6px 16px;
  font-size: 0.85rem;
  font-weight: 600;
  margin: 0 8px 8px 0;
}
.tag-pill.orange { background: rgba(242, 101, 34, 0.08); color: var(--orange-dark); border-color: rgba(242, 101, 34, 0.25); }

/* ---------- Misc ---------- */
.numbered-badge {
  width: 42px; height: 42px;
  background: var(--navy);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading); font-weight: 700;
  flex-shrink: 0;
}
.divider-accent { width: 60px; height: 4px; background: var(--grad-orange); border-radius: 2px; margin: 14px 0 20px; }
.text-orange { color: var(--orange) !important; }
.alert { border-radius: 8px; }

/* ---------- Tag pills — subtle hover lift ---------- */
.tag-pill { transition: all 0.25s ease; cursor: default; }
.tag-pill:hover { background: var(--grad-orange); color: #fff; border-color: transparent; transform: translateY(-2px); }

/* ---------- Table row hover ---------- */
table.wosh-table tbody tr { transition: background 0.2s ease; }
table.wosh-table tbody tr:hover { background: rgba(242, 101, 34, 0.06) !important; }

/* ---------- Scroll-reveal (populated by assets/js/main.js) ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(.25,.8,.25,1), transform 0.7s cubic-bezier(.25,.8,.25,1);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-bg, .hero-blob-1, .hero-blob-2, .page-header, .cta-banner, .footer-cta, .tier-card.featured { animation: none !important; }
}

/* ---------- Back to top ---------- */
.back-to-top {
  position: fixed; right: 24px; bottom: 24px; z-index: 1050;
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--grad-orange); color: #fff; border: none;
  display: flex; align-items: center; justify-content: center; font-size: 1.2rem;
  box-shadow: var(--shadow-md);
  opacity: 0; visibility: hidden; transform: translateY(12px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
}
.back-to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

/* ---------- Icon badge base transition (for icon-badge used outside .wosh-card, e.g. tag context) ---------- */
.icon-badge { transition: transform 0.3s ease; }
