/* =================================================================
   ONPOINT PRO DOORS - PRODUCTION REFACTORED STYLES
   - Fixed visibility issues (proper contrast everywhere)
   - Clear urgency hierarchy (Emergency > Schedule > Info)
   - Consistent component system across all pages
   - Professional service industry aesthetics
   ================================================================= */

/* ===== ROOT VARIABLES (SINGLE SOURCE OF TRUTH) ===== */
:root {
  /* Color System - Clean White Professional Theme */
  --opx-bg: #FFFFFF;
  --opx-surface: #F5F5F5;
  --opx-text: #1A1A1A;
  --opx-text-medium: #1A1A1A;
  --opx-muted: #666666;
  --opx-border: #E0E0E0;
  --opx-shadow: 0 18px 60px rgba(0, 0, 0, 0.08);
  --opx-shadow-sm: 0 6px 18px rgba(0, 0, 0, 0.06);
  --opx-shadow-lg: 0 24px 70px rgba(0, 0, 0, 0.10);
  
  /* Brand Colors - Emergency/Urgent Theme */
  --opx-primary: #CC2222;      /* Emergency red */
  --opx-accent: #CC2222;       /* Emergency red */
  --opx-accent2: #E85D00;      /* Signal orange */
  --opx-accent3: #10b981;      /* Success green */
  --opx-accent4: #111111;      /* Near black */
  --opx-emergency: #CC2222;    /* Critical red */
  --opx-urgent: #E85D00;       /* Urgent orange */
  --opx-warning: #f59e0b;      /* Warning amber */
  
  /* Global Theme Variables (used everywhere) */
  --surface: #F5F5F5;
  --primary-hover: #E85D00;

  /* Legacy compatibility */
  --bg: #FFFFFF;
  --bg2: #F5F5F5;
  --card: #FFFFFF;
  --text: #1A1A1A;
  --muted: #666666;
  --white: #ffffff;
  --primary: #CC2222;
  --primary2: #A81B1B;
  --accent: #CC2222;
  --border: #E0E0E0;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  --radius: 16px;
  --max: 1180px;
}

/* ===== BASE STYLES ===== */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Inter, Arial, sans-serif;
  color: var(--opx-text);
  background: var(--opx-bg);
  line-height: 1.5;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  color: var(--opx-accent2);
}

button {
  font: inherit;
  cursor: pointer;
}

p, li {
  color: var(--opx-text);
}

small, .small {
  color: var(--opx-muted);
}

/* ===== LAYOUT CONTAINERS ===== */
.container, .opx-wrap {
  width: min(100% - 32px, var(--max));
  max-width: 1180px;
  margin-inline: auto;
  padding: 0 22px;
}

.opx-section, .section {
  padding: 60px 0;
  position: relative;
}

.galleryMain {
  padding: 40px 0;
  opacity: 1 !important;
  transform: none !important;
}

.opx-section + .opx-section,
.section + .section {
  border-top: 1px solid rgba(11, 18, 32, 0.08);
}

/* ===== NAVIGATION ===== */
.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #111111;
  border-bottom: 1px solid rgba(255,255,255,0.10);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 220px;
}

.brand img {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  object-fit: cover;
  background: var(--surface);
  border: 1px solid var(--opx-border);
}

.brand .title {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand .title strong {
  font-size: 14px;
  letter-spacing: 0.08em;
  color: #FFFFFF;
}

.brand .title span {
  font-size: 12px;
  color: rgba(255,255,255,0.7);
}

.navlinks {
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: center;
  flex: 1;
}

.navlinks a {
  font-size: 14px;
  color: #FFFFFF;
  padding: 8px 10px;
  border-radius: 10px;
  font-weight: 600;
}

.navlinks a:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #FFFFFF;
}

.navlinks a.active {
  background: rgba(255, 255, 255, 0.15);
  color: #FFFFFF;
  font-weight: 700;
}

.actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 999px;
  font-size: 13px;
  color: #FFFFFF;
  background: rgba(255,255,255,0.08);
  white-space: nowrap;
  font-weight: 600;
}

.badge svg {
  width: 16px;
  height: 16px;
  opacity: 0.8;
}

/* Mobile Menu */
.iconbtn {
  display: none;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.08);
  color: #FFFFFF;
}

.iconbtn svg {
  width: 20px;
  height: 20px;
}

.mobilepanel {
  display: none;
  border-top: 1px solid rgba(255,255,255,0.12);
  background: #1A1A1A;
}

.mobilepanel .inner {
  padding: 12px 0 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mobilepanel a {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.12);
  font-weight: 600;
  color: #FFFFFF;
}

.mobilepanel a:hover {
  background: rgba(255,255,255,0.10);
}

.mobilepanel .row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* ===== BUTTON SYSTEM (CLEAR HIERARCHY) ===== */

/* PRIMARY (Emergency/Urgent CTA) */
.btn-accent,
.opx-btnPrimary,
.opx-urgentBtn,
.opx-callPill,
.opx-callBtn,
.call-now,
.btn-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 14px;
  font-weight: 900;
  letter-spacing: 0.01em;
  background: var(--primary);
  color: #fff;
  border: 0;
  box-shadow: 0 14px 34px rgba(225, 29, 46, 0.35);
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.15s ease, filter 0.15s ease, box-shadow 0.15s ease;
}

.btn-accent:hover,
.opx-btnPrimary:hover,
.opx-urgentBtn:hover,
.opx-callPill:hover,
.opx-callBtn:hover,
.call-now:hover,
.btn-call:hover {
  transform: translateY(-1px);
  filter: brightness(1.05);
  box-shadow: 0 18px 40px rgba(225, 29, 46, 0.42);
}

/* SECONDARY (Schedule/Reserve) */
.btn-primary,
.opx-btnSecondary,
.opx-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 14px;
  font-weight: 900;
  background: #E85D00;
  border: 0;
  color: #fff;
  box-shadow: 0 14px 34px rgba(232, 93, 0, 0.30);
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn-primary:hover,
.opx-btnSecondary:hover,
.opx-btn-secondary:hover {
  background: rgba(255,255,255,0.06);
  transform: translateY(-1px);
  box-shadow: none;
}

/* TERTIARY (Info/Learn More) */
.btn,
.opx-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid var(--opx-border);
  background: var(--surface);
  cursor: pointer;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  font-weight: 700;
  color: var(--opx-text);
}

.btn:hover,
.opx-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  background: #F5F5F5;
}

/* ===== TOP NOTICE BAR ===== */
.opx-topNotice {
  position: relative;
  width: 100%;
  text-align: center;
  padding: 10px 14px;
  background: #CC2222;
  border-bottom: 1px solid #A81B1B;
  color: #FFFFFF;
  font-weight: 900;
  font-size: 14px;
}

.opx-strip {
  background: linear-gradient(90deg, rgba(255, 122, 0, 0.10), rgba(37, 99, 235, 0.10));
  border-bottom: 1px solid var(--opx-border);
  padding: 26px 0;
}

.opx-strip strong {
  letter-spacing: 0.2px;
  color: var(--opx-text);
}

/* ===== HERO SECTION ===== */
.hero {
  padding: 42px 0 26px;
  background: linear-gradient(135deg, #FFFFFF 0%, #F5F5F5 100%);
}

.heroGrid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 22px;
  align-items: stretch;
}

.heroCard {
  background: #FFFFFF;
  border: 1px solid var(--opx-border);
  border-radius: var(--radius);
  box-shadow: var(--opx-shadow);
  padding: 22px;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.08);
  border: 1px solid rgba(37, 99, 235, 0.18);
  color: var(--opx-text);
  font-weight: 700;
  font-size: 13px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #22c55e;
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.15);
}

.h1 {
  margin: 14px 0 8px;
  font-size: 42px;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--opx-text);
}

.sub {
  margin: 0 0 16px;
  color: var(--opx-muted);
  font-size: 16px;
}

.heroBtns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.heroMedia {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--opx-border);
  box-shadow: var(--opx-shadow);
  background: #F5F5F5;
  display: flex;
  flex-direction: column;
}

.heroMedia img {
  width: 100%;
  height: auto;
  min-height: 400px;
  max-height: 500px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.heroStats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  padding: 12px;
  background: var(--surface);
}

.stat {
  border: 1px solid var(--opx-border);
  border-radius: 14px;
  padding: 10px;
}

.stat strong {
  display: block;
  font-size: 14px;
  color: var(--opx-text);
}

.stat span {
  font-size: 12px;
  color: var(--opx-muted);
}

/* ===== SECTION HEADERS ===== */
.sectionHead, .opx-sectionHead {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}

.sectionHead h2, .opx-sectionHead h2 {
  margin: 0;
  font-size: 34px;
  letter-spacing: -0.02em;
  color: var(--opx-text);
  flex: 1 1 260px;
}

.sectionHead p, .opx-sectionHead p {
  margin: 0;
  color: var(--opx-muted);
  max-width: 60ch;
  flex: 1 1 200px;
}

/* Mobile: stack heading above description */
@media (max-width: 600px) {
  .sectionHead, .opx-sectionHead {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .sectionHead h2, .opx-sectionHead h2 {
    font-size: 24px;
    flex: none;
    width: 100%;
  }
  .sectionHead p, .opx-sectionHead p {
    flex: none;
    width: 100%;
    font-size: 14px;
  }
}

.reviewHead {
  margin-bottom: 18px;
}

.reviewHead h2 {
  margin: 0 0 8px;
  font-size: 34px;
  letter-spacing: -0.02em;
  color: var(--opx-text);
}

.reviewHead p {
  margin: 0;
  color: var(--opx-muted);
}

/* ===== CARD COMPONENTS ===== */
.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.card {
  background: var(--surface);
  border: 1px solid var(--opx-border);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--opx-shadow-sm);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(2, 6, 23, 0.08);
}

.card .media {
  aspect-ratio: 16/10;
  background: #E0E0E0;
  overflow: hidden;
}

.card .media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card .body {
  padding: 14px;
}

.card h3 {
  margin: 0 0 6px;
  font-size: 16px;
  color: var(--opx-text);
}

.card h3 a {
  color: var(--opx-text);
}

.card h3 a:hover {
  color: var(--opx-accent2);
}

.card p {
  margin: 0;
  color: var(--opx-muted);
  font-size: 13px;
}

.card .foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 14px 14px;
}

.pill {
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid var(--opx-border);
  color: var(--opx-text);
  background: var(--surface);
  font-weight: 600;
}

.link {
  color: var(--opx-accent);
  font-weight: 800;
  font-size: 13px;
}

.link:hover {
  text-decoration: underline;
}

/* ===== OPX CARD SYSTEM (ALL CARDS VISIBLE) ===== */
.opx-card,
.opx-safetyCard,
.opx-cardSoft {
  background: var(--opx-surface);
  border: 1px solid var(--opx-border);
  border-radius: 16px;
  padding: 16px;
  box-shadow: var(--opx-shadow);
  color: var(--opx-text);
}

.opx-card h2,
.opx-card h3,
.opx-card p,
.opx-safetyCard h2,
.opx-safetyCard h3,
.opx-safetyCard p {
  color: var(--opx-text);
}

.opx-card strong,
.opx-safetyCard strong {
  color: var(--opx-text);
}

.opx-card p,
.opx-safetyCard p {
  color: var(--opx-muted);
}

/* ===== COMMERCIAL PAGE STYLES ===== */
.opx-page {
  background: var(--opx-bg);
}

.opx-breadcrumbs {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
  padding: 14px 0 0;
  font-size: 13px;
  color: var(--opx-muted);
  max-width: 1180px;
  margin: 0 auto;
  padding-left: 22px;
  padding-right: 22px;
}

.opx-breadcrumbs a {
  text-decoration: underline;
  color: var(--opx-text);
  font-weight: 600;
}

.opx-breadcrumbs span {
  color: var(--opx-muted);
}

.opx-heroAlt {
  padding-top: 96px;
}

.opx-heroAlt h1 {
  font-size: 42px;
  letter-spacing: -0.02em;
  margin: 0 0 12px;
  color: var(--opx-text);
}

.opx-lead {
  max-width: 70ch;
  font-size: 18px;
  line-height: 1.55;
  color: var(--opx-muted);
  margin: 0 0 18px;
}

.opx-ctaRow {
  margin-top: 22px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.opx-miniProof {
  margin-top: 14px;
  color: var(--opx-muted);
  font-size: 14px;
}

.opx-twoCol {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
  align-items: start;
}

.opx-bullets {
  margin: 10px 0 0;
  padding-left: 18px;
  list-style: disc;
}

.opx-bullets li {
  color: var(--opx-text);
  margin: 8px 0;
  font-weight: 600;
}

.opx-grid3, .opx-safetyGrid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 14px;
}

.opx-callout {
  margin-top: 12px;
  padding: 12px;
  border-radius: 14px;
  background: rgba(255, 122, 26, 0.06);
  border: 1px solid rgba(255, 122, 26, 0.14);
}

.opx-callout strong {
  display: block;
  margin-bottom: 6px;
  color: var(--opx-text);
  font-weight: 800;
}

.opx-callout a {
  color: var(--opx-accent);
  text-decoration: underline;
  font-weight: 700;
}

.opx-callout a:hover {
  color: #ff5f00;
}

.opx-ctaBand {
  padding: 46px 0;
  background: #F5F5F5;
}

.opx-ctaBandWrap {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
}

.opx-ctaBandWrap h2 {
  margin: 0 0 6px;
  font-size: 28px;
  letter-spacing: -0.01em;
  color: var(--opx-text);
}

.opx-ctaBandWrap p {
  margin: 0;
  color: var(--opx-muted);
}

/* ===== SAFETY SECTION (HIGHLY VISIBLE) ===== */
.opx-safety {
  background: #FFF9F5;
}

.opx-safetyCard {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 22px;
  border-radius: 18px;
  border: 2px solid rgba(255, 122, 26, 0.18);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 18px 40px rgba(255, 122, 26, 0.15);
}

.opx-safetyIcon {
  font-size: 32px;
  line-height: 1;
  margin-top: 2px;
}

.opx-safetyBody h2 {
  margin: 0 0 10px;
  font-size: 24px;
  color: var(--opx-text);
}

.opx-safetyBody p {
  margin: 0 0 12px;
  color: var(--opx-text);
  line-height: 1.6;
}

.opx-safetyBody p strong {
  color: var(--opx-accent);
}

.opx-safetyActions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 10px 0 8px;
}

.opx-muted {
  color: var(--opx-muted);
  opacity: 1;
}

/* ===== BEST PRACTICES CARDS (VISIBLE WITH ICONS) ===== */
.opx-safetyGrid .opx-card {
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid var(--opx-border);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.07);
  padding: 18px;
}

.opx-safetyGrid .opx-card h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 10px;
  font-size: 18px;
  color: var(--opx-text);
}

.opx-safetyGrid .opx-card h3:before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--opx-accent);
  box-shadow: 0 0 0 6px rgba(255, 122, 0, 0.14);
  flex-shrink: 0;
}

.opx-safetyGrid .opx-card p {
  margin: 0;
  color: var(--opx-text-medium);
  line-height: 1.6;
}

/* ===== REVIEWS (PROFESSIONAL TESTIMONIAL CARDS) ===== */
.reviews {
  background: var(--opx-bg);
  padding: 60px 0;
}

.reviewGrid,
.opx-reviewsGrid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.review,
.opx-review {
  background: var(--opx-surface);
  border: 1px solid var(--opx-border);
  border-radius: 18px;
  padding: 18px;
  box-shadow: var(--opx-shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.review .stars,
.opx-stars {
  letter-spacing: 1px;
  color: var(--opx-accent);
  font-weight: 900;
  font-size: 18px;
}

.review p,
.opx-reviewQuote,
.opx-review blockquote {
  margin: 0;
  font-size: 15px;
  color: var(--opx-text);
  line-height: 1.6;
  font-style: normal;
}

.review .who,
.opx-reviewMeta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
}

.review .who strong,
.opx-reviewMeta strong,
.opx-reviewName {
  color: var(--opx-text);
  font-weight: 900;
}

.review .who span,
.opx-reviewMeta .opx-muted {
  color: var(--opx-muted);
}

.opx-reviewBody {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.opx-avatar {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-weight: 800;
  background: linear-gradient(180deg, rgba(37, 99, 235, 0.14), rgba(255, 122, 0, 0.12));
  border: 1px solid var(--opx-border);
  color: var(--opx-text);
  font-size: 16px;
  flex-shrink: 0;
}

/* ===== RELATED GUIDES & RESOURCES (CARD STYLE) ===== */
.opx-related {
  padding: 54px 0;
  background: var(--opx-bg);
}

.opx-related h2 {
  margin: 0 0 14px;
  font-size: 28px;
  letter-spacing: -0.01em;
  color: var(--opx-text);
}

.opx-linksGrid,
.opx-resourceGrid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 14px;
}

.opx-linksGrid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.opx-linkCard,
.opx-resourceLink {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid var(--opx-border);
  background: #FFFFFF;
  box-shadow: var(--opx-shadow-sm);
  text-decoration: none;
  color: var(--opx-text);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.opx-linkCard:hover,
.opx-resourceLink:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.10);
}

.opx-linkCard span,
.opx-resourceLink span {
  font-weight: 800;
  color: var(--opx-text);
}

.opx-linkArrow {
  color: var(--opx-accent2);
  font-weight: 900;
  font-size: 18px;
}

.opx-linkCardStatic {
  background: linear-gradient(180deg, rgba(31, 102, 255, 0.06), rgba(255, 122, 26, 0.05));
  border: 1px solid rgba(31, 102, 255, 0.12);
  box-shadow: var(--opx-shadow);
  cursor: default;
}

.opx-linkCardStatic:hover {
  transform: none;
  box-shadow: var(--opx-shadow);
}

.opx-linkCardStatic .opx-linkArrow {
  color: var(--opx-accent3);
}

/* ===== TRUST BADGES & BRAND LOGOS ===== */
.opx-badgesRow {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.opx-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.92));
  border: 1px solid var(--opx-border);
  border-radius: 999px;
  padding: 10px 12px;
  box-shadow: 0 10px 24px rgba(10, 20, 40, 0.08);
  font-weight: 900;
  color: var(--opx-text);
  font-size: 13px;
}

.opx-badgeDot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--opx-accent3);
  box-shadow: 0 0 0 4px rgba(24, 178, 106, 0.14);
}

.opx-brandsStrip {
  margin-top: 18px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}

.opx-brandTile {
  height: 38px;
  min-width: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.92));
  border: 1px solid var(--opx-border);
  border-radius: 12px;
  padding: 6px 10px;
  box-shadow: 0 6px 16px rgba(10, 20, 40, 0.06);
}

.opx-brandTile img {
  height: 20px;
  width: auto;
  display: block;
  opacity: 0.90;
}

/* ===== QUICK BOOK BAR ===== */
.quickBook {
  padding: 22px 0 10px;
}

.qbBar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: var(--surface);
  border: 1px solid var(--opx-border);
  border-radius: 18px;
  box-shadow: var(--opx-shadow);
  padding: 14px 16px;
}

.qbLeft {
  display: flex;
  align-items: center;
  gap: 12px;
}

.qbTag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(232, 93, 0, 0.12);
  color: #8B3000;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.qbText {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.qbText strong {
  font-size: 14px;
  color: var(--opx-text);
}

.qbText .muted {
  font-size: 13px;
  color: var(--opx-muted);
}

/* ===== BOOKING FORM SECTION (URGENT PROFESSIONAL STYLING) ===== */
.reserve {
  background: linear-gradient(180deg, rgba(255, 122, 26, 0.06), rgba(31, 102, 255, 0.05));
  padding: 52px 0;
  position: relative;
  overflow: hidden;
}

.reserve::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 20%, rgba(255, 122, 26, 0.08), transparent 50%),
              radial-gradient(circle at 70% 80%, rgba(31, 102, 255, 0.08), transparent 50%);
  pointer-events: none;
}

.opx {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 36px;
  align-items: start;
  position: relative;
  z-index: 1;
}

.opx-left {
  position: sticky;
  top: 100px;
}

.opx-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(24, 178, 106, 0.12), rgba(24, 178, 106, 0.08));
  border: 1.5px solid rgba(24, 178, 106, 0.25);
  font-weight: 900;
  font-size: 13px;
  color: var(--opx-text);
  margin-bottom: 16px;
  box-shadow: 0 4px 12px rgba(24, 178, 106, 0.15);
  animation: fadeInUp 0.6s ease-out;
}

.opx-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--opx-accent3);
  box-shadow: 0 0 0 4px rgba(24, 178, 106, 0.14);
  animation: pulse 2s ease-in-out infinite;
}

.opx-title {
  font-size: 34px;
  letter-spacing: -0.02em;
  margin: 0 0 12px;
  color: var(--opx-text);
  font-weight: 900;
  animation: slideInLeft 0.8s ease-out;
}

.opx-sub {
  font-size: 17px;
  color: var(--opx-muted);
  margin: 0 0 28px;
  line-height: 1.6;
  animation: fadeIn 0.8s ease-out 0.2s backwards;
}

.opx-faq {
  background: var(--opx-surface);
  border: 1.5px solid var(--opx-border);
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 12px 32px rgba(10, 20, 40, 0.08);
  animation: scaleIn 0.6s ease-out 0.3s backwards;
  transition: all 0.3s ease;
}

.opx-faq:hover {
  box-shadow: 0 16px 40px rgba(10, 20, 40, 0.12);
  transform: translateY(-2px);
}

.opx-faq-title {
  margin: 0 0 16px;
  font-size: 17px;
  font-weight: 900;
  color: var(--opx-text);
  display: flex;
  align-items: center;
  gap: 8px;
}

.opx-faq-title::before {
  content: "❓";
  font-size: 18px;
}

.opx-faq details {
  margin: 12px 0;
  border-bottom: 1px solid rgba(11, 18, 32, 0.08);
  padding-bottom: 12px;
  transition: all 0.3s ease;
}

.opx-faq details:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.opx-faq summary {
  cursor: pointer;
  font-weight: 700;
  font-size: 14px;
  color: var(--opx-text);
  list-style: none;
  padding: 6px 0;
  user-select: none;
  transition: all 0.2s ease;
}

.opx-faq summary:hover {
  color: var(--opx-accent2);
  padding-left: 4px;
}

.opx-faq summary::-webkit-details-marker {
  display: none;
}

.opx-faq summary::after {
  content: "+";
  float: right;
  font-size: 20px;
  font-weight: 900;
  color: var(--opx-accent2);
  transition: transform 0.3s ease;
}

.opx-faq details[open] summary::after {
  content: "–";
  transform: rotate(180deg);
}

.opx-faq details[open] summary {
  color: var(--opx-accent2);
  margin-bottom: 8px;
}

.opx-faq p {
  margin: 8px 0 0;
  color: var(--opx-muted);
  font-size: 14px;
  line-height: 1.6;
  padding-left: 4px;
  animation: fadeIn 0.3s ease-out;
}

.opx-right {
  position: relative;
  animation: slideInRight 0.8s ease-out;
}

.opx-card {
  background: var(--opx-surface);
  border: 2.5px solid transparent;
  border-radius: 24px;
  padding: 0;
  box-shadow: 0 24px 70px rgba(255, 122, 26, 0.20);
  overflow: hidden;
  position: relative;
  background-clip: padding-box;
}

.opx-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 24px;
  padding: 2.5px;
  background: linear-gradient(135deg, rgba(255, 122, 26, 0.4), rgba(31, 102, 255, 0.3));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.opx-card-top {
  background: linear-gradient(135deg, rgba(255, 122, 26, 0.14), rgba(31, 102, 255, 0.10));
  padding: 24px;
  border-bottom: 1.5px solid var(--opx-border);
  position: relative;
  overflow: hidden;
}

.opx-card-top::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1), transparent 70%);
  animation: rotate 20s linear infinite;
  pointer-events: none;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.opx-openNow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(24, 178, 106, 0.16), rgba(24, 178, 106, 0.12));
  border: 1.5px solid rgba(24, 178, 106, 0.30);
  font-weight: 900;
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--opx-text);
  margin-bottom: 14px;
  box-shadow: 0 4px 16px rgba(24, 178, 106, 0.20);
}

.opx-openDot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--opx-accent3);
  box-shadow: 0 0 0 3px rgba(24, 178, 106, 0.20);
  animation: pulse 2s ease-in-out infinite;
}

.opx-card-title {
  font-size: 26px;
  font-weight: 900;
  letter-spacing: 0.02em;
  margin: 0 0 8px;
  color: var(--opx-text);
  background: linear-gradient(135deg, var(--opx-text), var(--opx-accent2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.opx-card-sub {
  font-size: 14px;
  color: var(--opx-muted);
  margin: 0;
  font-weight: 600;
}

.opx-formWrap {
  padding: 28px;
}

.opx-alert {
  padding: 16px;
  border-radius: 14px;
  margin-bottom: 18px;
  font-size: 14px;
  font-weight: 700;
  animation: fadeIn 0.3s ease-out;
}

.opx-form {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.opx-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 20px;
}

.opx-field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.opx-field.opx-full {
  grid-column: 1 / -1;
}

.opx-field label {
  font-size: 13px;
  font-weight: 800;
  color: var(--opx-text);
  letter-spacing: 0.01em;
  display: flex;
  align-items: center;
  gap: 4px;
}

.opx-req {
  color: var(--opx-accent);
  font-weight: 900;
  font-size: 15px;
}

.opx-field input,
.opx-field select,
.opx-field textarea {
  padding: 13px 16px;
  border: 1.5px solid var(--opx-border);
  border-radius: 12px;
  font-size: 14px;
  font-family: inherit;
  color: var(--opx-text);
  background: rgba(255, 255, 255, 0.8);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-weight: 500;
}

.opx-field input:hover,
.opx-field select:hover,
.opx-field textarea:hover {
  border-color: rgba(31, 102, 255, 0.3);
  background: var(--surface);
}

.opx-field input:focus,
.opx-field select:focus,
.opx-field textarea:focus {
  outline: none;
  border-color: var(--opx-accent2);
  box-shadow: 0 0 0 4px rgba(31, 102, 255, 0.12);
  background: var(--surface);
  transform: translateY(-1px);
}

.opx-field textarea {
  resize: vertical;
  min-height: 110px;
  line-height: 1.5;
}

.opx-btn.opx-btnPrimary {
  width: 100%;
  padding: 17px;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 14px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--opx-accent), #ff5f00);
  border: none;
  box-shadow: 0 16px 40px rgba(255, 122, 26, 0.35);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.opx-btn.opx-btnPrimary::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.opx-btn.opx-btnPrimary:hover::before {
  width: 400px;
  height: 400px;
}

.opx-btn.opx-btnPrimary:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 50px rgba(255, 122, 26, 0.45);
}

.opx-btn.opx-btnPrimary:active {
  transform: translateY(-1px);
}

.opx-btnDot {
  width: 11px;
  height: 11px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.25);
  animation: pulse 2s ease-in-out infinite;
}

.opx-note {
  text-align: center;
  font-size: 13px;
  color: var(--opx-muted);
  margin: 0;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.opx-note::before {
  content: "🔒";
  font-size: 14px;
}

@media (max-width: 900px) {
  .opx {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  
  .opx-left {
    position: static;
  }
  
  .opx-grid {
    grid-template-columns: 1fr;
  }
  
  .opx-title {
    font-size: 28px;
  }
}

.qbRight {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* ===== URGENT STICKY BAR (HIGHLY VISIBLE) ===== */
.opx-urgentBar {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 9999;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: #CC2222;
  backdrop-filter: blur(10px);
  box-shadow: 0 20px 70px rgba(204, 34, 34, 0.35);
}

.opx-urgentInner {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  padding: 12px;
}

.opx-urgentText {
  font-size: 14px;
  line-height: 1.2;
  color: rgba(255, 255, 255, 0.92);
}

.opx-urgentText strong {
  color: #fff;
  font-weight: 900;
}

.opx-urgentActions {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}

.opx-urgentLink {
  color: rgba(255, 255, 255, 0.90);
  text-decoration: underline;
  font-size: 14px;
}

.opx-urgentClose {
  background: transparent;
  border: 0;
  color: #fff;
  opacity: 0.9;
  font-size: 22px;
  line-height: 1;
  padding: 6px 10px;
  border-radius: 10px;
}

.opx-urgentClose:hover {
  background: rgba(255, 255, 255, 0.08);
  opacity: 1;
}

/* ===== FOOTER ===== */
.opx-footer {
  background: linear-gradient(180deg, var(--opx-bg), #0b0b0b);
  padding: 32px 0;
  border-top: 1px solid var(--opx-border);
}

.opx-footer .opx-wrap {
  text-align: center;
}

.opx-footer p {
  margin: 0;
  color: var(--opx-muted);
  font-size: 14px;
}

/* ===== GALLERY PAGE ===== */
.filters {
  position: sticky;
  top: 78px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  padding: 10px 0;
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
  z-index: 20;
}

.backHome {
  margin: 12px 0 0;
  display: inline-flex;
}

/* ===== FAQ ===== */
.faqGrid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.faqItem {
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--opx-shadow);
  padding: 14px;
}

.faqItem summary {
  cursor: pointer;
  font-weight: 700;
  list-style: none;
  color: var(--opx-text);
}

.faqItem summary::-webkit-details-marker {
  display: none;
}

.faqItem summary::after {
  content: "+";
  float: right;
  font-size: 18px;
  opacity: 0.7;
}

.faqItem[open] summary::after {
  content: "–";
}

.faqItem p {
  margin: 10px 0 0;
  color: var(--opx-muted);
}

/* ===== SERVICE AREAS ===== */
.areaGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 16px;
}

.areaCol, .areaCard {
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--opx-shadow);
  padding: 16px;
}

.areaCol h3, .areaCard h3 {
  margin: 0 0 10px;
  color: var(--opx-text);
}

.areaCol ul {
  margin: 10px 0 0;
  padding-left: 18px;
  color: var(--opx-text);
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.08);
  border: 1px solid rgba(37, 99, 235, 0.14);
  font-weight: 700;
  font-size: 13px;
  color: var(--opx-text);
}

.chip:hover {
  background: rgba(37, 99, 235, 0.12);
}

/* ===== BEFORE/AFTER ===== */
.baGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.baCard {
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--opx-shadow);
  padding: 16px;
}

.baImgs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 12px;
}

.baImgs figure {
  margin: 0;
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: #E0E0E0;
}

.baImgs figcaption {
  position: absolute;
  left: 10px;
  top: 10px;
  background: rgba(15, 23, 42, 0.75);
  color: #fff;
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 600;
}

.baImgs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===== PAGE HERO (SERVICE PAGES) ===== */
.pageHero {
  padding: 64px 0 18px;
}

.pageHeroGrid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: stretch;
  max-width: 100%;
}

.pageHeroCard {
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
  border: none;
}

.pageHeroMedia {
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--opx-shadow);
  background: #E0E0E0;
}

.pageHeroMedia img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.soft {
  background: linear-gradient(180deg, rgba(37, 99, 235, 0.06), rgba(249, 115, 22, 0.04));
}

/* ===== ICONS (INLINE SVG MASKS) ===== */
.ico {
  width: 24px;
  height: 24px;
  display: inline-block;
  background: currentColor;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  vertical-align: middle;
}

.ico-receipt::before {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M6 2h12v20l-2-1-2 1-2-1-2 1-2-1-2 1V2zm3 5h6v2H9V7zm0 4h6v2H9v-2zm0 4h6v2H9v-2z'/%3E%3C/svg%3E");
}

.ico-gear::before {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 8a4 4 0 100 8 4 4 0 000-8zm9 4l-2.1.7c-.1.5-.3 1-.6 1.5l1.2 1.9-2 2-1.9-1.2c-.5.3-1 .5-1.5.6L12 21l-1.1-2.1c-.5-.1-1-.3-1.5-.6l-1.9 1.2-2-2 1.2-1.9c-.3-.5-.5-1-.6-1.5L3 12l2.1-1.1c.1-.5.3-1 .6-1.5L4.5 7.5l2-2 1.9 1.2c.5-.3 1-.5 1.5-.6L12 3l1.1 2.1c.5.1 1 .3 1.5.6l1.9-1.2 2 2-1.2 1.9c.3.5.5 1 .6 1.5L21 12z'/%3E%3C/svg%3E");
}

.ico-sparkle::before {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 2l1.3 4.1L17 7.4l-3.7 1.3L12 13l-1.3-4.3L7 7.4l3.7-1.3L12 2zm7 8l.9 2.8 2.8.9-2.8.9L19 16l-.9-2.4-2.4-.9 2.4-.9L19 10z'/%3E%3C/svg%3E");
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
  .badgeRow {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .baGrid {
    grid-template-columns: 1fr;
  }
  
  .reviewGrid,
  .opx-reviewsGrid {
    grid-template-columns: 1fr;
  }
  
  .faqGrid {
    grid-template-columns: 1fr;
  }
  
  .areaGrid {
    grid-template-columns: 1fr;
  }
  
  .cards {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .pageHeroGrid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .opx-twoCol {
    grid-template-columns: 1fr;
  }
  
  .opx-grid3,
  .opx-safetyGrid {
    grid-template-columns: 1fr;
  }
  
  .opx-heroAlt {
    padding-top: 72px;
  }
  
  .opx-linksGrid,
  .opx-linksGrid-3,
  .opx-resourceGrid {
    grid-template-columns: 1fr;
  }
  
  .opx-safetyCard {
    flex-direction: column;
  }
  
  .heroGrid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .navlinks {
    justify-content: flex-start;
  }
}

@media (max-width: 820px) {
  .qbBar {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .qbRight {
    width: 100%;
  }
}

@media (max-width: 720px) {
  .cards {
    grid-template-columns: 1fr;
  }
  
  .h1,
  .opx-heroAlt h1 {
    font-size: 32px;
  }
  
  .sectionHead h2,
  .opx-sectionHead h2,
  .reviewHead h2 {
    font-size: 26px;
  }
}

@media (min-width: 861px) {
  .stickyCall {
    display: none;
  }
}

@media (min-width: 1000px) {
  .opx-urgentBar {
    left: auto;
    right: 18px;
    bottom: 18px;
    max-width: 520px;
  }
}

/* ===== MOBILE NAVIGATION ===== */
@media (max-width: 960px) {
  .navlinks {
    display: none;
  }
  
  .iconbtn {
    display: flex;
  }
  
  .mobilepanel.active {
    display: block;
  }

  /* Prevent mobile header overflow (no horizontal scroll / no zoom-out needed) */
  .brand { min-width: 0; }
  .brand .title { min-width: 0; }
  .brand .title span { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 44vw; }
  .actions { gap: 8px; flex-shrink: 0; }
  .badge { max-width: 46vw; overflow: hidden; }
  .badge span { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
}

/* Mobile: keep header Call Now visible WITHOUT forcing zoom-out */
@media (max-width: 860px) {
  /* Make room: hide the phone badge on mobile (the Call Now button stays) */
  .topbar .actions > .badge { display: none; }

  /* Show the header Call Now button */
  .topbar .actions > .btn.btn-primary {
    display: inline-flex;
    padding: 10px 12px;
    font-size: 14px;
    border-radius: 12px;
    white-space: nowrap;
  }

  /* Keep the menu icon visible */
  .topbar .actions > .iconbtn {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
  }
}

/* Small phones: hide the phone badge to keep header clean */
@media (max-width: 520px) {
  .badge { display: none; }
  .brand .title span { display: none; }
}

/* ===== STICKY MOBILE CALL BUTTON ===== */
.stickyCall {
  position: fixed;
  right: 18px;
  bottom: 18px;
  display: none;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 999px;
  background: #CC2222;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 14px 30px rgba(204, 34, 34, 0.28);
  font-weight: 800;
  z-index: 60;
}

.stickyCall:hover {
  filter: brightness(1.05);
}

.stickyCall .stickyIcon {
  font-size: 16px;
}

@media (max-width: 860px) {
  .stickyCall {
    display: flex;
  }
}

/* ===== ACCESSIBILITY & POLISH ===== */
:focus-visible {
  outline: 2px solid var(--opx-accent2);
  outline-offset: 2px;
}

button:focus-visible,
a:focus-visible {
  outline: 2px solid var(--opx-accent2);
  outline-offset: 2px;
}

/* Ensure all text is readable */
.opx-card *,
.opx-safetyCard *,
.opx-cardSoft *,
.opx-review * {
  color: inherit;
}

.opx-card p,
.opx-safetyCard p,
.opx-cardSoft p {
  color: var(--opx-muted);
}

/* Remove any accidental opacity issues */
[class*="opx-"] {
  opacity: 1;
}

.opx-muted {
  color: var(--opx-muted);
  opacity: 1;
}

/* ===== PRINT STYLES ===== */
@media print {
  .topbar,
  .opx-urgentBar,
  .stickyCall,
  .mobilepanel {
    display: none;
  }
  
  body {
    background: var(--surface);
  }
  
  .opx-section,
  .section {
    page-break-inside: avoid;
  }
}

/* ===== SEO / LOCATION PAGES STYLING ===== */
.opx-page {
  min-height: calc(100vh - 300px);
}

.opx-page > h1,
.opx-page > p {
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 22px;
  padding-right: 22px;
}

.opx-page > h1 {
  font-size: 38px;
  letter-spacing: -0.02em;
  margin: 32px auto 12px;
  color: var(--opx-text);
  font-weight: 900;
}

.opx-page > p {
  font-size: 18px;
  line-height: 1.6;
  color: var(--opx-muted);
  margin: 0 auto 32px;
  max-width: 800px;
}

/* ===== SEO PAGE HERO SECTION ===== */
.opx-seoHero {
  background: linear-gradient(180deg, rgba(31, 102, 255, 0.04), rgba(255, 122, 26, 0.04));
  padding: 48px 0 36px;
  margin-bottom: 24px;
}

.opx-seoHero h1 {
  font-size: 38px;
  letter-spacing: -0.02em;
  margin: 0 0 12px;
  color: var(--opx-text);
  font-weight: 900;
}

.opx-seoHero p {
  font-size: 18px;
  line-height: 1.6;
  color: var(--opx-muted);
  margin: 0 0 20px;
  max-width: 800px;
}

.opx-seoHero .opx-ctaRow {
  margin-top: 20px;
}

/* ===== BRANDS LOGO GRID (ALWAYS SHOWS) ===== */
.brandStrip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  align-items: center;
  padding: 24px 0;
}

@media (min-width: 720px) {
  .brandStrip {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .brandStrip {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

.brandLogo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 12px;
  border-radius: 14px;
  background: var(--surface);
  border: 1px solid var(--border);
  min-height: 64px;
  color: var(--muted);
  font-weight: 800;
  letter-spacing: 0.2px;
  text-align: center;
}

.brandLogo img {
  max-height: 76px;
  width: auto;
  max-width: 100%;
  display: block;
}

.brandLogo:hover {
  transform: translateY(-1px);
}

.brandPill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--opx-border);
  font-weight: 700;
  font-size: 14px;
  color: var(--opx-text);
  transition: all 0.3s ease;
}

.brandPill:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  background: var(--surface);
}

/* ===== ADVANCED UI ANIMATIONS ===== */

/* Fade in on scroll */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Apply animations */
.hero {
  animation: fadeIn 0.6s ease-out;
}

.opx-card {
  animation: scaleIn 0.5s ease-out backwards;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.opx-review {
  animation: fadeInUp 0.6s ease-out backwards;
}

.opx-review:nth-child(1) { animation-delay: 0.1s; }
.opx-review:nth-child(2) { animation-delay: 0.2s; }

/* Enhanced hover effects */
.card:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 20px 40px rgba(2, 6, 23, 0.15);
}

.opx-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 50px rgba(10, 20, 40, 0.18);
}

.btn, .opx-btn {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.btn::before, .opx-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn:hover::before, .opx-btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn-accent, .btn-primary, .opx-btnPrimary {
  position: relative;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-accent:hover, .btn-primary:hover, .opx-btnPrimary:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px rgba(255, 122, 26, 0.35);
}

.btn-accent:active, .btn-primary:active, .opx-btnPrimary:active {
  transform: translateY(0);
}

/* Pulsing effect for urgent elements */
@keyframes pulse-glow {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(255, 122, 26, 0.4);
  }
  50% {
    box-shadow: 0 0 0 10px rgba(255, 122, 26, 0);
  }
}

.btn-accent {
  animation: pulse-glow 2s infinite;
}

/* Smooth transitions on all interactive elements */
a, button, input, select, textarea {
  transition: all 0.3s ease;
}

/* Enhanced form field animations */
.opx-field input:focus,
.opx-field select:focus,
.opx-field textarea:focus {
  transform: translateY(-2px);
  border-color: var(--opx-accent2);
  box-shadow: 0 8px 24px rgba(31, 102, 255, 0.15);
}

/* Gradient animation */
@keyframes gradient-shift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.hero {
  background-size: 200% 200%;
  animation: gradient-shift 15s ease infinite;
}

/* Badge animations */
.opx-badge {
  animation: fadeInUp 0.6s ease-out backwards;
}

.opx-badge:nth-child(1) { animation-delay: 0.1s; }
.opx-badge:nth-child(2) { animation-delay: 0.2s; }
.opx-badge:nth-child(3) { animation-delay: 0.3s; }
.opx-badge:nth-child(4) { animation-delay: 0.4s; }

/* Enhanced shadows on scroll (depth) */
.section {
  transition: all 0.3s ease;
}

/* Shimmer effect on load */
@keyframes shimmer {
  0% {
    background-position: -1000px 0;
  }
  100% {
    background-position: 1000px 0;
  }
}

.heroCard::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
  animation: shimmer 3s infinite;
  pointer-events: none;
}

/* Star rating animation */
.opx-stars, .stars {
  display: inline-block;
  animation: fadeIn 0.8s ease-out;
}

/* Smooth scroll */
html {
  scroll-behavior: smooth;
}

/* Parallax effect hint */
.heroMedia img {
  transition: transform 0.3s ease;
}

.heroMedia:hover img {
  transform: scale(1.05);
}

/* Enhanced footer */
.footer {
  position: relative;
  overflow: hidden;
  background: #1A1A1A;
  color: #FFFFFF;
  padding: 40px 0 20px;
}

.footerGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 32px;
}

.footerGrid h4 {
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 12px;
}

.footerGrid p {
  color: rgba(255,255,255,0.72);
  font-size: 14px;
  line-height: 1.6;
  margin: 0 0 6px;
}

.footerGrid a {
  color: rgba(255,255,255,0.80);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footerGrid a:hover { color: #FFFFFF; }

.footer .line {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 16px;
  margin-top: 16px;
}

.opx-footer-links, .opx-footerLinks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding: 24px 0;
  border-top: 1px solid rgba(255,255,255,0.10);
}

.opx-footer-col, .opx-footerCol {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.opx-footer-col h4, .opx-footerCol h4 {
  color: #FFFFFF;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 0 0 6px;
}

.opx-footer-col a, .opx-footerCol a {
  color: rgba(255,255,255,0.72);
  font-size: 13px;
  text-decoration: none;
}

.opx-footer-col a:hover, .opx-footerCol a:hover {
  color: #FFFFFF;
  text-decoration: underline;
}

@media (max-width: 720px) {
  .footerGrid { grid-template-columns: 1fr; }
  .opx-footer-links, .opx-footerLinks { grid-template-columns: 1fr; }
}


/* Cursor enhancements for interactive elements */
.btn,
.card,
.link,
[data-gallery-item],
.brandLogo,
.iconbtn {
  cursor: pointer;
}

/* Add subtle glow to CTAs */
.btn-primary,
.btn-accent {
  position: relative;
}

.btn-primary::after,
.btn-accent::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  padding: 2px;
  background: linear-gradient(45deg, transparent, rgba(31, 102, 255, 0.3), transparent);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.btn-primary:hover::after,
.btn-accent:hover::after {
  opacity: 1;
}

/* Add smooth page transitions */
@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--opx-border),
    transparent
  );
}

/* Loading state shimmer for images */
img {
  transition: opacity 0.3s ease;
}

img:not([src]) {
  opacity: 0;
}

/* ===== PROFESSIONAL UI POLISH - CONTROLLED ANIMATIONS ===== */

/* Scroll fade-in for sections - EXCLUDE gallery grid */
.section:not(.gallerySection):not([data-gallery-grid]),
.opx-section:not(.gallerySection):not([data-gallery-grid]),
[data-section]:not(.gallerySection):not([data-gallery-grid]) {
  opacity: 1;
  transform: translateY(15px);
  transition: opacity 0.4s ease-out, transform 0.4s ease-out;
}

.section.opx-visible:not(.gallerySection),
.opx-section.opx-visible:not(.gallerySection),
[data-section].opx-visible:not(.gallerySection) {
  opacity: 1;
  transform: translateY(0);
}

/* Gallery items must ALWAYS be visible and not animated */
[data-gallery-grid],
[data-gallery-item],
.gallerySection {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}

/* Button interactions - fast and responsive */
.btn,
.opx-btnPrimary,
button[type="submit"] {
  transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
}

.btn:hover,
.opx-btnPrimary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.btn:active,
.opx-btnPrimary:active,
button[type="submit"]:active {
  transform: translateY(0);
  transition: transform 0.08s ease;
}

.btn-primary:hover,
.btn-accent:hover {
  box-shadow: 0 10px 24px rgba(255, 107, 26, 0.3);
}

/* Card hover effects - crisp and immediate */
.card {
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 36px rgba(10, 20, 40, 0.14);
}

.card .media {
  overflow: hidden;
  border-radius: inherit;
}

.card .media img {
  transition: transform 0.25s ease;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.card:hover .media img {
  transform: scale(1.06);
}

/* Link transitions - immediate */
a {
  transition: color 0.15s ease;
}

.link {
  position: relative;
  transition: color 0.15s ease;
}

.link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: currentColor;
  transition: width 0.25s ease;
}

.link:hover::after {
  width: 100%;
}

/* Navigation smooth interactions - fast */
.navlinks a {
  position: relative;
  transition: color 0.15s ease;
}

.navlinks a::before {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--opx-accent);
  transition: width 0.2s ease;
}

.navlinks a:hover::before,
.navlinks a.active::before {
  width: 80%;
}

/* Icon button interactions - instant */
.iconbtn {
  transition: transform 0.12s ease, background-color 0.12s ease;
}

.iconbtn:hover {
  transform: scale(1.05);
}

.iconbtn:active {
  transform: scale(0.95);
  transition: transform 0.08s ease;
}

/* Focus states for accessibility */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid var(--opx-accent2);
  outline-offset: 2px;
}

/* Pill badges - quick */
.pill {
  transition: transform 0.15s ease, background-color 0.15s ease;
}

.card:hover .pill {
  transform: scale(1.06);
}

/* Badge animations - responsive */
.opx-badge,
.badge {
  transition: transform 0.15s ease;
}

.opx-badge:hover,
.badge:hover {
  transform: translateY(-2px);
}

/* Input fields with focus - immediate */
input:not([type="checkbox"]):not([type="radio"]),
textarea,
select {
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

input:focus,
textarea:focus,
select:focus {
  box-shadow: 0 0 0 3px rgba(31, 102, 255, 0.12);
}

/* Details/accordion - quick */
details summary {
  transition: color 0.15s ease;
  cursor: pointer;
}

details summary:hover {
  color: var(--opx-accent2);
}

/* Reduced motion for accessibility */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Mobile optimizations */
@media (max-width: 768px) {
  .card:hover {
    transform: translateY(-2px) scale(1.01);
  }
  
  .btn-accent {
    animation: none;
  }
}


/* ===== GALLERY PAGE STYLES ===== */
.galleryFilters {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 28px;
  justify-content: center;
}

.filterBtn {
  padding: 10px 18px;
  border-radius: 12px;
  background: var(--surface);
  border: 1.5px solid rgba(11, 18, 32, 0.12);
  color: var(--opx-text);
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.15s ease;
}

.filterBtn:hover {
  border-color: var(--opx-accent2);
  color: var(--opx-accent2);
  background: rgba(31, 102, 255, 0.04);
}

.filterBtn.active {
  background: var(--opx-accent2);
  color: #fff;
  border-color: var(--opx-accent2);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(11, 18, 32, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.lightbox[aria-hidden="false"],
.lightbox.open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.4);
}

.lightboxClose {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  border: 0;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.15s ease;
  color: #0b1220;
}

.lightboxClose:hover {
  background: var(--surface);
  transform: scale(1.08);
}

.lightboxTitle {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.95);
  padding: 12px 20px;
  border-radius: 10px;
  font-weight: 600;
  color: #0b1220;
}

/* ===== DARK THEME OVERRIDES (COLORS ONLY) ===== */
body { background: var(--bg); color: var(--text); }

/* Surfaces - white theme */
/* NOTE: Only target the page-level topbar/nav header, NOT <header> section headers inside content */
.topbar, .navbar {
  background: #111111;
  color: #FFFFFF;
  border-color: rgba(255,255,255,0.10);
}
.footer, footer {
  background: #1A1A1A;
  color: #FFFFFF;
  border-color: rgba(255,255,255,0.10);
}
.card, .panel, .opx-card, .serviceCard, .faqItem,
.formCard, .modal, .drawer, .mobilepanel {
  background: var(--surface);
  color: var(--text);
  border-color: var(--border);
}

/* Text */
.muted, .opx-muted, .subtle { color: var(--muted) !important; }

/* Links */
a { color: inherit; }
a:hover { color: var(--primary); }

/* Inputs */
input, textarea, select {
  background: rgba(255,255,255,0.04);
  color: var(--text);
  border: 1px solid var(--border);
}
input::placeholder, textarea::placeholder { color: rgba(245,245,245,0.55); }

/* Secondary buttons */
.btn-primary, .opx-btnSecondary, .opx-btn-secondary {
  background: #E85D00;
  color: #fff;
  border: 0;
}
.btn-primary:hover, .opx-btnSecondary:hover, .opx-btn-secondary:hover {
  background: #CF5100;
}

/* Primary CTA buttons */
.btn-accent, .opx-btnPrimary, .opx-urgentBtn, .opx-callPill, .opx-callBtn, .call-now, .btn-call {
  background: var(--primary);
  color: #fff;
}
.btn-accent:hover, .opx-btnPrimary:hover, .opx-urgentBtn:hover, .opx-callPill:hover, .opx-callBtn:hover, .call-now:hover, .btn-call:hover {
  background: var(--primary-hover);
}

/* Floating call bar */
.opx-floatingBar, .callBar, .floatingBar {
  background: rgba(11,11,11,0.94);
  border-top: 1px solid var(--border);
}
.opx-floatingBar a, .callBar a, .floatingBar a { color: #fff; }

/* FAQ */
.faqItem summary { color: var(--text); }
.faqItem p { color: var(--muted); }


/* FIX contrast issues */
.menu a, .menu .item, nav a { color: var(--text) !important; }
.card, .panel, .faq-item, .list-item { background: var(--surface) !important; color: var(--text) !important; }

/* form readability */
input, textarea, select {
  background:#FFFFFF !important;
  color:#1A1A1A !important;
  border:1px solid #CCCCCC !important;
}
input::placeholder, textarea::placeholder{ color:#999999 !important; }

/* brand logos sizing + visibility */
.brand-card{ background:#111 !important; display:flex; align-items:center; justify-content:center;}
.brand-card img{ max-height:200px; width:auto; object-fit:contain;}
.brand-card span{ color:#ccc; font-size:14px;}

/* reserve button */
.reserve-btn{display:block;margin:20px auto;padding:14px 18px;background:var(--primary);color:#fff;border-radius:12px;text-align:center;font-weight:600;}

/* menu readability */
.menu, .menu * { color:#fff !important; }
.menu .card{ background:#111 !important; }
/* safety section */
.safety, .warning, .alert{ background:#111 !important; color:#eee !important;}

/* ===== HOTFIX: CONTRAST FIXES (Trust badges + Safety card) ===== */
.opx-badgesRow .opx-badge{color:#111111;}
.opx-badgesRow .opx-badge *{color:inherit;}

.opx-safetyCard{color:#111111;}
.opx-safetyCard .opx-safetyBody h2,
.opx-safetyCard .opx-safetyBody p{color:#111111;}
.opx-safetyCard .opx-muted{color:rgba(0,0,0,0.65);}

/* forced dark top background — ONLY the site navigation header, never content headers */
.topbar, .site-header, body > header:not([class*="sectionHead"]):not([class*="opx-"]) { background:#111111 !important; }
.hero { background: linear-gradient(135deg, #FFFFFF, #F5F5F5) !important; }


/* Sticky header (site-wide — ONLY the page navigation header) */
.topbar, .site-header, .header, .top-header, .nav-header {
  position: sticky;
  top: 0;
  z-index: 9999;
}

/* Content section headers are NOT sticky */
.opx-sectionHead, .sectionHead, section header, main header {
  position: static !important;
  z-index: auto !important;
}



/* Footer link formatting: commas + clearer click affordance */
footer a {
  text-decoration: underline;
  text-underline-offset: 3px;
}
footer a:hover { opacity: .9; }

/* Add commas between inline footer links (works for most footer link lists) */
footer .footer-section a::after,
footer .footer-links a::after,
footer .links a::after {
  content: ", ";
  opacity: .65;
}
footer .footer-section a:last-child::after,
footer .footer-links a:last-child::after,
footer .links a:last-child::after {
  content: "";
}


/* ===== WHITE THEME OVERRIDES ===== */

/* Body badges (in content sections, not header) */
.badgeRow {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.badgeRow .badge {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  border: 1px solid var(--opx-border);
  border-radius: 16px;
  background: #FFFFFF;
  color: #1A1A1A !important;
  white-space: normal;
  font-weight: 600;
}

.badgeRow .badge strong { color: #111111; }
.badgeRow .badge span { color: #666666; font-size: 13px; font-weight: 500; }

.badgeTxt {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

/* Contact split section */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 16px;
}

.panel {
  background: #F5F5F5;
  border: 1px solid #E0E0E0;
  border-radius: 16px;
  padding: 20px;
  color: #1A1A1A;
}

.panel h3 { color: #111111; margin: 0 0 10px; }
.panel p { color: #1A1A1A; }

/* Top notice bar */
.opx-topNotice {
  background: #CC2222;
  color: #FFFFFF;
}

/* Ensure nav Call Now button is red */
.topbar .btn.btn-primary {
  background: #CC2222 !important;
  color: #FFFFFF !important;
  border: 0 !important;
}

/* Ensure opx-strip sections are light */
.opx-strip {
  background: #F5F5F5;
  border-bottom: 1px solid #E0E0E0;
}

/* qbBar white background */
.qbBar {
  background: #FFFFFF;
  border: 1px solid #E0E0E0;
}

/* Before/after card */
.baCard {
  background: #FFFFFF;
  border: 1px solid #E0E0E0;
}

/* Page hero card — transparent, full width */
.pageHeroCard {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
}

/* Service areas */
.areaCard, .areaCol {
  background: #FFFFFF;
  border: 1px solid #E0E0E0;
}

/* FAQ items */
.faqItem {
  background: #F5F5F5 !important;
  border: 1px solid #E0E0E0;
  color: #1A1A1A !important;
}

.faqItem summary { color: #111111 !important; }
.faqItem p { color: #666666 !important; }

/* Review cards */
.review {
  background: #FFFFFF !important;
  border: 1px solid #E0E0E0 !important;
}

/* Link cards in resources */
.opx-linkCard, .opx-resourceLink {
  background: #FFFFFF !important;
  color: #1A1A1A !important;
}

.opx-linkCard span, .opx-resourceLink span { color: #1A1A1A !important; }

/* Ensure cards have white bg */
.card {
  background: #FFFFFF !important;
  color: #1A1A1A !important;
  border-color: #E0E0E0 !important;
}

.card h3, .card h3 a { color: #111111 !important; }
.card p { color: #666666 !important; }
.card li { color: #666666 !important; }

/* Ensure form inputs are white */
.opx-field input,
.opx-field select,
.opx-field textarea {
  background: #FFFFFF !important;
  color: #1A1A1A !important;
  border-color: #CCCCCC !important;
}

/* Filter buttons in gallery */
.filterBtn {
  background: #FFFFFF;
  border-color: #E0E0E0;
  color: #1A1A1A;
}

/* Ensure star ratings show orange */
.review .stars, .opx-stars { color: #E85D00; }

/* Nav iconbtn svg color */
.iconbtn svg { color: #FFFFFF !important; }

/* Mobile panel nav call now btn */
.mobilepanel .btn.btn-primary {
  background: #CC2222 !important;
  color: #FFFFFF !important;
}


/* ================================================================
   COMPREHENSIVE FIXES — Mobile, Contrast, Overflow, Readability
   ================================================================ */

/* ── 1. MOBILE OVERFLOW PREVENTION ── */
html, body {
  max-width: 100%;
  overflow-x: hidden;
}

/* ── 2. SECTION HEADERS — Reset dark header styling that was applied globally ── */
/* The .opx-sectionHead and .sectionHead elements use the HTML <header> tag.
   We must undo any dark background that would have come from the broad 'header' rule. */
.opx-sectionHead,
.sectionHead,
header.opx-sectionHead,
header.sectionHead,
section header,
main header {
  background: transparent !important;
  border: none !important;
  color: inherit !important;
}

.opx-sectionHead h2,
.sectionHead h2,
section header h2,
main header h2 {
  color: #1A1A1A !important;
  background: transparent !important;
}

.opx-sectionHead p,
.sectionHead p,
section header p,
main header p {
  color: #666666 !important;
  background: transparent !important;
}

/* ── 3. ALL CONTENT SECTIONS — Explicit white background so nothing bleeds through ── */
.opx-section:not(.opx-urgentBar),
.section {
  background-color: #FFFFFF;
}

/* Soft alternate sections */
.opx-section.soft,
.section.soft,
.opx-preArrival,
.opx-afterRepair,
.opx-resources {
  background-color: #F5F5F5 !important;
}

/* Safety section */
.opx-safety {
  background-color: #FFF9F5 !important;
}

/* Reserve section keeps its gradient */
.reserve {
  background: linear-gradient(180deg, rgba(255,122,26,0.06), rgba(31,102,255,0.05)) !important;
}

/* ── 4. BUTTON TEXT — No wrapping on phone numbers or short CTAs ── */
.btn-accent,
.btn-primary,
.opx-btnPrimary,
.opx-urgentBtn,
.opx-callPill,
.opx-callBtn,
.stickyCall {
  white-space: nowrap;
}

@media (max-width: 480px) {
  .btn-accent,
  .btn-primary,
  .opx-btnPrimary {
    padding: 10px 14px;
    font-size: 14px;
  }
}

/* ── 5. MOBILE CARD FIX — Cards must not overflow viewport ── */
.card,
.opx-card,
.opx-cardSoft,
.opx-safetyCard,
.heroCard,
.pageHeroCard,
.areaCol,
.areaCard,
.baCard,
.panel,
.review,
.opx-review,
.faqItem,
.badge:not(.topbar .badge) {
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

/* ── 6. MOBILE GRID COLLAPSE — All multi-column layouts collapse at 600px ── */
@media (max-width: 600px) {
  .cards,
  .opx-grid3,
  .opx-safetyGrid,
  .opx-twoCol,
  .opx-linksGrid,
  .opx-linksGrid-3,
  .opx-resourceGrid,
  .reviewGrid,
  .opx-reviewsGrid,
  .faqGrid,
  .areaGrid,
  .baGrid,
  .badgeRow,
  .split,
  .footerGrid,
  .opx-footer-links,
  .opx-footerLinks,
  .heroGrid,
  .pageHeroGrid {
    grid-template-columns: 1fr !important;
  }

  /* Hero */
  .h1 { font-size: 28px !important; }
  .sub { font-size: 15px; }
  .heroBtns { flex-direction: column; }
  .heroBtns .btn-accent,
  .heroBtns .btn-primary { width: 100%; justify-content: center; }

  /* Hero stats row */
  .heroStats { grid-template-columns: repeat(3, 1fr); }

  /* Sections */
  .opx-section, .section { padding: 40px 0; }
  .opx-wrap, .container { padding: 0 16px; }
}

/* ── 7. MOBILE WRAP — Ensure containers never cause horizontal scroll ── */
.opx-wrap,
.container {
  max-width: 100%;
  box-sizing: border-box;
}

/* ── 8. MOBILE NAV — Mobile panel full width, no overflow ── */
.mobilepanel {
  max-width: 100%;
  overflow-x: hidden;
}

.mobilepanel .inner {
  padding-left: 16px;
  padding-right: 16px;
}

.mobilepanel a {
  white-space: normal;
  word-break: break-word;
}

/* ── 9. FOOTER RESPONSIVE ── */
@media (max-width: 768px) {
  .footerGrid { grid-template-columns: 1fr !important; gap: 24px; }
  .opx-footer-links, .opx-footerLinks { grid-template-columns: 1fr !important; }
}

/* ── 10. HEADER CONTRAST — Ensure all text inside .topbar is white ── */
.topbar,
.topbar .nav,
.topbar .brand,
.topbar .brand .title strong,
.topbar .brand .title span,
.topbar .navlinks a,
.topbar .badge,
.topbar .badge span,
.topbar .iconbtn {
  color: #FFFFFF !important;
}

/* ── 11. DARK SECTIONS — Ensure any intentionally dark section has white text ── */
/* Urgency bar is dark */
.opx-urgentBar,
.opx-urgentBar * {
  color: #FFFFFF;
}
.opx-urgentBar strong { color: #FFFFFF; font-weight: 900; }
.opx-urgentBar .opx-urgentLink { color: rgba(255,255,255,0.90); }

/* Top notice bar */
.opx-topNotice { color: #FFFFFF !important; }

/* Footer is dark */
.footer h4, .footer strong { color: #FFFFFF; }
.footer p, .footer a { color: rgba(255,255,255,0.80); }

/* ── 12. INPUTS — Readable on white background ── */
input, textarea, select {
  background: #FFFFFF !important;
  color: #1A1A1A !important;
  border: 1px solid #CCCCCC !important;
}
input::placeholder, textarea::placeholder {
  color: #999999 !important;
}

/* ── 13. IMAGES — Prevent overflow on mobile ── */
img, video, iframe {
  max-width: 100%;
  height: auto;
}

/* ── 14. REVIEW CARDS — White background, readable text ── */
.review, .opx-review {
  background: #FFFFFF !important;
  color: #1A1A1A !important;
}
.review p, .opx-review blockquote { color: #1A1A1A !important; }
.review .who strong, .opx-reviewMeta strong { color: #1A1A1A !important; }
.review .who span, .opx-reviewMeta .opx-muted { color: #666666 !important; }

/* ── 15. FAQ ITEMS — Light background, readable text ── */
.faqItem {
  background: #F5F5F5 !important;
  color: #1A1A1A !important;
}
.faqItem summary { color: #111111 !important; }
.faqItem p { color: #555555 !important; }

/* ── 16. CHIPS AND PILLS — Light, readable ── */
.chip { color: #1A1A1A !important; }

/* ── 17. PREVENT SECTION ANIMATION FLICKER (transform never causes layout issues) ── */
.section, .opx-section, [data-section] {
  transform: none;  /* Remove the translateY that was causing stacking issues */
}

.section.opx-visible, .opx-section.opx-visible, [data-section].opx-visible {
  transform: none;
}

/* ── 18. HERO IMAGE — Proper aspect ratio on mobile ── */
@media (max-width: 768px) {
  .heroMedia img {
    min-height: 220px !important;
    max-height: 320px !important;
  }
  .heroStats {
    grid-template-columns: repeat(3, 1fr) !important;
  }
  .stat strong { font-size: 12px; }
  .stat span { font-size: 11px; }
}

/* ===== MOBILE FIXES — RESERVE FORM & URGENT BAR OVERLAP ===== */

/* Prevent urgent bar from covering page content on mobile */
@media (max-width: 860px) {
  body {
    padding-bottom: 90px;
  }
  main {
    padding-bottom: 90px;
  }
}

/* Reserve-online page: full-width card, no overflow on mobile */
.opx-reservePage {
  padding: 20px 0 40px;
}

.opx-reservePage .opx-card {
  max-width: 640px;
  margin: 0 auto;
  border-radius: 16px;
  overflow: visible;
}

@media (max-width: 640px) {
  /* Card takes full width on phone */
  .opx-reservePage .opx-card {
    border-radius: 0;
    border-left: none;
    border-right: none;
    margin: 0 -16px; /* bleed to edges */
  }

  /* Force single column form on all phones */
  .opx-grid {
    grid-template-columns: 1fr !important;
  }

  /* Card top padding tighter on phone */
  .opx-card-top {
    padding: 16px;
  }

  .opx-card-top .opx-card-title {
    font-size: 22px !important;
  }

  /* Form fields full width on phone */
  .opx-field input,
  .opx-field select,
  .opx-field textarea {
    font-size: 16px; /* prevent iOS auto-zoom */
    width: 100%;
    box-sizing: border-box;
  }

  /* Wrap reserve page content so card doesn't overflow */
  main.opx-reservePage {
    padding-left: 0;
    padding-right: 0;
    width: 100%;
    overflow-x: hidden;
  }
}

/* Fix opx-wrap overflow on narrow screens */
@media (max-width: 480px) {
  .opx-wrap,
  .container {
    width: 100%;
    padding-left: 16px;
    padding-right: 16px;
    box-sizing: border-box;
  }

  /* Reserve card: use full screen width */
  .opx-formWrap {
    padding: 16px;
  }
  
  /* Urgent bar: ensure it doesn't go off-screen on very narrow phones */
  .opx-urgentBar {
    left: 8px;
    right: 8px;
    bottom: 8px;
  }
  
  .opx-urgentInner {
    flex-wrap: wrap;
    gap: 8px;
  }
  
  .opx-urgentActions {
    width: 100%;
    justify-content: space-between;
  }
}

/* Hours badge mobile layout */
.opx-hoursBadge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.25);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  color: #065f46;
  margin-bottom: 16px;
}

.opx-hoursBadge .opx-openDot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.25);
  animation: pulse 2s infinite;
  display: inline-block;
  flex-shrink: 0;
}

/* Reserve page hero section above the card */
.opx-reserveHero {
  text-align: center;
  padding: 32px 16px 20px;
}

.opx-reserveHero h1 {
  font-size: clamp(22px, 5vw, 36px);
  font-weight: 900;
  color: var(--opx-text);
  margin: 0 0 8px;
  line-height: 1.15;
}

.opx-reserveHero p {
  color: var(--opx-muted);
  margin: 0;
  font-size: 15px;
}

/* FAQ details/summary styling for problem and location pages */
.faqList {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 16px;
}

.faqItem {
  border: 1.5px solid var(--opx-border, #E0E0E0);
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
}

.faqItem summary {
  padding: 16px 20px;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 15px;
  color: var(--opx-text, #1A1A1A);
  user-select: none;
}

.faqItem summary::-webkit-details-marker { display: none; }

.faqItem summary::after {
  content: '+';
  font-size: 20px;
  font-weight: 300;
  color: var(--opx-muted, #666);
  transition: transform 0.2s;
  flex-shrink: 0;
}

.faqItem[open] summary::after {
  transform: rotate(45deg);
}

.faqItem[open] summary {
  border-bottom: 1.5px solid var(--opx-border, #E0E0E0);
  background: rgba(249,250,251,0.8);
}

.faqItem p {
  padding: 14px 20px;
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
  color: var(--opx-muted, #555);
}

/* checkList styling for problem/brand pages */
.checkList {
  list-style: none;
  padding: 0;
  margin: 12px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.checkList li {
  padding-left: 24px;
  position: relative;
  font-size: 14px;
  line-height: 1.55;
  color: var(--opx-text, #1A1A1A);
}

.checkList li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #10b981;
  font-weight: 900;
  font-size: 14px;
}

ol.checkList li::before {
  content: counter(list-item) '.';
  color: var(--opx-accent, #CC2222);
  font-weight: 700;
}

ol.checkList {
  counter-reset: list-item;
  list-style: decimal;
  padding-left: 20px;
}

ol.checkList li {
  padding-left: 0;
}

ol.checkList li::before {
  display: none;
}

/* Split two-column layout for problem/location pages */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

@media (max-width: 768px) {
  .split {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/* pageHero for location/brand/problem pages */
.pageHero {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  padding: 48px 0 40px;
  color: #fff;
}

.pageHero--slim {
  padding: 32px 0 28px;
}

.pageHero .kicker {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.6);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.pageHero .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #10b981;
  display: inline-block;
}

.pageHero h1,
.pageHero .h1 {
  font-size: clamp(24px, 4.5vw, 42px);
  font-weight: 900;
  line-height: 1.15;
  color: #fff;
  margin: 0 0 14px;
}

.pageHero .sub {
  color: rgba(255,255,255,0.78);
  font-size: clamp(14px, 2vw, 16px);
  line-height: 1.65;
  margin: 0 0 24px;
  max-width: 580px;
}

.heroBtns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Section layout */
.section {
  padding: 56px 0;
}

.section.soft {
  background: #f8f9fa;
}

/* sectionHead */
.sectionHead {
  margin-bottom: 28px;
}

.sectionHead h2 {
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 900;
  margin: 0 0 8px;
  color: var(--opx-text, #1A1A1A);
}

.sectionHead .muted {
  color: var(--opx-muted, #666);
  margin: 0;
  font-size: 15px;
}

/* badgeRow for trust signals */
.badgeRow {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.badgeRow .badge {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: #fff;
  border: 1.5px solid #E0E0E0;
  border-radius: 12px;
  padding: 14px 16px;
  flex: 1;
  min-width: 180px;
}

.badgeTxt strong {
  display: block;
  font-size: 14px;
  font-weight: 800;
  color: #1A1A1A;
  margin-bottom: 2px;
}

.badgeTxt span {
  font-size: 12px;
  color: #666;
  line-height: 1.4;
}

/* opx-alertBar */
.opx-alertBar {
  border-radius: 8px;
}

/* footer links grids */
.opx-footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding: 24px 22px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.opx-footer-col h4 {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.5);
  margin: 0 0 10px;
}

.opx-footer-col a {
  display: block;
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  margin-bottom: 6px;
}

.opx-footer-col a:hover {
  color: #fff;
}

@media (max-width: 640px) {
  .opx-footer-links {
    grid-template-columns: 1fr 1fr;
  }
}

/* Panel class for split layouts */
.panel {
  min-width: 0;
}

/* pageHeroCard — full width fix */
.pageHeroGrid {
  max-width: 100% !important;
  grid-template-columns: 1fr !important;
}

.pageHeroCard {
  padding: 0;
  max-width: 100% !important;
  width: 100% !important;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  overflow: visible !important;
}

/* Also fix the original pageHeroGrid 2-col layout */
.pageHeroGrid.has-media {
  grid-template-columns: 1.2fr 0.8fr !important;
}


/* ===== PAGEH ERO TEXT — always white on dark background ===== */
.pageHero .h1,
.pageHero h1 {
  color: #ffffff !important;
}
.pageHero .sub,
.pageHero p {
  color: rgba(255,255,255,0.82) !important;
}
.pageHero .kicker {
  color: rgba(255,255,255,0.6) !important;
}
.pageHero .container {
  padding-top: 48px;
  padding-bottom: 40px;
}


/* ================================================================
   PAGEH ERO COMPLETE FIX — applies to ALL 52 location/brand/problem pages
   ================================================================ */

/* 1. The outer section — dark gradient background */
section.pageHero {
  background: linear-gradient(135deg, #111827 0%, #1e293b 100%) !important;
  padding: 56px 0 48px !important;
  width: 100% !important;
  display: block !important;
  overflow: visible !important;
}

/* 2. Container inside hero — full width, no clipping */
section.pageHero > .container {
  max-width: 1180px !important;
  margin: 0 auto !important;
  padding: 0 24px !important;
  box-sizing: border-box !important;
  width: 100% !important;
}

/* 3. The grid wrapper — single column, full width */
section.pageHero .pageHeroGrid {
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
  grid-template-columns: unset !important;
  overflow: visible !important;
}

/* 4. The card — completely invisible, just a content wrapper */
section.pageHero .pageHeroCard {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  padding: 0 !important;
  max-width: 800px !important;
  width: 100% !important;
  overflow: visible !important;
}

/* 5. Kicker line (small label above h1) */
section.pageHero .kicker {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  font-size: 12px !important;
  font-weight: 800 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.1em !important;
  color: rgba(255, 255, 255, 0.55) !important;
  margin-bottom: 14px !important;
}

section.pageHero .kicker .dot {
  width: 7px !important;
  height: 7px !important;
  border-radius: 50% !important;
  background: #10b981 !important;
  display: inline-block !important;
  flex-shrink: 0 !important;
}

/* 6. H1 — big, white, readable */
section.pageHero h1,
section.pageHero .h1 {
  font-size: clamp(26px, 4vw, 44px) !important;
  font-weight: 900 !important;
  line-height: 1.12 !important;
  color: #ffffff !important;
  margin: 0 0 16px !important;
  max-width: 700px !important;
}

/* 7. Subtitle paragraph */
section.pageHero p,
section.pageHero .sub {
  font-size: 16px !important;
  line-height: 1.65 !important;
  color: rgba(255, 255, 255, 0.78) !important;
  max-width: 620px !important;
  margin: 0 0 28px !important;
}

/* 8. Button row */
section.pageHero .heroBtns {
  display: flex !important;
  gap: 12px !important;
  flex-wrap: wrap !important;
}

section.pageHero .heroBtns .btn-accent,
section.pageHero .heroBtns a.btn-accent {
  background: #CC2222 !important;
  color: #ffffff !important;
  padding: 13px 22px !important;
  border-radius: 12px !important;
  font-weight: 800 !important;
  font-size: 15px !important;
  text-decoration: none !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  box-shadow: 0 8px 24px rgba(204,34,34,0.35) !important;
  border: none !important;
}

section.pageHero .heroBtns .btn-primary,
section.pageHero .heroBtns a.btn-primary {
  background: #E85D00 !important;
  color: #ffffff !important;
  padding: 13px 22px !important;
  border-radius: 12px !important;
  font-weight: 800 !important;
  font-size: 15px !important;
  text-decoration: none !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  box-shadow: 0 8px 24px rgba(232,93,0,0.30) !important;
  border: none !important;
}

/* 9. Mobile */
@media (max-width: 600px) {
  section.pageHero {
    padding: 40px 0 36px !important;
  }
  section.pageHero > .container {
    padding: 0 16px !important;
  }
  section.pageHero h1,
  section.pageHero .h1 {
    font-size: 26px !important;
  }
  section.pageHero p,
  section.pageHero .sub {
    font-size: 15px !important;
  }
  section.pageHero .heroBtns {
    flex-direction: column !important;
  }
  section.pageHero .heroBtns a {
    text-align: center !important;
    justify-content: center !important;
    width: 100% !important;
  }
}
