/* opsc-shared.css — nav, footer, page-hero: identical to homepage style */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --red: #ed1c24;
  --red-hover: #ff2030;
  --yellow: #f5d800;
  --black: #0a0a0a;
  --dark: #111111;
  --dark2: #1a1a1a;
  --mid: #2b2b2b;
  --grey: #6b6b6b;
  --light: #c8c8c8;
  --white: #f5f5f5;
  --nav-h: 68px;
}
html { scroll-behavior: smooth; }
body { font-family: 'Barlow', sans-serif; background: var(--black); color: var(--white); overflow-x: hidden; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 48px; height: var(--nav-h);
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: background 0.3s;
}
.nav-logo img { height: 48px; width: auto; display: block; }
.nav-links { display: flex; list-style: none; gap: 32px; align-items: center; }
.nav-links a {
  font-family: 'Barlow', sans-serif; font-weight: 500; font-size: 13px;
  letter-spacing: 1px; text-transform: uppercase; color: var(--light);
  text-decoration: none; transition: color 0.2s; position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 2px; background: var(--yellow); transition: width 0.25s;
}
.nav-links a:hover { color: #fff; }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: #fff; }
.nav-links a.active::after { width: 100%; }
.nav-cta { background: var(--red) !important; color: #fff !important; padding: 10px 24px; font-weight: 600 !important; letter-spacing: 1.5px !important; }
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--red-hover) !important; }

/* ── HAMBURGER ── */
.nav-hamburger {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 44px; height: 44px; background: none; border: none; cursor: pointer;
  padding: 4px; position: relative; z-index: 102;
  -webkit-tap-highlight-color: transparent; touch-action: manipulation;
}
.nav-hamburger span {
  display: block; width: 24px; height: 2px; background: #fff;
  transition: transform 0.3s, opacity 0.3s; transform-origin: center;
  pointer-events: none;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── DRAWER OVERLAY ── */
.drawer-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.5);
  z-index: 103; opacity: 0; pointer-events: none; transition: opacity 0.3s;
}
.drawer-overlay.open { opacity: 1; pointer-events: auto; }

/* ── SLIDE-OUT DRAWER ── */
.mobile-drawer {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: 30vw; min-width: 220px; max-width: 300px;
  background: #0d0d0d; border-left: 1px solid rgba(255,255,255,0.08);
  z-index: 104; transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
  display: flex; flex-direction: column;
  padding: 88px 28px 40px; overflow-y: auto;
}
.mobile-drawer.open { transform: translateX(0); }
.mobile-drawer ul { list-style: none; display: flex; flex-direction: column; }
.mobile-drawer ul li { border-bottom: 1px solid rgba(255,255,255,0.07); }
.mobile-drawer ul a {
  display: block; padding: 16px 0;
  font-family: 'Barlow Condensed', sans-serif; font-weight: 700;
  font-size: 17px; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--light); text-decoration: none; transition: color 0.2s;
}
.mobile-drawer ul a:hover,
.mobile-drawer ul a.active { color: var(--yellow); }
.drawer-cta { margin-top: 28px; }
.drawer-cta a {
  display: block; background: var(--red); color: #fff; text-align: center;
  padding: 14px 20px; font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 14px; letter-spacing: 2px; text-transform: uppercase;
  text-decoration: none; transition: background 0.2s;
}
.drawer-cta a:hover { background: var(--red-hover); }

/* ── PAGE HERO BANNER ── */
.page-hero {
  position: relative; height: 52vh; min-height: 340px; max-height: 520px;
  display: flex; align-items: flex-end; overflow: hidden;
}
.page-hero-visual { position: absolute; inset: 0; z-index: 0; }
.page-hero-visual img {
  width: 100%; height: 100%; object-fit: cover;
  object-position: center 30%; display: block;
}
.page-hero-bg {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(to right, rgba(5,5,5,0.55) 0%, rgba(5,5,5,0.2) 60%, rgba(5,5,5,0.05) 100%),
    linear-gradient(to top, rgba(5,5,5,0.92) 0%, rgba(5,5,5,0.1) 50%);
}
.page-hero-content {
  position: relative; z-index: 2;
  padding: 0 64px 56px; width: 100%;
  opacity: 0; transform: translateY(20px);
  animation: fadeUp 0.75s ease 0.1s forwards;
}
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }
.page-hero-eyebrow {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 600; font-size: 12px;
  letter-spacing: 3.5px; text-transform: uppercase; color: var(--yellow);
  margin-bottom: 12px; display: flex; align-items: center; gap: 12px;
}
.page-hero-eyebrow::before { content: ''; display: block; width: 28px; height: 2px; background: var(--yellow); }
.page-hero-title {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 800;
  font-size: clamp(42px, 6vw, 80px); line-height: 0.9;
  text-transform: uppercase; color: #fff;
}
.page-hero-title span { color: var(--red); }

/* ── SECTION COMMON ── */
.section-eyebrow {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 600; font-size: 12px;
  letter-spacing: 3px; text-transform: uppercase; color: var(--yellow);
  margin-bottom: 14px; display: flex; align-items: center; gap: 10px;
}
.section-eyebrow::before { content: ''; display: block; width: 24px; height: 2px; background: var(--yellow); }
.section-title { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: clamp(34px, 4.5vw, 58px); text-transform: uppercase; line-height: 1; color: #fff; margin-bottom: 16px; }
.section-sub { font-weight: 300; font-size: 15px; line-height: 1.8; color: var(--grey); max-width: 540px; }
.section-divider { width: 56px; height: 3px; background: var(--yellow); margin: 22px 0 30px; }

/* ── BUTTONS ── */
.btn-primary {
  background: var(--red); color: #fff; text-decoration: none;
  font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 14px;
  letter-spacing: 2px; text-transform: uppercase; padding: 15px 38px;
  display: inline-flex; align-items: center; gap: 10px;
  transition: background 0.2s, transform 0.2s; border: none; cursor: pointer;
}
.btn-primary:hover { background: var(--red-hover); transform: translateY(-1px); }
.btn-secondary {
  background: transparent; color: #fff; text-decoration: none;
  font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 14px;
  letter-spacing: 2px; text-transform: uppercase; padding: 13px 36px;
  border: 1px solid rgba(255,255,255,0.28);
  display: inline-flex; align-items: center; gap: 10px;
  transition: border-color 0.2s, color 0.2s;
}
.btn-secondary:hover { border-color: var(--yellow); color: var(--yellow); }
.btn-white {
  background: #fff; color: var(--red); text-decoration: none;
  font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 14px;
  letter-spacing: 2px; text-transform: uppercase; padding: 17px 42px;
  white-space: nowrap; display: inline-flex; align-items: center; gap: 10px;
  transition: background 0.2s, color 0.2s;
}
.btn-white:hover { background: var(--yellow); color: var(--black); }

/* ── CTA BANNER ── */
.cta-banner {
  background: var(--red); padding: 84px 64px;
  display: grid; grid-template-columns: 1fr auto;
  align-items: center; gap: 48px;
  position: relative; overflow: hidden;
}
.cta-watermark {
  position: absolute; right: 40px; top: 50%; transform: translateY(-50%);
  width: 500px; height: auto; opacity: 0.15; pointer-events: none; mix-blend-mode: screen;
}
.cta-banner h2 { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: clamp(28px, 3.5vw, 52px); text-transform: uppercase; line-height: 1.05; color: #fff; position: relative; z-index: 1; }
.cta-banner h2 em { font-style: normal; color: var(--yellow); }

/* ── SCROLL REVEAL ── */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.12s; }
.reveal-delay-2 { transition-delay: 0.22s; }
.reveal-delay-3 { transition-delay: 0.32s; }

/* ── FOOTER ── */
footer { background: #050505; padding: 64px 64px 32px; border-top: 1px solid rgba(255,255,255,0.06); }
.footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 60px; }
.footer-logo img { height: 52px; width: auto; margin-bottom: 16px; }
.footer-brand p { font-size: 13px; line-height: 1.8; color: var(--grey); max-width: 280px; }
.footer-col h5 { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 13px; letter-spacing: 2px; text-transform: uppercase; color: var(--light); margin-bottom: 18px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 13px; color: var(--grey); text-decoration: none; transition: color 0.2s; }
.footer-col a:hover { color: var(--yellow); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding-top: 28px; display: flex; justify-content: space-between; align-items: center; }
.footer-bottom p { font-size: 12px; color: var(--grey); }
.footer-bottom a { color: #888; text-decoration: none; }
.footer-bottom a:hover { color: var(--yellow); }
.footer-license { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 12px; letter-spacing: 1.5px; color: var(--yellow); background: rgba(245,216,0,0.08); border: 1px solid rgba(245,216,0,0.2); padding: 5px 14px; }
.footer-accreditations { display: flex; align-items: center; gap: 20px; }
.footer-accreditations img { height: 25px; width: auto; display: block; opacity: 0.9; transition: opacity 0.2s; }
.footer-accreditations img:hover { opacity: 1; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  nav { padding: 0 20px; height: 60px; }
  .nav-logo img { height: 40px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .page-hero-content { padding: 0 24px 40px; }
  .cta-banner { padding: 56px 24px; grid-template-columns: 1fr; text-align: center; gap: 28px; }
  .cta-watermark { display: none; }
  .btn-white { justify-content: center; }
  footer { padding: 48px 20px 24px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .footer-accreditations { flex-wrap: wrap; justify-content: center; gap: 20px; }
}
@media (max-width: 540px) {
  .footer-top { grid-template-columns: 1fr; }
  .footer-col { text-align: center; }
  .footer-brand { text-align: center; }
  .footer-brand p { max-width: 100%; }
}


/* ============================================================
   PAGE-SPECIFIC STYLES — consolidated from individual pages
   ============================================================ */

/* ── PAGE HERO (shared across inner pages) ── */
.page-hero { position: relative; height: 52vh; min-height: 340px; overflow: hidden; display: flex; align-items: flex-end; }
.page-hero-visual { position: absolute; inset: 0; z-index: 0; }
.page-hero-visual img { width: 100%; height: 100%; object-fit: cover; display: block; }
.page-hero-bg { position: absolute; inset: 0; z-index: 1; background: linear-gradient(to top, rgba(5,5,5,0.82) 0%, rgba(5,5,5,0.25) 55%, rgba(5,5,5,0.1) 100%); }
.page-hero-content { position: relative; z-index: 2; padding: 0 64px 52px; opacity: 0; transform: translateY(20px); animation: fadeUp 0.7s ease 0.1s forwards; }
.page-hero-eyebrow { font-family: 'Barlow Condensed', sans-serif; font-weight: 600; font-size: 12px; letter-spacing: 3px; text-transform: uppercase; color: var(--yellow); margin-bottom: 10px; display: flex; align-items: center; gap: 10px; }
.page-hero-eyebrow::before { content: ''; display: block; width: 24px; height: 2px; background: var(--yellow); }
.page-hero-title { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: clamp(48px, 7vw, 80px); text-transform: uppercase; line-height: 0.9; color: #fff; }
.page-hero-title span { color: var(--red); }

/* ── ABOUT / FLEET — split layout ── */
.about-section { background: var(--black); padding: 100px 64px; }
.split-section { display: grid; grid-template-columns: 1fr 1fr; min-height: 560px; }
.split-visual { position: relative; overflow: hidden; background: var(--dark2); }
.split-visual-inner { position: absolute; inset: 0; background: radial-gradient(ellipse 70% 70% at 55% 45%, #1e1e1e 0%, #0a0a0a 100%); display: flex; align-items: center; justify-content: center; }
.split-visual svg { width: 72%; opacity: 0.85; }
.split-content { padding: 84px 72px; display: flex; flex-direction: column; justify-content: center; background: var(--black); }
.feature-list { list-style: none; margin: 30px 0 40px; display: flex; flex-direction: column; gap: 14px; }
.feature-list li { font-size: 14px; color: var(--light); display: flex; align-items: center; gap: 14px; }
.feature-list li::before { content: ''; width: 7px; height: 7px; background: var(--yellow); flex-shrink: 0; clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%); }

/* ── ABOUT — stats & why points ── */
.stats-section { background: var(--dark); padding: 80px 64px; }
.stats-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
.stat-cell { background: var(--dark2); padding: 44px 36px; position: relative; }
.stat-cell::after { content: ''; position: absolute; top: 0; left: 0; width: 3px; height: 100%; background: var(--red); }
.stat-num { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 58px; color: #fff; line-height: 1; margin-bottom: 6px; }
.stat-num span { color: var(--yellow); }
.stat-label { font-size: 13px; color: var(--grey); }
.why-points { display: flex; flex-direction: column; gap: 32px; }
.why-point { display: flex; gap: 20px; align-items: flex-start; }
.why-point-num { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 15px; color: var(--yellow); min-width: 28px; padding-top: 3px; }
.why-point h4 { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 18px; text-transform: uppercase; letter-spacing: 1px; color: #fff; margin-bottom: 6px; }
.why-point p { font-size: 13px; line-height: 1.7; color: var(--grey); }

/* ── ABOUT — accreditations grid ── */
.accred-section { background: var(--black); padding: 80px 64px; border-top: 1px solid rgba(255,255,255,0.06); }
.accred-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 2px; margin-top: 40px; }
.accred-card { background: var(--dark2); padding: 36px 28px; border-top: 3px solid var(--yellow); }
.accred-card h4 { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 18px; text-transform: uppercase; letter-spacing: 1px; color: #fff; margin-bottom: 8px; }
.accred-card p { font-size: 13px; color: var(--grey); line-height: 1.6; }

/* ── CONTACT ── */
.contact-section { background: var(--dark); padding: 100px 64px; }
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; margin-top: 60px; }
.enquiry-form { background: var(--dark2); padding: 48px; }
.enquiry-form h3 { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 28px; text-transform: uppercase; letter-spacing: 1px; color: #fff; margin-bottom: 32px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--grey); margin-bottom: 8px; }
.form-group input,
.form-group select,
.form-group textarea { width: 100%; background: var(--black); border: 1px solid rgba(255,255,255,0.1); padding: 14px 16px; font-size: 14px; color: var(--white); font-family: 'Barlow', sans-serif; outline: none; transition: border-color 0.2s; -webkit-appearance: none; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--yellow); }
.form-group textarea { height: 120px; resize: vertical; }
.form-group select option { background: var(--dark2); }
.form-submit { width: 100%; margin-top: 8px; justify-content: center; font-size: 15px; padding: 17px; }
.form-submit:disabled { opacity: 0.45; cursor: not-allowed; transform: none !important; }
.recaptcha-wrap { margin: 4px 0 20px; }
.recaptcha-wrap .grecaptcha-badge { visibility: visible; }
.recaptcha-wrap > div { max-width: 100%; }
.form-success { display: none; text-align: center; padding: 48px 24px; }
.form-success-icon { font-size: 52px; margin-bottom: 16px; }
.form-success h4 { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 26px; text-transform: uppercase; margin-bottom: 10px; }
.form-success p { font-size: 14px; color: var(--grey); line-height: 1.7; }
.form-success a { color: var(--yellow); text-decoration: none; }
.contact-sidebar { display: flex; flex-direction: column; gap: 4px; }
.phone-block { background: var(--red); padding: 40px 36px; text-align: center; margin-bottom: 4px; }
.phone-block p { font-family: 'Barlow Condensed', sans-serif; font-weight: 600; font-size: 11px; letter-spacing: 2.5px; text-transform: uppercase; color: rgba(255,255,255,0.7); margin-bottom: 10px; }
.phone-block a { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: clamp(28px,4vw,44px); color: #fff; display: block; letter-spacing: 1px; text-decoration: none; transition: color 0.2s; }
.phone-block a:hover { color: var(--yellow); }
.phone-block small { font-size: 12px; color: rgba(255,255,255,0.6); display: block; margin-top: 6px; }
.contact-details { display: flex; flex-direction: column; gap: 0; }
.contact-item { display: flex; gap: 18px; align-items: flex-start; padding: 24px 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
.contact-item:first-child { border-top: 1px solid rgba(255,255,255,0.06); }
.contact-icon-wrap { width: 46px; height: 46px; background: var(--mid); display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; border-left: 3px solid var(--red); }
.contact-label { font-family: 'Barlow Condensed', sans-serif; font-weight: 600; font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--grey); display: block; margin-bottom: 4px; }
.contact-val { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 17px; color: #fff; text-decoration: none; transition: color 0.2s; }
.contact-val:hover { color: var(--yellow); }
.radio-group { display: flex; gap: 4px; margin-top: 4px; }
.radio-label { position: relative; cursor: pointer; }
.radio-label input[type="radio"] { position: absolute; opacity: 0; width: 0; height: 0; }
.radio-btn { display: block; padding: 10px 20px; font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 13px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--grey); background: var(--black); border: 1px solid rgba(255,255,255,0.12); transition: all 0.2s; user-select: none; }
.radio-label input[type="radio"]:checked + .radio-btn { background: var(--red); border-color: var(--red); color: #fff; }
.radio-label:hover .radio-btn { border-color: var(--yellow); color: #fff; }

/* ── GALLERY ── */
.gallery-section { background: var(--dark); padding: 100px 64px; }
.gallery-filters { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 40px; }
.filter-btn { padding: 10px 22px; border: 1px solid rgba(255,255,255,0.15); background: transparent; color: var(--light); font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 13px; letter-spacing: 1.5px; text-transform: uppercase; cursor: pointer; transition: all 0.2s; }
.filter-btn:hover,
.filter-btn.active { background: var(--red); border-color: var(--red); color: #fff; }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: 300px; gap: 4px; }
.gallery-cell { position: relative; overflow: hidden; background: var(--dark2); cursor: pointer; }
.gallery-cell.wide { grid-column: span 2; }
.gallery-cell img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.45s ease, filter 0.35s; filter: brightness(0.88) saturate(0.85); }
.gallery-cell:hover img { transform: scale(1.06); filter: brightness(1) saturate(1); }
.gallery-cell .cell-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, transparent 55%); opacity: 0; transition: opacity 0.3s; display: flex; align-items: flex-end; padding: 20px; }
.gallery-cell:hover .cell-overlay { opacity: 1; }
.cell-overlay span { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 13px; letter-spacing: 1.5px; text-transform: uppercase; color: #fff; }
.lightbox { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.93); z-index: 500; align-items: center; justify-content: center; }
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 88vh; object-fit: contain; }
.lb-close { position: absolute; top: 20px; right: 24px; background: none; border: none; color: #fff; font-size: 40px; cursor: pointer; line-height: 1; font-family: 'Barlow Condensed', sans-serif; }
.lb-caption { position: absolute; bottom: 24px; left: 0; right: 0; text-align: center; font-family: 'Barlow Condensed', sans-serif; font-weight: 600; font-size: 13px; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,0.5); }

/* ── HOURS ── */
.hours-section { background: var(--dark); padding: 100px 64px; }
.hours-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; margin-top: 60px; }
.hours-table { display: flex; flex-direction: column; }
.hours-row { display: flex; justify-content: space-between; align-items: center; padding: 18px 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
.hours-row:first-child { border-top: 1px solid rgba(255,255,255,0.06); }
.hours-row.today .hours-day,
.hours-row.today .hours-time { color: #fff; }
.hours-row.today { background: rgba(245,216,0,0.05); margin: 0 -12px; padding: 18px 12px; }
.hours-row.today .hours-time { color: var(--yellow) !important; }
.hours-day { font-family: 'Barlow Condensed', sans-serif; font-weight: 600; font-size: 16px; letter-spacing: 1px; text-transform: uppercase; color: var(--light); }
.hours-time { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 16px; }
.hours-open { color: var(--yellow) !important; }
.hours-closed { color: var(--grey) !important; }

/* ── SPECIALS ── */
.specials-section { background: var(--dark); padding: 100px 64px; }
.specials-intro { margin-bottom: 60px; }
.specials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.special-card { background: var(--dark2); overflow: hidden; }
.special-card-top { background: var(--mid); padding: 26px 32px 22px; display: flex; align-items: center; justify-content: space-between; }
.special-badge { background: var(--yellow); color: var(--black); font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 26px; padding: 5px 14px; line-height: 1; }
.special-title { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 21px; text-transform: uppercase; letter-spacing: 1px; color: #fff; }
.special-body { padding: 28px 32px 32px; }
.special-desc { font-size: 13px; line-height: 1.75; color: var(--grey); margin-bottom: 22px; }
.info-box { background: var(--dark2); border-left: 3px solid var(--yellow); padding: 28px 32px; margin-top: 48px; display: flex; gap: 20px; align-items: flex-start; }
.info-box-icon { font-size: 28px; flex-shrink: 0; }
.info-box p { font-size: 14px; line-height: 1.75; color: var(--grey); }
.info-box p strong { color: var(--white); }
.info-box p a { color: var(--yellow); text-decoration: none; }

/* ── PRIVACY POLICY ── */
.privacy-section { background: var(--black); padding: 100px 64px; max-width: 860px; margin: 0 auto; }
.privacy-section h2 { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 26px; text-transform: uppercase; letter-spacing: 1px; color: #fff; margin: 48px 0 14px; padding-top: 48px; border-top: 1px solid rgba(255,255,255,0.07); }
.privacy-section h2:first-of-type { margin-top: 40px; padding-top: 0; border-top: none; }
.privacy-section p { font-size: 14px; color: var(--grey); line-height: 1.8; margin-bottom: 16px; }
.privacy-section ul { margin: 0 0 20px 0; padding-left: 0; list-style: none; display: flex; flex-direction: column; gap: 10px; }
.privacy-section ul li { font-size: 14px; color: var(--grey); line-height: 1.7; padding-left: 22px; position: relative; }
.privacy-section ul li::before { content: ''; position: absolute; left: 0; top: 8px; width: 7px; height: 7px; background: var(--yellow); clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%); }
.privacy-section a { color: var(--yellow); text-decoration: none; }
.privacy-section a:hover { text-decoration: underline; }
.privacy-updated { display: inline-block; font-family: 'Barlow Condensed', sans-serif; font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--grey); background: var(--dark2); padding: 6px 14px; margin-bottom: 32px; border-left: 3px solid var(--red); }

/* ── PAGE-SPECIFIC RESPONSIVE ── */
@media (max-width: 900px) {
  .page-hero-content { padding: 0 24px 36px; }
  .about-section { padding: 64px 20px; }
  .split-section { grid-template-columns: 1fr; }
  .split-visual { min-height: 280px; }
  .split-visual-inner { position: relative; height: 280px; }
  .split-content { padding: 48px 24px; }
  .stats-section { padding: 64px 20px; }
  .stats-layout { grid-template-columns: 1fr; gap: 48px; }
  .accred-section { padding: 64px 20px; }
  .accred-grid { grid-template-columns: 1fr 1fr; }
  .contact-section { padding: 64px 20px; }
  .contact-layout { grid-template-columns: 1fr; gap: 48px; }
  .enquiry-form { padding: 32px 24px; }
  .form-row { grid-template-columns: 1fr; }
  .gallery-section { padding: 64px 20px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 220px; }
  .gallery-cell.wide { grid-column: span 2; }
  .hours-section { padding: 64px 20px; }
  .hours-layout { grid-template-columns: 1fr; gap: 48px; }
  .specials-section { padding: 64px 20px; }
  .specials-grid { grid-template-columns: 1fr; }
  .privacy-section { padding: 64px 24px; }
}
@media (max-width: 540px) {
  .accred-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 240px; }
  .gallery-cell.wide { grid-column: span 1; }
}


/* ============================================================
   GLOBAL BASE STYLES — previously inline in index.html
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --red: #ed1c24;
  --red-hover: #ff2030;
  --yellow: #f5d800;
  --black: #0a0a0a;
  --dark: #111111;
  --dark2: #1a1a1a;
  --mid: #2b2b2b;
  --grey: #6b6b6b;
  --light: #c8c8c8;
  --white: #f5f5f5;
}
html { scroll-behavior: smooth; }
body { font-family: 'Barlow', sans-serif; background: var(--black); color: var(--white); overflow-x: hidden; }

/* ── NAV ── */
nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; display: flex; align-items: center; justify-content: space-between; padding: 0 48px; height: 68px; background: rgba(10,10,10,0.95); backdrop-filter: blur(14px); border-bottom: 1px solid rgba(255,255,255,0.07); transition: background 0.3s; }
.nav-logo img { height: 48px; width: auto; display: block; }
.nav-links { display: flex; list-style: none; gap: 32px; align-items: center; }
.nav-links a { font-family: 'Barlow', sans-serif; font-weight: 500; font-size: 13px; letter-spacing: 1px; text-transform: uppercase; color: var(--light); text-decoration: none; transition: color 0.2s; position: relative; }
.nav-links a::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px; background: var(--yellow); transition: width 0.25s; }
.nav-links a:hover { color: #fff; }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-links a.active { color: #fff; }
.nav-cta { background: var(--red) !important; color: #fff !important; padding: 10px 24px; font-weight: 600 !important; letter-spacing: 1.5px !important; }
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--red-hover) !important; }

/* ── HAMBURGER ── */
.nav-hamburger { display: none; flex-direction: column; justify-content: center; gap: 5px; width: 44px; height: 44px; background: none; border: none; cursor: pointer; padding: 4px; position: relative; z-index: 102; -webkit-tap-highlight-color: transparent; touch-action: manipulation; }
.nav-hamburger span { display: block; width: 24px; height: 2px; background: #fff; transition: transform 0.3s, opacity 0.3s; transform-origin: center; pointer-events: none; }
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── DRAWER OVERLAY ── */
.drawer-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 103; opacity: 0; pointer-events: none; transition: opacity 0.3s; }
.drawer-overlay.open { opacity: 1; pointer-events: auto; }

/* ── MOBILE DRAWER ── */
.mobile-drawer { position: fixed; top: 0; right: 0; bottom: 0; width: 30vw; min-width: 220px; max-width: 300px; background: #0d0d0d; border-left: 1px solid rgba(255,255,255,0.08); z-index: 104; transform: translateX(100%); transition: transform 0.35s cubic-bezier(0.4,0,0.2,1); display: flex; flex-direction: column; padding: 88px 28px 40px; overflow-y: auto; }
.mobile-drawer.open { transform: translateX(0); }
.mobile-drawer ul { list-style: none; display: flex; flex-direction: column; }
.mobile-drawer ul li { border-bottom: 1px solid rgba(255,255,255,0.07); }
.mobile-drawer ul a { display: block; padding: 16px 0; font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 17px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--light); text-decoration: none; transition: color 0.2s; }
.mobile-drawer ul a:hover { color: var(--yellow); }
.drawer-cta { margin-top: 28px; }
.drawer-cta a { display: block; background: var(--red); color: #fff; text-align: center; padding: 14px 20px; font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 14px; letter-spacing: 2px; text-transform: uppercase; text-decoration: none; transition: background 0.2s; }
.drawer-cta a:hover { background: var(--red-hover); }

/* ── HERO ── */
.hero { position: relative; height: 100vh; min-height: 620px; display: flex; align-items: flex-end; overflow: hidden; }
.hero-visual { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.hero-visual img { width: 100%; height: 100%; object-fit: cover; object-position: center 20%; display: block; }
.hero-bg { position: absolute; inset: 0; z-index: 1; background: linear-gradient(to right, rgba(5,5,5,0.3) 0%, rgba(5,5,5,0.15) 50%, rgba(5,5,5,0.05) 100%), linear-gradient(to top, rgba(5,5,5,0.88) 0%, rgba(5,5,5,0.0) 35%); }
.hero-content { position: relative; z-index: 2; padding: 0 64px 110px; max-width: 660px; opacity: 0; transform: translateY(28px); animation: fadeUp 0.85s ease 0.15s forwards; }
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }
.hero-eyebrow { font-family: 'Barlow Condensed', sans-serif; font-weight: 600; font-size: 13px; letter-spacing: 3.5px; text-transform: uppercase; color: var(--yellow); margin-bottom: 18px; display: flex; align-items: center; gap: 12px; }
.hero-eyebrow::before { content: ''; display: block; width: 36px; height: 2px; background: var(--yellow); }
.hero-title { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: clamp(54px, 7.5vw, 100px); line-height: 0.88; text-transform: uppercase; color: #fff; margin-bottom: 26px; }
.hero-title span { color: var(--red); display: block; }
.hero-sub { font-weight: 300; font-size: 16px; line-height: 1.75; color: var(--light); max-width: 440px; margin-bottom: 38px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* ── BUTTONS ── */
.btn-primary { background: var(--red); color: #fff; text-decoration: none; font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 14px; letter-spacing: 2px; text-transform: uppercase; padding: 15px 38px; display: inline-flex; align-items: center; gap: 10px; transition: background 0.2s, transform 0.2s; }
.btn-primary:hover { background: var(--red-hover); transform: translateY(-1px); }
.btn-secondary { background: transparent; color: #fff; text-decoration: none; font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 14px; letter-spacing: 2px; text-transform: uppercase; padding: 13px 36px; border: 1px solid rgba(255,255,255,0.28); display: inline-flex; align-items: center; gap: 10px; transition: border-color 0.2s, color 0.2s; }
.btn-secondary:hover { border-color: var(--yellow); color: var(--yellow); }
.btn-white { background: #fff; color: var(--red); text-decoration: none; font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 14px; letter-spacing: 2px; text-transform: uppercase; padding: 17px 42px; white-space: nowrap; display: inline-flex; align-items: center; gap: 10px; transition: background 0.2s, color 0.2s; position: relative; z-index: 1; }
.btn-white:hover { background: var(--yellow); color: var(--black); }

/* ── INFO BAR ── */
.info-bar { background: var(--red); padding: 0 64px; display: grid; grid-template-columns: repeat(4, 1fr); }
.info-item { padding: 22px 28px; display: flex; align-items: center; gap: 14px; border-right: 1px solid rgba(255,255,255,0.18); }
.info-item:last-child { border-right: none; }
.info-icon { font-size: 22px; opacity: 0.9; flex-shrink: 0; }
.info-label { font-family: 'Barlow Condensed', sans-serif; font-weight: 600; font-size: 10px; letter-spacing: 2px; text-transform: uppercase; opacity: 0.65; display: block; margin-bottom: 3px; }
.info-value { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 15px; color: #fff; }

/* ── SECTION COMMON ── */
.section-eyebrow { font-family: 'Barlow Condensed', sans-serif; font-weight: 600; font-size: 12px; letter-spacing: 3px; text-transform: uppercase; color: var(--yellow); margin-bottom: 14px; display: flex; align-items: center; gap: 10px; }
.section-eyebrow::before { content: ''; display: block; width: 24px; height: 2px; background: var(--yellow); }
.section-title { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: clamp(38px, 5vw, 62px); text-transform: uppercase; line-height: 1; color: #fff; margin-bottom: 16px; }
.section-sub { font-weight: 300; font-size: 15px; line-height: 1.8; color: var(--grey); max-width: 500px; }
.section-divider { width: 56px; height: 3px; background: var(--yellow); margin: 22px 0 30px; }

/* ── SERVICES ── */
.services-section { background: var(--dark); padding: 100px 64px; }
.services-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 60px; gap: 24px; flex-wrap: wrap; }
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; }
.service-card { background: var(--dark2); padding: 40px 32px; position: relative; overflow: hidden; cursor: pointer; transition: background 0.3s; text-decoration: none; display: block; color: inherit; }
.service-card::before { content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 3px; background: var(--red); transform: scaleX(0); transform-origin: left; transition: transform 0.3s; }
.service-card:hover { background: var(--mid); }
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover .service-num { color: rgba(245,216,0,0.12); }
.service-num { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 52px; color: rgba(255,255,255,0.04); line-height: 1; margin-bottom: -8px; user-select: none; transition: color 0.3s; }
.service-icon { font-size: 28px; margin-bottom: 18px; display: block; }
.service-name { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 20px; letter-spacing: 1px; text-transform: uppercase; color: #fff; margin-bottom: 12px; }
.service-desc { font-size: 13px; line-height: 1.7; color: var(--grey); }
.service-arrow { display: inline-flex; align-items: center; gap: 6px; font-family: 'Barlow Condensed', sans-serif; font-weight: 600; font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--red); margin-top: 20px; }

/* ── CTA BANNER ── */
.cta-banner { background: var(--red); padding: 84px 64px; display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 48px; position: relative; overflow: hidden; }
.cta-watermark { position: absolute; right: 40px; top: 50%; transform: translateY(-50%); width: 600px; height: auto; opacity: 0.18; pointer-events: none; mix-blend-mode: screen; }
.cta-banner h2 { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: clamp(32px, 4vw, 56px); text-transform: uppercase; line-height: 1.05; color: #fff; position: relative; z-index: 1; }
.cta-banner h2 em { font-style: normal; color: var(--yellow); }

/* ── FOOTER ── */
footer { background: #050505; padding: 64px 64px 32px; border-top: 1px solid rgba(255,255,255,0.06); }
.footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 60px; }
.footer-logo img { height: 52px; width: auto; margin-bottom: 16px; }
.footer-brand p { font-size: 13px; line-height: 1.8; color: var(--grey); max-width: 280px; }
.footer-col h5 { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 13px; letter-spacing: 2px; text-transform: uppercase; color: var(--light); margin-bottom: 18px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 13px; color: var(--grey); text-decoration: none; transition: color 0.2s; }
.footer-col a:hover { color: var(--yellow); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding-top: 28px; display: flex; justify-content: space-between; align-items: center; }
.footer-bottom p { font-size: 12px; color: var(--grey); }
.footer-bottom a { color: #888; text-decoration: none; }
.footer-bottom a:hover { color: var(--yellow); }
.footer-license { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 12px; letter-spacing: 1.5px; color: var(--yellow); background: rgba(245,216,0,0.08); border: 1px solid rgba(245,216,0,0.2); padding: 5px 14px; }
.footer-accreditations { display: flex; align-items: center; gap: 20px; }
.footer-accreditations img { height: 25px; width: auto; display: block; opacity: 0.9; transition: opacity 0.2s; }
.footer-accreditations img:hover { opacity: 1; }

/* ── SCROLL REVEAL ── */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.12s; }
.reveal-delay-2 { transition-delay: 0.22s; }
.reveal-delay-3 { transition-delay: 0.32s; }

/* ── RESPONSIVE — global ── */
@media (max-width: 900px) {
  nav { padding: 0 20px; height: 60px; }
  .nav-logo img { height: 40px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .hero-content { padding: 0 24px 80px; }
  .hero-title { font-size: clamp(42px, 11vw, 72px); }
  .hero-sub { font-size: 14px; }
  .hero-actions { flex-direction: column; gap: 12px; }
  .hero-actions .btn-primary, .hero-actions .btn-secondary { width: 100%; justify-content: center; }
  .info-bar { padding: 0 20px; grid-template-columns: 1fr 1fr; }
  .info-item:nth-child(2) { border-right: none; }
  .info-item { padding: 16px 12px; }
  .info-value { font-size: 13px; }
  .services-section { padding: 64px 20px; }
  .services-header { flex-direction: column; align-items: flex-start; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .cta-banner { padding: 56px 24px; grid-template-columns: 1fr; text-align: center; gap: 28px; }
  .cta-watermark { display: none; }
  .btn-white { justify-content: center; }
  footer { padding: 48px 20px 24px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .footer-accreditations { flex-wrap: wrap; justify-content: center; gap: 20px; }
}
@media (max-width: 540px) {
  .services-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .info-bar { grid-template-columns: 1fr; }
  .info-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.12); }
  .info-item:last-child { border-bottom: none; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-col { text-align: center; }
  .footer-brand { text-align: center; }
  .footer-brand p { max-width: 100%; }
}
