/* ==========================================================================
   Brilliant Beacon Services — Design System & Base Styles
   Colour system derived from the supplied logo (navy + gold).
   Edit the variables below to restyle the entire site.
   ========================================================================== */

:root {
  /* ---- Brand colours (from logo) ---- */
  --color-primary: #0b1e3c;        /* deep navy — logo background */
  --color-primary-dark: #071429;   /* darker navy for hover/contrast */
  --color-primary-light: #16305c;  /* lighter navy for gradients/panels */
  --color-accent: #c9a227;         /* gold — logo emblem */
  --color-accent-dark: #a9870f;    /* darker gold for hover states */
  --color-accent-light: #e6c860;   /* lighter gold for highlights */

  /* ---- Neutral / text colours ---- */
  --color-text: #1a1e27;
  --color-text-muted: #5a6270;
  --color-text-inverse: #f5f6f8;
  --color-bg: #ffffff;
  --color-bg-alt: #f6f7f9;
  --color-bg-dark: var(--color-primary);
  --color-border: #e3e5ea;
  --color-border-dark: rgba(255, 255, 255, 0.14);

  /* ---- Feedback colours ---- */
  --color-success: #1f7a3d;
  --color-success-bg: #eaf6ee;
  --color-error: #b3261e;
  --color-error-bg: #fbeceb;

  /* ---- Typography ---- */
  --font-heading: "Montserrat", "Helvetica Neue", Arial, sans-serif;
  --font-body: "Lato", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --fs-xs: 0.8125rem;
  --fs-sm: 0.9375rem;
  --fs-base: 1rem;
  --fs-md: 1.125rem;
  --fs-lg: 1.375rem;
  --fs-xl: 1.75rem;
  --fs-2xl: 2.25rem;
  --fs-3xl: 3rem;
  --lh-tight: 1.2;
  --lh-normal: 1.6;

  /* ---- Spacing scale ---- */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.5rem;
  --space-6: 2rem;
  --space-7: 3rem;
  --space-8: 4rem;
  --space-9: 6rem;

  /* ---- Layout ---- */
  --container-max: 1200px;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 14px;

  /* ---- Shadows ---- */
  --shadow-sm: 0 1px 3px rgba(11, 30, 60, 0.08);
  --shadow-md: 0 6px 20px rgba(11, 30, 60, 0.10);
  --shadow-lg: 0 18px 40px rgba(11, 30, 60, 0.16);

  /* ---- Motion ---- */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
}

/* ==========================================================================
   Reset & base
   ========================================================================== */

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--fs-base);
  line-height: var(--lh-normal);
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--color-primary); text-decoration-color: rgba(11,30,60,0.35); }
a:hover { text-decoration-color: currentColor; }

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  line-height: var(--lh-tight);
  margin: 0 0 var(--space-4);
  color: var(--color-primary);
  font-weight: 700;
}

h1 { font-size: var(--fs-3xl); }
h2 { font-size: var(--fs-2xl); }
h3 { font-size: var(--fs-lg); }
h4 { font-size: var(--fs-md); }

p { margin: 0 0 var(--space-4); color: var(--color-text); }
p:last-child { margin-bottom: 0; }

ul, ol { margin: 0 0 var(--space-4); padding-left: 1.25em; }

/* Visible, consistent focus states for accessibility */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid var(--color-accent);
  outline-offset: 2px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--color-primary);
  color: #fff;
  padding: var(--space-3) var(--space-5);
  z-index: 2000;
  border-radius: 0 0 var(--radius-sm) 0;
}
.skip-link:focus { left: 0; }

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--space-5);
}

section { padding-block: var(--space-8); }
.section-alt { background: var(--color-bg-alt); }
.section-dark {
  background: linear-gradient(160deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: var(--color-text-inverse);
}
.section-dark h2, .section-dark h3 { color: #fff; }

.section-header {
  max-width: 680px;
  margin: 0 auto var(--space-7);
  text-align: center;
}
.section-header .eyebrow {
  display: inline-block;
  color: var(--color-accent-dark);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: var(--fs-xs);
  margin-bottom: var(--space-2);
}
.section-header p { color: var(--color-text-muted); font-size: var(--fs-md); }

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: 0.85em 1.6em;
  font-family: var(--font-heading);
  font-size: var(--fs-sm);
  font-weight: 600;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background var(--transition-fast), color var(--transition-fast), border-color var(--transition-fast), transform var(--transition-fast);
  line-height: 1;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: var(--color-primary-dark);
}
.btn-primary:hover { background: var(--color-accent-dark); border-color: var(--color-accent-dark); color: #fff; }

.btn-secondary {
  background: transparent;
  border-color: currentColor;
  color: inherit;
}
.btn-secondary:hover { background: rgba(255,255,255,0.12); }

.section:not(.section-dark) .btn-secondary,
body .btn-secondary.on-light {
  border-color: var(--color-primary);
  color: var(--color-primary);
}
body .btn-secondary.on-light:hover { background: var(--color-primary); color: #fff; }

.btn-block { width: 100%; }
.btn-sm { padding: 0.55em 1.1em; font-size: var(--fs-xs); }

/* ==========================================================================
   Header & Navigation
   ========================================================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: var(--color-primary);
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: var(--space-4);
  padding-block: var(--space-3);
}

.brand {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  text-decoration: none;
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--fs-md);
}
.brand img { height: 48px; width: auto; display: block; }

/* Header phone: sits to the right of the logo, grouped with nav/hamburger on the far right */
.header-phone {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  margin-left: auto;
  color: var(--color-accent-light);
  text-decoration: none;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--fs-sm);
  white-space: nowrap;
  padding: var(--space-2) var(--space-3);
  border: 1.5px solid rgba(255,255,255,0.3);
  border-radius: 999px;
  transition: border-color var(--transition-fast), color var(--transition-fast), background var(--transition-fast);
}
.header-phone:hover {
  border-color: var(--color-accent);
  color: #fff;
  background: rgba(255,255,255,0.08);
}
.header-phone-icon { font-size: 1rem; line-height: 1; }

.main-nav {
  display: flex;
  align-items: center;
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: var(--space-6);
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: nowrap;
}
.main-nav a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-weight: 600;
  font-size: var(--fs-sm);
  padding: var(--space-2) 0;
  border-bottom: 2px solid transparent;
}
.main-nav a:hover,
.main-nav a[aria-current="page"] {
  color: #fff;
  border-bottom-color: var(--color-accent);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: var(--space-5);
  padding-left: var(--space-5);
  margin-left: var(--space-2);
  border-left: 1px solid rgba(255,255,255,0.25);
}
.nav-cta .btn-secondary.on-light {
  border-color: rgba(255,255,255,0.55);
  color: #fff;
}
.nav-cta .btn-secondary.on-light:hover {
  background: rgba(255,255,255,0.12);
  color: #fff;
}

.nav-toggle {
  display: none;
  background: none;
  border: 2px solid rgba(255,255,255,0.4);
  border-radius: var(--radius-sm);
  padding: var(--space-2) var(--space-3);
  cursor: pointer;
}
.nav-toggle .bar {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  margin: 4px 0;
  transition: transform var(--transition-fast), opacity var(--transition-fast);
}
.nav-toggle[aria-expanded="true"] .bar:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .bar:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ==========================================================================
   Hero
   ========================================================================== */

.hero {
  position: relative;
  color: #fff;
  background: linear-gradient(160deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  overflow: hidden;
}

/* Full-bleed hero: the slider fills the section as a background,
   with the headline/CTA overlaid on top of a dark scrim for legibility. */
.hero-fullbleed {
  min-height: 560px;
  display: flex;
  align-items: center;
}
.hero-fullbleed .hero-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-fullbleed .hero-slides,
.hero-fullbleed .hero-slide,
.hero-fullbleed .hero-slide img {
  width: 100%;
  height: 100%;
}
.hero-fullbleed .hero-slide img { object-fit: cover; display: block; }
.hero-fullbleed .hero-slide figcaption { display: none; } /* service name is in the overlaid heading instead */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(100deg, rgba(11,30,60,0.92) 0%, rgba(11,30,60,0.78) 38%, rgba(11,30,60,0.35) 68%, rgba(11,30,60,0.15) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding-block: var(--space-9);
  max-width: 42rem;
}
/* Each hero slide carries its own headline/copy, swapped in sync with the
   background image so the write-up always matches what's on screen. */
.hero-text-slide {
  display: none;
}
.hero-text-slide.is-active {
  display: block;
  animation: hero-text-fade-in 0.5s ease;
}
@keyframes hero-text-fade-in {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-text-slide.is-active { animation: none; }
}
.hero-fullbleed .hero-slider-btn,
.hero-fullbleed .hero-slider-counter,
.hero-fullbleed .hero-slider-dots { z-index: 3; }

.hero h1 { color: #fff; font-size: var(--fs-3xl); margin-bottom: var(--space-4); }
.hero p.lead { font-size: var(--fs-md); color: rgba(255,255,255,0.85); max-width: 42ch; margin-bottom: var(--space-6); }
.hero .hero-actions { display: flex; gap: var(--space-4); flex-wrap: wrap; }
.hero-media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 3;
}
.hero-media img { width: 100%; height: 100%; object-fit: cover; }

/* ---- Hero slider ---- */
.hero-slider { position: relative; }
.hero-slides { position: relative; width: 100%; height: 100%; }
.hero-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition-slow, 0.5s ease);
}
.hero-slide.is-active { position: relative; opacity: 1; visibility: visible; }
.hero-slide img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-slide figcaption {
  position: absolute;
  left: var(--space-4);
  bottom: var(--space-4);
  background: rgba(11,30,60,0.75);
  color: #fff;
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: var(--space-2) var(--space-4);
  border-radius: 999px;
}
.hero-slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  border: none;
  background: rgba(11,30,60,0.55);
  color: #fff;
  font-size: var(--fs-sm);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition-base);
}
.hero-slider-btn:hover,
.hero-slider-btn:focus-visible { background: rgba(11,30,60,0.85); }
.hero-slider-btn.prev { left: var(--space-3); }
.hero-slider-btn.next { right: var(--space-3); }
.hero-slider-counter {
  position: absolute;
  top: var(--space-3);
  right: var(--space-3);
  z-index: 5;
  background: rgba(11,30,60,0.6);
  color: #fff;
  font-size: var(--fs-xs);
  font-weight: 700;
  padding: 0.3em 0.7em;
  border-radius: 999px;
}
.hero-slider-dots {
  position: absolute;
  bottom: var(--space-4);
  right: var(--space-4);
  z-index: 5;
  display: flex;
  gap: var(--space-2);
}
.hero-slider-dots .dot {
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.8);
  background: rgba(255,255,255,0.25);
  padding: 0;
  cursor: pointer;
}
.hero-slider-dots .dot.is-active { background: var(--color-accent); border-color: var(--color-accent); }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: rgba(201, 162, 39, 0.16);
  border: 1px solid rgba(201, 162, 39, 0.4);
  color: var(--color-accent-light);
  padding: var(--space-2) var(--space-4);
  border-radius: 999px;
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: var(--space-5);
}

/* ==========================================================================
   Cards / Services
   ========================================================================== */

.grid { display: grid; gap: var(--space-6); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-5 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--transition-base), transform var(--transition-base);
}
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.card-media { aspect-ratio: 4/3; overflow: hidden; background: var(--color-bg-alt); }
.card-media img { width: 100%; height: 100%; object-fit: cover; }
.card-media.placeholder {
  display: flex; align-items: center; justify-content: center;
  color: var(--color-text-muted); font-size: var(--fs-xs); text-align: center; padding: var(--space-4);
}
.card-body { padding: var(--space-5); display: flex; flex-direction: column; gap: var(--space-3); flex: 1; }
.card-body h3 { margin-bottom: 0; }
.card-body p { color: var(--color-text-muted); flex: 1; }
.card-actions { display: flex; gap: var(--space-3); flex-wrap: wrap; margin-top: var(--space-2); }

/* ==========================================================================
   Why choose us
   ========================================================================== */

.feature-list { list-style: none; margin: 0; padding: 0; display: grid; gap: var(--space-5); }
.feature-item { display: flex; gap: var(--space-4); align-items: flex-start; }
.feature-icon {
  flex-shrink: 0;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(201,162,39,0.15);
  color: var(--color-accent-dark);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
}
.feature-item h3 { font-size: var(--fs-md); margin-bottom: var(--space-1); }
.feature-item p { color: var(--color-text-muted); margin: 0; }

/* ==========================================================================
   How it works
   ========================================================================== */

.steps {
  list-style: none;
  margin: 0; padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
  counter-reset: step;
}
.step { text-align: center; position: relative; }
.step::before {
  counter-increment: step;
  content: counter(step);
  display: flex;
  align-items: center; justify-content: center;
  width: 56px; height: 56px;
  margin: 0 auto var(--space-4);
  border-radius: 50%;
  background: var(--color-primary);
  color: var(--color-accent-light);
  font-family: var(--font-heading);
  font-size: var(--fs-lg);
  font-weight: 700;
}
.step h3 { font-size: var(--fs-md); }
.step p { color: var(--color-text-muted); font-size: var(--fs-sm); }

/* ==========================================================================
   Gallery & Lightbox
   ========================================================================== */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-3);
}
.gallery-item {
  border: 0; padding: 0; cursor: zoom-in;
  background: var(--color-bg-alt);
  border-radius: var(--radius-sm);
  overflow: hidden;
  aspect-ratio: 1 / 1;
  position: relative;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--transition-base); }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: rgba(11,30,60,0.75); color: #fff;
  font-family: var(--font-heading);
  font-size: var(--fs-xs); font-weight: 600;
  padding: var(--space-2) var(--space-3);
  text-align: left;
}

.lightbox {
  position: fixed; inset: 0;
  background: rgba(7, 20, 41, 0.92);
  display: flex; align-items: center; justify-content: center;
  z-index: 1500;
  padding: var(--space-5);
}
.lightbox[hidden] { display: none; }
.lightbox-content { max-width: min(900px, 92vw); max-height: 86vh; }
.lightbox-content img { max-height: 78vh; width: auto; margin: 0 auto; border-radius: var(--radius-sm); }
.lightbox-caption { color: #fff; text-align: center; margin-top: var(--space-3); font-size: var(--fs-sm); }
.lightbox-close {
  position: absolute; top: var(--space-5); right: var(--space-5);
  background: rgba(255,255,255,0.12); color: #fff; border: none;
  width: 44px; height: 44px; border-radius: 50%; font-size: var(--fs-lg); cursor: pointer;
}
.lightbox-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.12); color: #fff; border: none;
  width: 48px; height: 48px; border-radius: 50%; font-size: var(--fs-lg); cursor: pointer;
}
.lightbox-prev { left: var(--space-5); }
.lightbox-next { right: var(--space-5); }

/* ==========================================================================
   Before / After
   ========================================================================== */

.before-after-pair,
.image-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.before-after-pair figure,
.image-pair figure { margin: 0; position: relative; }
.before-after-pair img,
.image-pair img { aspect-ratio: 4/3; object-fit: cover; width: 100%; }
.before-after-pair figcaption,
.image-pair figcaption {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: rgba(11,30,60,0.75); color: #fff;
  font-size: var(--fs-xs); font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em;
  padding: var(--space-2) var(--space-3);
}

/* ==========================================================================
   CTA band
   ========================================================================== */

.cta-band {
  text-align: center;
  padding-block: var(--space-8);
}
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,0.85); max-width: 56ch; margin-inline: auto; margin-bottom: var(--space-6); }
.cta-band .hero-actions { justify-content: center; }

/* ==========================================================================
   Forms
   ========================================================================== */

.form-field { margin-bottom: var(--space-5); }
.form-field label {
  display: block;
  font-weight: 700;
  font-size: var(--fs-sm);
  margin-bottom: var(--space-2);
}
.form-field .hint { color: var(--color-text-muted); font-size: var(--fs-xs); margin-top: var(--space-1); }
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 0.75em 0.9em;
  font: inherit;
  border: 2px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: #fff;
  color: var(--color-text);
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--color-primary);
  outline: none;
}
.form-field.has-error input,
.form-field.has-error select,
.form-field.has-error textarea {
  border-color: var(--color-error);
}
.form-field .error-message {
  color: var(--color-error);
  font-size: var(--fs-xs);
  margin-top: var(--space-1);
  display: none;
}
.form-field.has-error .error-message { display: block; }

.form-status {
  padding: var(--space-4) var(--space-5);
  border-radius: var(--radius-sm);
  margin-bottom: var(--space-5);
  font-size: var(--fs-sm);
}
.form-status[hidden] { display: none; }
.form-status.success { background: var(--color-success-bg); color: var(--color-success); border: 1px solid rgba(31,122,61,0.3); }
.form-status.error { background: var(--color-error-bg); color: var(--color-error); border: 1px solid rgba(179,38,30,0.3); }
.form-status.loading { background: var(--color-bg-alt); color: var(--color-text-muted); border: 1px solid var(--color-border); }

/* Honeypot field — hidden from sighted users and keyboard tab order, but present for basic bot filtering */
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* ==========================================================================
   FAQ Accordion
   ========================================================================== */

.faq-categories {
  display: flex; flex-wrap: wrap; gap: var(--space-2);
  margin-bottom: var(--space-7);
  list-style: none; padding: 0;
}
.faq-categories button {
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  color: var(--color-text);
  padding: var(--space-2) var(--space-4);
  border-radius: 999px;
  font-family: var(--font-heading);
  font-size: var(--fs-sm);
  font-weight: 600;
  cursor: pointer;
}
.faq-categories button[aria-pressed="true"] {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: #fff;
}

.faq-group { margin-bottom: var(--space-7); }
.faq-group h2 { font-size: var(--fs-xl); }

.accordion-item {
  border-bottom: 1px solid var(--color-border);
}
.accordion-trigger {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: var(--space-5) 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  font-size: var(--fs-md);
  font-weight: 700;
  font-family: var(--font-heading);
  color: var(--color-primary);
  cursor: pointer;
}
.accordion-trigger .icon {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 2px solid var(--color-accent);
  display: flex; align-items: center; justify-content: center;
  color: var(--color-accent-dark);
  transition: transform var(--transition-fast);
}
.accordion-trigger[aria-expanded="true"] .icon { transform: rotate(45deg); }
.accordion-panel {
  overflow: hidden;
  max-height: 0;
  transition: max-height var(--transition-base) ease;
}
.accordion-panel .panel-inner { padding-bottom: var(--space-5); color: var(--color-text-muted); }

/* ==========================================================================
   Payment page
   ========================================================================== */

.payment-methods { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-6); }
.payment-method-card {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}
.payment-method-card h3 { display: flex; align-items: center; gap: var(--space-2); }
.payment-method-card ul { color: var(--color-text-muted); font-size: var(--fs-sm); }
.bank-details-table { width: 100%; border-collapse: collapse; font-size: var(--fs-sm); }
.bank-details-table th, .bank-details-table td {
  text-align: left; padding: var(--space-2) var(--space-3);
  border-bottom: 1px solid var(--color-border);
}
.bank-details-table th { width: 40%; color: var(--color-text-muted); font-weight: 600; }

.placeholder-note {
  background: #fff7e6;
  border: 1px dashed var(--color-accent-dark);
  color: #6b5410;
  padding: var(--space-3) var(--space-4);
  border-radius: var(--radius-sm);
  font-size: var(--fs-xs);
  font-weight: 700;
}

.status-panel { text-align: center; padding-block: var(--space-9); }
.status-icon { font-size: 3rem; margin-bottom: var(--space-4); }

/* ==========================================================================
   FAQ / chatbot / quote link box
   ========================================================================== */

.info-box {
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-6);
}

/* Contact highlight: makes the phone number and email stand out as the primary way to reach us */
.contact-highlight {
  margin-bottom: var(--space-4);
}
.contact-highlight strong {
  display: block;
  color: var(--color-accent-dark);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--fs-xs);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.2em;
}
.contact-highlight a {
  display: inline-block;
  color: var(--color-primary);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--fs-lg);
  line-height: 1.3;
  text-decoration: none;
  word-break: break-word;
}
.contact-highlight a:hover {
  color: var(--color-accent-dark);
  text-decoration: underline;
}

/* Follow Us: social icons pending confirmation of real accounts */
.coming-soon-badge {
  display: inline-block;
  background: var(--color-accent-light);
  color: var(--color-primary-dark);
  font-family: var(--font-heading);
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.2em 0.65em;
  border-radius: 999px;
  margin-left: var(--space-2);
  vertical-align: middle;
}
.social-links-pending {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  list-style: none;
  margin: var(--space-4) 0 0;
  padding: 0;
}
.social-icon-pending {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-bg);
  border: 1.5px dashed var(--color-border);
  color: var(--color-text-muted);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--fs-sm);
  letter-spacing: -0.02em;
  cursor: default;
  transition: border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.social-icon-pending:hover {
  border-color: var(--color-accent);
  border-style: solid;
  color: var(--color-accent-dark);
  transform: translateY(-2px);
}
.social-links-note {
  margin-top: var(--space-3);
  margin-bottom: 0;
  color: var(--color-text-muted);
  font-size: var(--fs-xs);
  font-style: italic;
}
/* Modifiers for the standalone home page "Follow Us" section (centered, larger, on-brand) */
.social-links-center { justify-content: center; gap: var(--space-4); }
.social-links-note-center { text-align: center; }
.social-icon-section {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(201,162,39,0.12);
  border: 1.5px dashed var(--color-accent);
  color: var(--color-accent-dark);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--fs-sm);
  letter-spacing: -0.02em;
  cursor: default;
  transition: background 0.2s ease, transform 0.2s ease, border-style 0.2s ease;
}
.social-icon-section:hover {
  background: rgba(201,162,39,0.22);
  border-style: solid;
  transform: translateY(-3px);
}

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
  background: var(--color-primary-dark);
  color: rgba(255,255,255,0.75);
  padding-block: var(--space-4) var(--space-2);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: var(--space-3);
  margin-bottom: var(--space-3);
}
.footer-brand { display: flex; align-items: center; gap: var(--space-2); margin-bottom: var(--space-1); }
.footer-brand img { height: 22px; }
.footer-brand span { color: #fff; font-family: var(--font-heading); font-weight: 700; font-size: var(--fs-xs); }
.site-footer p { margin-bottom: 0; font-size: 0.72rem; line-height: 1.35; }
.site-footer h4 { color: #fff; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: var(--space-2); }
.site-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.4rem; min-width: 0; }
.site-footer li { min-width: 0; }
.site-footer a { color: rgba(255,255,255,0.75); text-decoration: none; font-size: var(--fs-xs); line-height: 1.6; }
.site-footer a:hover { color: var(--color-accent-light); }

/* Footer contact block: address, phone, hours and email all shown at the same size for a consistent look */
.footer-contact-text {
  display: inline-block;
  font-size: var(--fs-md);
  line-height: 1.4;
}
.site-footer li:has(> .footer-contact-highlight) { margin-top: 0.35rem; }
.footer-contact-highlight {
  display: inline-block;
  max-width: 100%;
  color: var(--color-accent-light) !important;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--fs-md) !important;
  line-height: 1.4 !important;
  word-break: break-word;
  overflow-wrap: break-word;
}
.footer-contact-highlight:hover { color: #fff !important; text-decoration: underline; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: var(--space-2);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: var(--space-1);
  font-size: 0.68rem;
}

/* ==========================================================================
   Chatbot widget
   ========================================================================== */

.chat-launcher {
  position: fixed;
  bottom: var(--space-5);
  right: var(--space-5);
  z-index: 1000;
  background: var(--color-primary);
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: var(--space-4) var(--space-5);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: var(--fs-sm);
  box-shadow: var(--shadow-lg);
  cursor: pointer;
  display: flex; align-items: center; gap: var(--space-2);
}
.chat-launcher:hover { background: var(--color-primary-light); }

.chat-window {
  position: fixed;
  bottom: calc(var(--space-5) + 64px);
  right: var(--space-5);
  width: 360px;
  max-width: calc(100vw - 2 * var(--space-4));
  height: 520px;
  max-height: calc(100vh - 140px);
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  z-index: 1001;
}
.chat-window[hidden] { display: none; }

.chat-header {
  background: var(--color-primary);
  color: #fff;
  padding: var(--space-4) var(--space-5);
  display: flex; align-items: center; justify-content: space-between;
}
.chat-header strong { font-family: var(--font-heading); }
.chat-header-actions { display: flex; gap: var(--space-2); }
.chat-header button {
  background: rgba(255,255,255,0.14);
  border: none; color: #fff;
  width: 32px; height: 32px; border-radius: 50%;
  cursor: pointer; font-size: var(--fs-sm);
}

.chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: var(--space-4);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  background: var(--color-bg-alt);
}
.chat-message { max-width: 84%; padding: var(--space-3) var(--space-4); border-radius: var(--radius-md); font-size: var(--fs-sm); line-height: 1.45; }
.chat-message.bot { background: #fff; border: 1px solid var(--color-border); align-self: flex-start; border-bottom-left-radius: var(--radius-sm); }
.chat-message.user { background: var(--color-primary); color: #fff; align-self: flex-end; border-bottom-right-radius: var(--radius-sm); }
.chat-message.system { background: transparent; color: var(--color-text-muted); align-self: center; font-size: var(--fs-xs); text-align: center; max-width: 100%; }
.chat-message.error { background: var(--color-error-bg); color: var(--color-error); align-self: flex-start; border: 1px solid rgba(179,38,30,0.25); }

.chat-typing { display: inline-flex; gap: 4px; align-self: flex-start; padding: var(--space-3) var(--space-4); }
.chat-typing span { width: 6px; height: 6px; border-radius: 50%; background: var(--color-text-muted); animation: chat-bounce 1.2s infinite ease-in-out; }
.chat-typing span:nth-child(2) { animation-delay: 0.15s; }
.chat-typing span:nth-child(3) { animation-delay: 0.3s; }
@keyframes chat-bounce { 0%, 80%, 100% { transform: translateY(0); opacity: .5; } 40% { transform: translateY(-4px); opacity: 1; } }

.chat-quick-actions { display: flex; gap: var(--space-2); padding: 0 var(--space-4) var(--space-3); flex-wrap: wrap; background: var(--color-bg-alt); }

.chat-input-row {
  display: flex; gap: var(--space-2);
  padding: var(--space-3);
  border-top: 1px solid var(--color-border);
  background: #fff;
}
.chat-input-row textarea {
  flex: 1; resize: none; border: 1px solid var(--color-border); border-radius: var(--radius-sm);
  padding: var(--space-2) var(--space-3); font: inherit; max-height: 90px;
}
.chat-input-row button {
  background: var(--color-primary); color: #fff; border: none; border-radius: var(--radius-sm);
  width: 44px; cursor: pointer; font-size: var(--fs-md);
}
.chat-input-row button:disabled { opacity: 0.5; cursor: not-allowed; }

.chat-footer-note { font-size: 0.6875rem; color: var(--color-text-muted); text-align: center; padding: var(--space-2) var(--space-4); background: var(--color-bg-alt); }

/* ==========================================================================
   Legal pages
   ========================================================================== */

.legal-content h2 { margin-top: var(--space-7); font-size: var(--fs-lg); }
.legal-content h2:first-child { margin-top: 0; }
.legal-content h3 { margin-top: var(--space-5); font-size: var(--fs-base); color: var(--color-accent-dark); }
.legal-content p, .legal-content li { color: var(--color-text-muted); }
.legal-content ul, .legal-content ol { margin-bottom: var(--space-4); }
.legal-content li { margin-bottom: 0.35em; }
.legal-meta {
  background: var(--color-bg-alt);
  border-left: 4px solid var(--color-accent);
  padding: var(--space-4) var(--space-5);
  margin-bottom: var(--space-7);
  font-size: var(--fs-sm);
}
.placeholder-flag {
  background: #fff7e6;
  color: #6b5410;
  padding: 0.1em 0.5em;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.85em;
}

/* ==========================================================================
   Breadcrumb / page header
   ========================================================================== */

.page-header {
  background: linear-gradient(160deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: #fff;
  padding-block: var(--space-7);
  text-align: center;
}
.page-header h1 { color: #fff; margin-bottom: var(--space-2); }
.page-header p { color: rgba(255,255,255,0.8); }
