/* =============================================
   R.S.Ball Electrical — Stylesheet
   ============================================= */

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

:root {
  --yellow:    #F5C400;
  --yellow-dk: #D4A900;
  --dark:      #0F1923;
  --dark-2:    #1A2535;
  --mid:       #2D3E50;
  --text:      #1A2535;
  --text-muted:#5A6A7A;
  --border:    #DDE3EA;
  --bg:        #FFFFFF;
  --bg-alt:    #F5F7FA;
  --radius:    10px;
  --radius-lg: 18px;
  --shadow:    0 4px 24px rgba(0,0,0,.08);
  --shadow-lg: 0 12px 48px rgba(0,0,0,.14);
  --transition: 0.22s ease;
  --max-w:     1160px;
  --font:      'Segoe UI', system-ui, -apple-system, sans-serif;
}

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

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1,h2,h3,h4 { line-height: 1.2; font-weight: 700; }
h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: 1.2rem; }

p { max-width: 68ch; }

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { display: block; max-width: 100%; }
address { font-style: normal; }

/* ---------- Utility ---------- */
.container { width: 100%; max-width: var(--max-w); margin-inline: auto; padding-inline: 1.25rem; }
.section    { padding-block: 5rem; }
.section-alt { background: var(--bg-alt); }

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}
.section-header p {
  margin: .75rem auto 0;
  color: var(--text-muted);
  max-width: 58ch;
}

/* ---------- Skip link ---------- */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--yellow);
  color: var(--dark);
  padding: .5rem 1rem;
  border-radius: 0 0 var(--radius) var(--radius);
  font-weight: 600;
  z-index: 9999;
  transition: top .2s;
}
.skip-link:focus { top: 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.5rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: .95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--yellow);
  color: var(--dark);
  border-color: var(--yellow);
}
.btn-primary:hover, .btn-primary:focus-visible {
  background: var(--yellow-dk);
  border-color: var(--yellow-dk);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(245,196,0,.4);
}
.btn-ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.4);
}
.btn-ghost:hover, .btn-ghost:focus-visible {
  background: rgba(255,255,255,.1);
  border-color: #fff;
}
.btn-header {
  background: var(--yellow);
  color: var(--dark);
  padding: .6rem 1.2rem;
  font-size: .9rem;
}
.btn-header:hover { background: var(--yellow-dk); }
.btn-full { width: 100%; justify-content: center; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--dark);
  box-shadow: 0 2px 12px rgba(0,0,0,.3);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding-block: .9rem;
}
.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.logo-img {
  height: 40px;
  width: auto;
  object-fit: contain;
}

.nav-list {
  display: flex;
  gap: .25rem;
  margin-left: auto;
}
.nav-list a {
  color: rgba(255,255,255,.8);
  padding: .4rem .8rem;
  border-radius: 6px;
  font-size: .9rem;
  transition: all var(--transition);
}
.nav-list a:hover, .nav-list a:focus-visible {
  color: #fff;
  background: rgba(255,255,255,.08);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: .4rem;
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all var(--transition);
}

/* ---------- Hero ---------- */
.hero {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 50%, var(--mid) 100%);
  color: #fff;
  padding-block: 5rem 4rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(245,196,0,.08) 0%, transparent 65%);
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: center;
}
.hero-eyebrow {
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: .75rem;
}
.hero h1 { color: #fff; margin-bottom: 1.25rem; }
.hero-sub { color: rgba(255,255,255,.75); font-size: 1.1rem; margin-bottom: 2rem; max-width: 52ch; }

.hero-ctas { display: flex; flex-wrap: wrap; gap: .75rem; margin-bottom: 2rem; }

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.trust-badges li {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .85rem;
  color: rgba(255,255,255,.65);
}
.trust-badges svg { color: var(--yellow); flex-shrink: 0; }

/* Hero card */
.hero-card {
  flex-shrink: 0;
}
.hero-card-inner {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  text-align: center;
  backdrop-filter: blur(12px);
  min-width: 200px;
}
.hero-card-logo {
  width: 120px;
  height: auto;
  margin-bottom: 1rem;
  margin-inline: auto;
  display: block;
  border-radius: var(--radius);
  object-fit: contain;
}
.hero-card-name { font-size: 1.2rem; font-weight: 700; color: #fff; margin-bottom: .2rem; }
.hero-card-title { font-size: .85rem; color: var(--yellow); font-weight: 600; margin-bottom: .75rem; }
.hero-card-area { font-size: .8rem; color: rgba(255,255,255,.55); margin-bottom: 1rem; }
.hero-card-phone {
  display: block;
  background: var(--yellow);
  color: var(--dark);
  font-weight: 700;
  padding: .6rem 1rem;
  border-radius: var(--radius);
  font-size: .9rem;
  transition: background var(--transition);
}
.hero-card-phone:hover { background: var(--yellow-dk); }

/* ---------- Services ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}
.service-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: all var(--transition);
}
.service-card:hover {
  border-color: var(--yellow);
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}
.service-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  display: inline-block;
}
.service-card h3 { margin-bottom: .6rem; }
.service-card > p { font-size: .95rem; color: var(--text-muted); margin-bottom: 1rem; }
.service-card ul { display: flex; flex-direction: column; gap: .4rem; }
.service-card li {
  font-size: .88rem;
  color: var(--text-muted);
  padding-left: 1.2rem;
  position: relative;
}
.service-card li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--yellow-dk);
  font-weight: 700;
}

/* ---------- About ---------- */
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.about-text h2 { margin-bottom: 1.25rem; }
.about-text p { color: var(--text-muted); margin-bottom: 1rem; }
.about-text .btn { margin-top: .5rem; }

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.stat-card {
  background: var(--bg);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  text-align: center;
  box-shadow: var(--shadow);
}
.stat-number {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--dark);
  line-height: 1;
  margin-bottom: .4rem;
}
.stat-label {
  font-size: .8rem;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .05em;
}

/* ---------- Reviews ---------- */
.reviews-summary {
  text-align: center;
  margin-bottom: 2.5rem;
}
.reviews-score {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  margin-bottom: .25rem;
}
.reviews-stars {
  font-size: 1.8rem;
  color: var(--yellow);
  letter-spacing: 2px;
}
.reviews-rating {
  font-size: 2rem;
  font-weight: 800;
  color: var(--dark);
}
.reviews-source {
  font-size: .85rem;
  color: var(--text-muted);
  font-weight: 600;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}
.review-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  transition: all var(--transition);
}
.review-card:hover {
  border-color: var(--yellow);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.review-stars {
  font-size: 1.1rem;
  color: var(--yellow);
  letter-spacing: 2px;
  margin-bottom: .75rem;
}
.review-text {
  flex: 1;
  font-size: .95rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
  margin-bottom: 1rem;
}
.review-author {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: .75rem;
  border-top: 1px solid var(--border);
  font-size: .85rem;
}
.review-author strong { color: var(--text); }
.review-author span { color: var(--text-muted); }

.reviews-cta {
  text-align: center;
  margin-top: 2rem;
}

/* ---------- FAQ ---------- */
.faq-inner { max-width: 760px; margin-inline: auto; }
.faq-list { display: flex; flex-direction: column; gap: .75rem; }

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item:has(.faq-question[aria-expanded="true"]) {
  border-color: var(--yellow);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  padding: 1.1rem 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  text-align: left;
  transition: background var(--transition);
}
.faq-question:hover { background: var(--bg-alt); }
.faq-question[aria-expanded="true"] { color: var(--dark-2); }

.faq-chevron {
  flex-shrink: 0;
  transition: transform var(--transition);
  color: var(--text-muted);
}
.faq-question[aria-expanded="true"] .faq-chevron {
  transform: rotate(180deg);
  color: var(--yellow-dk);
}

.faq-answer {
  padding: 0 1.25rem 1.1rem;
  color: var(--text-muted);
  font-size: .95rem;
  line-height: 1.7;
  animation: fadeIn .2s ease;
}
.faq-answer[hidden] { display: none; }

@keyframes fadeIn { from { opacity: 0; transform: translateY(-4px); } to { opacity: 1; transform: none; } }

/* ---------- Contact ---------- */
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: start;
}
.contact-info h2 { margin-bottom: 1rem; }
.contact-info > p { color: var(--text-muted); margin-bottom: 2rem; }

.contact-details { display: flex; flex-direction: column; gap: 1rem; }
.contact-item {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: .95rem;
  color: var(--text-muted);
}
a.contact-item {
  color: var(--dark);
  font-size: 1.25rem;
  font-weight: 700;
  transition: color var(--transition);
}
a.contact-item:hover { color: var(--yellow-dk); }
.contact-item svg { color: var(--yellow-dk); flex-shrink: 0; }

/* Form */
.contact-form {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: .4rem; margin-bottom: 1.1rem; }
.form-group label { font-size: .85rem; font-weight: 600; color: var(--text); }

input, select, textarea {
  width: 100%;
  padding: .7rem .9rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: .95rem;
  color: var(--text);
  background: var(--bg);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--yellow);
  box-shadow: 0 0 0 3px rgba(245,196,0,.2);
}
textarea { resize: vertical; }

.form-note {
  margin-top: 1rem;
  font-size: .8rem;
  color: var(--text-muted);
  text-align: center;
}
.form-note a { color: var(--dark); font-weight: 600; text-decoration: underline; }

/* ---------- Footer ---------- */
.site-footer { background: var(--dark); color: rgba(255,255,255,.7); }
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2rem;
  padding-block: 3rem;
}
.footer-logo {
  height: 45px;
  width: auto;
  object-fit: contain;
  margin-bottom: .5rem;
}
.footer-brand p { font-size: .85rem; margin-top: .75rem; max-width: 30ch; }

.footer-nav { display: flex; flex-direction: column; gap: .5rem; }
.footer-nav a {
  font-size: .9rem;
  color: rgba(255,255,255,.6);
  transition: color var(--transition);
}
.footer-nav a:hover { color: var(--yellow); }

.footer-contact a {
  display: block;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--yellow);
  margin-bottom: .4rem;
}
.footer-contact p { font-size: .85rem; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-block: 1.25rem;
}
.footer-bottom p { font-size: .8rem; color: rgba(255,255,255,.35); }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-card { display: none; }
  .about-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .contact-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  .section { padding-block: 3.5rem; }
  .nav-list { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: var(--dark-2); padding: 1rem; gap: .25rem; border-bottom: 2px solid var(--yellow); }
  .nav-list.open { display: flex; }
  .nav-toggle { display: flex; }
  .btn-header { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
}

@media (max-width: 400px) {
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
}

/* ---------- Focus visible ---------- */
:focus-visible {
  outline: 2px solid var(--yellow);
  outline-offset: 3px;
}

/* =============================================
   PHASE 2 ADDITIONS
   ============================================= */

/* ---------- Emergency top bar ---------- */
.emergency-bar {
  background: #B91C1C;
  color: #fff;
}
.emergency-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding-block: .5rem;
  flex-wrap: wrap;
  text-align: center;
}
.emergency-bar-text {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-size: .85rem;
  font-weight: 600;
}
.emergency-bar-text svg { color: var(--yellow); flex-shrink: 0; }
.emergency-bar-phone {
  background: #fff;
  color: #B91C1C;
  font-weight: 800;
  font-size: .85rem;
  padding: .25rem .8rem;
  border-radius: 999px;
  white-space: nowrap;
  transition: transform var(--transition);
}
.emergency-bar-phone:hover { transform: scale(1.04); }

/* ---------- Large hero button ---------- */
.btn-lg {
  padding: .95rem 1.9rem;
  font-size: 1.1rem;
}

/* ---------- Service card link ---------- */
.service-link {
  display: inline-block;
  margin-top: 1rem;
  font-weight: 700;
  font-size: .9rem;
  color: var(--dark);
  border-bottom: 2px solid var(--yellow);
  padding-bottom: 2px;
  transition: color var(--transition), border-color var(--transition);
}
.service-link:hover { color: var(--yellow-dk); border-color: var(--yellow-dk); }

/* ---------- Gallery ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--dark-2);
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  background: linear-gradient(transparent, rgba(15,25,35,.88));
  color: #fff;
  font-size: .85rem;
  font-weight: 600;
  padding: 1.5rem .9rem .8rem;
}
/* Placeholder shown when an image is missing */
.gallery-item.img-missing img { display: none; }
.gallery-item.img-missing {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px dashed rgba(255,255,255,.2);
}
.gallery-item.img-missing::before {
  content: '📷';
  font-size: 2.5rem;
  opacity: .4;
}
.gallery-note {
  margin: 2rem auto 0;
  text-align: center;
  font-size: .85rem;
  color: var(--text-muted);
  max-width: 60ch;
}
.gallery-note code, .about-photo-placeholder code {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 1px 5px;
  font-size: .85em;
}

/* ---------- Service area map ---------- */
.areas-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: center;
}
.areas-text h2 { margin-bottom: 1rem; }
.areas-text > p { color: var(--text-muted); margin-bottom: 1.25rem; }
.areas-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .5rem 1rem;
  margin-bottom: 1.5rem;
}
.areas-list li {
  font-size: .9rem;
  color: var(--text);
  padding-left: 1.2rem;
  position: relative;
}
.areas-list li::before {
  content: '📍';
  position: absolute;
  left: 0;
  font-size: .8rem;
}
.areas-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  line-height: 0;
}

/* Real-boundary coverage map */
.areas-map-static {
  position: relative;
  aspect-ratio: 760 / 700;
  min-height: 300px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: linear-gradient(160deg, #16263a 0%, #1b2f47 100%); /* sea */
}
.coverage-svg {
  position: absolute;
  inset: 0 0 44px 0;
  z-index: 1;
}
.coverage-svg path { vector-effect: non-scaling-stroke; }
.ct-context { fill: #2a3d51; stroke: #3d5269; stroke-width: .6; }
.ct-wider   { fill: rgba(245,196,0,.30); stroke: rgba(245,196,0,.8); stroke-width: .7; }
.ct-primary { fill: rgba(245,196,0,.9);  stroke: #ffffff; stroke-width: 1; }
.ct-lbl {
  fill: #fff;
  font-family: var(--font);
  font-size: 11px;
  font-weight: 600;
  text-anchor: middle;
  paint-order: stroke;
  stroke: #0F1923;
  stroke-width: 2.5px;
  stroke-linejoin: round;
  pointer-events: none;
}
.ct-lbl-primary { font-size: 15px; font-weight: 800; }

.coverage-legend {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  gap: .5rem 1rem;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  background: rgba(15,25,35,.72);
  backdrop-filter: blur(4px);
  padding: .5rem .9rem;
  border-radius: 999px;
  max-width: 94%;
}
.coverage-legend span {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .74rem;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
}
.swatch { width: 14px; height: 14px; border-radius: 3px; flex-shrink: 0; }
.swatch-core { background: rgba(245,196,0,.55); border: 1.5px solid var(--yellow); }
.swatch-wide { background: rgba(245,196,0,.16); border: 1.5px dashed var(--yellow); }

/* ---------- About media (Ryan photo) ---------- */
.about-media {
  display: grid;
  gap: 1.25rem;
}
.about-photo {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-alt);
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 5;
}
.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-photo-placeholder {
  display: none;
  position: absolute;
  inset: 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  text-align: center;
  color: var(--text-muted);
  border: 2px dashed var(--border);
  border-radius: var(--radius-lg);
  padding: 1rem;
  font-size: .9rem;
}
.about-photo.photo-missing img { display: none; }
.about-photo.photo-missing .about-photo-placeholder { display: flex; }
.photo-placeholder-icon { font-size: 2.5rem; opacity: .5; }
.about-media .about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

/* ---------- Dark-friendly ghost button (reviews CTA) ---------- */
.btn-ghost-dark {
  color: var(--dark);
  border-color: var(--border);
}
.btn-ghost-dark:hover {
  background: var(--bg-alt);
  border-color: var(--yellow);
}
.reviews-cta { display: flex; gap: .75rem; justify-content: center; flex-wrap: wrap; }

/* ---------- Phase 2 responsive ---------- */
@media (max-width: 900px) {
  .areas-inner { grid-template-columns: 1fr; gap: 2rem; }
  .about-media { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .emergency-bar-text { font-size: .78rem; }
  .areas-list { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 400px) {
  .gallery-grid { grid-template-columns: 1fr; }
}

/* ---------- Booking section ---------- */
.booking { background: #FFFBEB; }
.booking-card {
  max-width: 720px;
  margin-inline: auto;
  text-align: center;
  background: var(--bg);
  border: 1px solid var(--border);
  border-top: 4px solid var(--yellow);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow);
}
.booking-steps {
  display: flex;
  gap: 1.25rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1.75rem;
}
.booking-step {
  display: flex;
  align-items: center;
  gap: .55rem;
  font-size: .92rem;
  font-weight: 600;
  color: var(--text);
}
.booking-step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 27px;
  height: 27px;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--dark);
  font-weight: 800;
  font-size: .85rem;
  flex-shrink: 0;
}
.booking-btn { margin-inline: auto; }
.booking-or {
  margin: 1.1rem auto 0;
  font-size: .9rem;
  color: var(--text-muted);
}
.booking-or a { color: var(--dark); font-weight: 700; text-decoration: underline; }

/* ---------- Service detail pages ---------- */
.service-hero {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 60%, var(--mid) 100%);
  color: #fff;
  padding-block: 3.5rem;
}
.breadcrumb {
  font-size: .82rem;
  color: rgba(255,255,255,.6);
  margin-bottom: 1rem;
}
.breadcrumb a { color: var(--yellow); }
.breadcrumb span { margin-inline: .4rem; }
.service-hero h1 { color: #fff; margin-bottom: 1rem; max-width: 22ch; }
.service-hero p { color: rgba(255,255,255,.8); max-width: 60ch; margin-bottom: 1.5rem; }

.prose { max-width: 760px; margin-inline: auto; }
.prose h2 { margin: 2.25rem 0 .9rem; }
.prose h3 { margin: 1.5rem 0 .5rem; }
.prose p { color: var(--text-muted); margin-bottom: 1rem; }
.prose ul { margin: 0 0 1.25rem; display: flex; flex-direction: column; gap: .5rem; }
.prose ul li {
  position: relative;
  padding-left: 1.5rem;
  color: var(--text-muted);
}
.prose ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--yellow-dk);
  font-weight: 700;
}
.service-cta-box {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-left: 4px solid var(--yellow);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin: 2.5rem 0;
  text-align: center;
}
.service-cta-box p { margin-bottom: 1rem; font-weight: 600; color: var(--text); }
.related-services {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  margin-top: 1rem;
}
.related-services a {
  font-size: .85rem;
  padding: .4rem .9rem;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--text);
  transition: all var(--transition);
}
.related-services a:hover { border-color: var(--yellow); color: var(--yellow-dk); }
