/* ==========================================================================
   MASTER TEMPLATE STYLESHEET
   Single file — no preprocessors
   ========================================================================== */

/* ==========================================================================
   SWAP: Brand accent colour — this is the ONLY value that changes per site.
   Line 11. Change --accent to your client's primary brand colour.
   ========================================================================== */
:root {
  --accent: #e63946;
  --text-dark: #1a1a1a;
  --text-muted: #888888;
  --border: #eeeeee;
  --bg-light: #f5f5f5;
  --bg-off: #f9f9f9;
  --bg-dark: #1a1a1a;
  --white: #ffffff;
  --max-width: 1140px;
  --radius: 4px;
}

/* ==========================================================================
   RESET & BASE
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-dark);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  list-style: none;
}

address {
  font-style: normal;
}

/* ==========================================================================
   LAYOUT UTILITIES
   ========================================================================== */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

.text-center {
  text-align: center;
}

/* ==========================================================================
   TYPOGRAPHY
   ========================================================================== */
h1, h2, h3 {
  font-weight: 600;
  line-height: 1.25;
  color: var(--text-dark);
}

h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 1rem;
}

h2 {
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

p {
  margin-bottom: 1rem;
}

p:last-child {
  margin-bottom: 0;
}

/* Eyebrow label */
.eyebrow {
  display: block;
  font-size: 0.75rem;         /* 12px */
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1;
  padding: 14px 28px;
  border-radius: var(--radius);
  cursor: pointer;
  border: 2px solid transparent;
  text-align: center;
  transition: none; /* no animations — performance first */
}

/* Primary: solid accent */
.btn-primary {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}

.btn-primary:hover {
  opacity: 0.9;
}

/* Secondary: outlined on dark backgrounds */
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

.btn-outline-white:hover {
  background: var(--white);
  color: var(--text-dark);
}

/* Text link style */
.link-accent {
  color: var(--accent);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.link-accent:hover {
  opacity: 0.8;
}

/* ==========================================================================
   TOP BAR
   Dark background, accent top border, contact left, social right.
   ========================================================================== */
.top-bar {
  width: 100%;
  background: var(--bg-dark);
  /* SWAP: accent top border — pulls from --accent automatically */
  border-top: 3px solid var(--accent);
}

.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 42px;
}

.top-bar-contact {
  display: flex;
  align-items: center;
  gap: 24px;
}

.top-bar-contact a {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.75);
}

.top-bar-contact a:hover {
  color: var(--white);
}

.top-bar-contact svg {
  flex-shrink: 0;
  color: var(--accent);
}

.top-bar-social {
  display: flex;
  align-items: center;
  gap: 16px;
}

.top-bar-social a {
  display: flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.6);
}

.top-bar-social a:hover {
  color: var(--accent);
}

/* ==========================================================================
   NAVIGATION
   ========================================================================== */

/* Sticky wrapper — wraps .top-bar + .site-nav together in the HTML */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
}

.site-nav {
  width: 100%;
  background: var(--bg-dark);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* SWAP: nav height — increase or decrease this one value */
  height: 90px;
}

/* SWAP: logo text styling — remove if using img */
.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo-text {
  font-size: 1.375rem;
  font-weight: 600;
  color: var(--text-dark);
  letter-spacing: -0.02em;
}

/* Nav menu — desktop: flex row */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 2.25rem;
}

.nav-menu a {
  font-size: 0.9375rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
}

.nav-menu a:hover {
  color: var(--white);
}

/* Hamburger button — hidden on desktop (>767px), floated right on mobile */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 22px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  margin-left: auto;
}

.hamburger-bar {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--white);
}

/* ==========================================================================
   SECTIONS — shared padding
   ========================================================================== */
.section {
  padding: 80px 0;
}

.section-sm {
  padding: 60px 0;
}

/* ==========================================================================
   SECTION: Hero
   ========================================================================== */
.hero {
  background: var(--bg-off);
  /* SWAP: hero vertical padding — increase for a taller hero */
  padding: 120px 0 100px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 60fr 40fr;
  gap: 48px;
  align-items: center;
}

.hero-content .hero-subtext {
  font-size: 1.125rem;
  color: #444;
  margin-bottom: 1.5rem;
}

/* Trust list with checkmarks */
.hero-trust {
  list-style: none;
  margin: 0 0 2rem;
  padding: 0;
}

.hero-trust li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9375rem;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.hero-trust li::before {
  content: "✓";
  color: var(--accent);
  font-weight: 600;
  flex-shrink: 0;
  margin-top: 2px;
}

.hero-cta {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

/* SWAP: widget embed — replace inner content with iframe or form -->
/* To show this widget on mobile, add class "widget-visible" or remove the mobile hide rule below */
.hero-widget {
  background: var(--bg-light);
  border: 1px solid var(--border);
  min-height: 300px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
}

.widget-placeholder {
  font-family: monospace;
  font-size: 0.875rem;
  color: var(--text-muted);
  text-align: center;
  padding: 24px;
}

/* ==========================================================================
   SECTION: Intro Strip
   ========================================================================== */
.intro {
  background: var(--white);
  padding: 80px 0;
}

.intro-inner {
  max-width: 740px;
  margin: 0 auto;
  text-align: center;
}

.intro-inner p {
  font-size: 1.0625rem;
  color: #444;
  margin-bottom: 1.5rem;
}

/* ==========================================================================
   SECTION: Features / Services Cards
   ========================================================================== */
.features {
  background: var(--bg-off);
  padding: 80px 0;
}

.features-header {
  text-align: center;
  margin-bottom: 48px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
}

/* SWAP: icon placeholder — replace this div with <img> or inline SVG -->
.icon-placeholder {
  width: 48px;
  height: 48px;
  background: var(--bg-light);
  border-radius: var(--radius);
  margin-bottom: 20px;
  /* SWAP: add SVG background-image or replace entirely with <img width="48" height="48"> */
}

.feature-card h3 {
  margin-bottom: 0.5rem;
}

.feature-card p {
  font-size: 0.9375rem;
  color: #444;
  margin-bottom: 1rem;
}

/* ==========================================================================
   SECTION: CTA Strip
   ========================================================================== */
.cta-strip {
  /* SWAP: toggle between light, accent, or dark background:
     Use background: var(--bg-light) for light grey
     Use background: var(--accent) for brand colour
     Use background: var(--bg-dark) for near-black */
  background: var(--bg-light);
  padding: 80px 0;
  text-align: center;
}

.cta-strip h2 {
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.cta-strip p {
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto 2rem;
}

/* ==========================================================================
   SECTION: Alternating Image / Text
   ========================================================================== */
.alt-blocks {
  background: var(--white);
  padding: 80px 0;
}

.alt-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 80px;
}

.alt-block:last-child {
  margin-bottom: 0;
}

/* Image right variant — reverses column order */
.alt-block.img-right {
  direction: rtl;
}

.alt-block.img-right > * {
  direction: ltr;
}

/* SWAP: image placeholder — replace this div with <img width="..." height="..." loading="lazy"> -->
.img-placeholder {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: var(--bg-light);
  border-radius: var(--radius);
  /* SWAP: set explicit dimensions in the img tag when replacing:
     <img src="/images/your-image.jpg" alt="Description" width="540" height="405" loading="lazy"> */
}

.alt-block-text h2 {
  margin-bottom: 1rem;
}

.alt-block-text p {
  color: #444;
  margin-bottom: 1.5rem;
}

/* ==========================================================================
   SECTION: FAQ Accordion
   ========================================================================== */
.faq {
  background: var(--bg-off);
  padding: 80px 0;
}

.faq-header {
  text-align: center;
  margin-bottom: 48px;
}

.faq-list {
  max-width: 740px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item:first-child {
  border-top: 1px solid var(--border);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  background: transparent;
  border: none;
  padding: 20px 0;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  cursor: pointer;
  text-align: left;
  gap: 16px;
}

.faq-icon {
  font-size: 1.375rem;
  font-weight: 400;
  color: var(--accent);
  flex-shrink: 0;
  line-height: 1;
  user-select: none;
}

.faq-answer {
  display: none;
  padding: 0 0 20px;
  font-size: 0.9375rem;
  color: #444;
  line-height: 1.7;
}

/* Open state — toggled by main.js adding .open class */
.faq-item.open .faq-answer {
  display: block;
}

.faq-item.open .faq-icon {
  content: "×";
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background: var(--bg-dark);
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  padding: 64px 24px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.footer-contact-col .footer-heading {
  margin-bottom: 20px;
}

.footer-contact p {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 14px;
  font-style: normal;
}

.footer-contact p svg {
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--accent);
}

.footer-logo {
  display: inline-block;
  margin-bottom: 12px;
}

.footer-logo .logo-text {
  color: var(--white);
  font-size: 1.125rem;
}

.footer-tagline {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 0;
}

/* SWAP: social icon row — uncomment in footer.php */
.footer-social {
  display: flex;
  gap: 16px;
  margin-top: 20px;
}

.footer-social a {
  display: flex;
  align-items: center;
  opacity: 0.6;
}

.footer-social a:hover {
  opacity: 1;
}

.footer-heading {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 16px;
}

.footer-nav li {
  margin-bottom: 10px;
}

.footer-nav a {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.75);
}

.footer-nav a:hover {
  color: var(--white);
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.75);
}

.footer-contact a:hover {
  color: var(--white);
}

/* Copyright bar */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 24px;
}

.footer-copy {
  font-size: 0.8125rem;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 0;
}

.footer-copy a {
  color: var(--text-muted);
}

.footer-copy a:hover {
  color: var(--white);
}

/* ==========================================================================
   RESPONSIVE — MOBILE 767px
   Matches Elementor / standard mobile breakpoint.
   Everything collapses here: nav hamburger, grids, section padding.
   ========================================================================== */
@media (max-width: 767px) {

  /* Section padding halved on mobile */
  .section,
  .hero,
  .intro,
  .features,
  .cta-strip,
  .alt-blocks,
  .faq {
    padding: 40px 0;
  }

  /* Hero: stack columns */
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .alt-block {
    margin-bottom: 40px;
  }

  /* Hero CTA stack */
  .hero-cta {
    flex-direction: column;
    align-items: flex-start;
  }

  /* SWAP: widget hidden on mobile by default.
     To show on mobile, delete the rule below or add class "widget-visible" to .hero-widget */
  .hero-widget {
    display: none;
  }

  /* Features: single column */
  .features-grid {
    grid-template-columns: 1fr;
  }

  /* Alternating blocks: stack, image always on top */
  .alt-block,
  .alt-block.img-right {
    grid-template-columns: 1fr;
    direction: ltr;
    gap: 32px;
  }

  /* Footer: single column */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 40px 24px;
  }

  /* ── NAV: hamburger menu ────────────────────────────────────────────── */

  /* Hide top bar contact text on mobile — too cramped */
  .top-bar-contact a span,
  .top-bar-contact {
    display: none;
  }

  /* Keep top bar visible but social-icons only, centred */
  .top-bar-inner {
    justify-content: center;
  }

  /* Show hamburger button, floated right via margin-left: auto on the element */
  .nav-hamburger {
    display: flex;
  }

  /* Hide nav links until toggled */
  .nav-menu {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    position: absolute;
    top: 90px; /* matches .nav-inner height */
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 8px 24px 16px;
    z-index: 99;
  }

  .nav-menu.is-open {
    display: flex;
  }

  .nav-menu li {
    width: 100%;
  }

  .nav-menu a {
    display: block;
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
    font-size: 1rem;
  }

  .nav-menu li:last-child a {
    border-bottom: none;
  }

}

/* Nav position context for mobile dropdown */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
}

/* ============================================================
   FEATURE CARD IMAGE
   Full-width image below the heading, rounded corners,
   consistent aspect ratio across all three cards.
   ============================================================ */
.feature-card-img {
  display: block;
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 6px;
  margin: 12px 0 16px;
}

/* ============================================================
   ALT BLOCK — REAL IMAGE
   Replaces .img-placeholder. Same sizing, covers the slot,
   rounded corners to match card style.
   ============================================================ */
.alt-block-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}

/* On mobile the alt-block stacks; give the image a sensible height */
@media (max-width: 767px) {
  .alt-block-img {
    height: 260px;
    width: 100%;
  }
}

/* ============================================================
   REVIEWS SLIDER
   Dark section, 3-up on desktop, 2 on tablet, 1 on mobile.
   Vanilla JS drives .reviews-track translateX().
   ============================================================ */
.reviews-section {
  background: var(--bg-dark);
  padding: 80px 0;
}

.reviews-header {
  text-align: center;
  margin-bottom: 48px;
}

.reviews-header h2 {
  color: #fff;
  margin-bottom: 16px;
}

.reviews-header .eyebrow {
  color: var(--accent);
}

.reviews-google-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px;
  padding: 6px 16px 6px 10px;
  margin-top: 8px;
}

.reviews-google-label {
  color: #e0eeff;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.3px;
}

.reviews-stars-badge {
  color: #fbbc05;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
}

.reviews-track-outer {
  overflow: hidden;
}

.reviews-track {
  display: flex;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.review-slide {
  flex: 0 0 33.333%;
  padding: 0 12px;
  box-sizing: border-box;
}

.review-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 28px 24px 24px;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.review-stars {
  color: #fbbc05;
  font-size: 18px;
  letter-spacing: 2px;
}

.review-text {
  margin: 0;
  flex: 1;
}

.review-text p {
  color: #c8d8f0;
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0;
  font-style: italic;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.review-name {
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
  margin: 0;
}

.review-location {
  color: #7a9abd;
  font-size: 0.8rem;
  margin: 2px 0 0;
}

.reviews-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 36px;
}

.reviews-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.2);
  background: transparent;
  color: #fff;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s, background 0.2s;
}

.reviews-btn:hover {
  border-color: var(--accent);
  background: var(--accent);
}

.reviews-btn:disabled {
  opacity: 0.3;
  cursor: default;
  pointer-events: none;
}

.reviews-dots {
  display: flex;
  gap: 8px;
}

.reviews-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s, transform 0.2s;
}

.reviews-dot.active {
  background: var(--accent);
  transform: scale(1.3);
}

@media (max-width: 767px) {
  .review-slide {
    flex: 0 0 100%;
    padding: 0;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .review-slide {
    flex: 0 0 50%;
  }
}

/* ==========================================================================
   SERVICE PAGE — Page Hero / Breadcrumb Banner
   Light gradient background. SWAP gradient colours per site.
   ========================================================================== */
.page-hero {
  min-height: 420px;
  display: flex;
  align-items: center;
  /* SWAP: update gradient colours per site */
  background: linear-gradient(135deg, #f0f4ff 0%, #e8f0fe 50%, #f5f0ff 100%);
  border-bottom: 1px solid var(--border);
  text-align: center;
  padding: 60px 0;
}

.page-hero h1 {
  color: var(--text-dark);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 1rem;
}

.page-hero-sub {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 580px;
  margin: 0 auto;
}

/* Breadcrumb nav */
.breadcrumb {
  margin-bottom: 1.5rem;
}

.breadcrumb ol {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0 6px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.breadcrumb li {
  display: flex;
  align-items: center;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.breadcrumb li + li::before {
  content: '/';
  margin-right: 6px;
  color: var(--border);
}

.breadcrumb a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.breadcrumb a:hover {
  color: var(--accent);
}

.breadcrumb [aria-current="page"] {
  color: var(--accent);
  font-weight: 600;
}

/* ==========================================================================
   SERVICE PAGE — Two-column layout: content + sidebar
   ========================================================================== */
.service-layout {
  background: var(--bg-off);
}

.service-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 40px;
  align-items: start;
}

/* ==========================================================================
   SERVICE PAGE — Left: Main content
   ========================================================================== */
.service-content {
  background: var(--white);
  border-radius: 8px;
  padding: 40px;
  border: 1px solid var(--border);
}

.service-lead-img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 2rem;
}

.service-content h2 {
  color: var(--text-dark);
  font-size: 1.4rem;
  margin: 2rem 0 0.75rem;
}

.service-content h2:first-of-type {
  margin-top: 0;
}

.service-content p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1rem;
}

/* Alternating image + text block */
.service-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
  margin: 2rem 0;
  padding: 2rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.service-block-img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 6px;
}

.service-block-text h2 {
  margin-top: 0;
}

/* Checklist */
.service-checklist {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-checklist li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-dark);
  font-size: 0.95rem;
}

.service-checklist li::before {
  content: '';
  width: 18px;
  height: 18px;
  min-width: 18px;
  border-radius: 50%;
  background: var(--accent);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

/* Inline CTA block */
.service-cta-inline {
  background: var(--bg-light);
  border-left: 4px solid var(--accent);
  border-radius: 0 6px 6px 0;
  padding: 24px;
  margin: 2rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.service-cta-inline p {
  margin: 0;
  font-weight: 600;
  color: var(--text-dark);
  flex: 1;
  min-width: 200px;
}

/* ==========================================================================
   SERVICE PAGE — Right: Sidebar
   ========================================================================== */
.service-sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: sticky;
  top: 100px; /* clears the sticky nav height */
}

.sidebar-widget {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 28px 24px;
}

.sidebar-heading {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  margin: 0 0 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--accent);
  display: inline-block;
}

/* Contact widget */
.sidebar-contact {
  background: var(--bg-dark);
  border-color: var(--bg-dark);
  text-align: center;
}

.sidebar-phone {
  margin: 0 0 4px;
}

.sidebar-phone a {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
}

.sidebar-phone a:hover {
  color: var(--accent);
}

.sidebar-emergency {
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 600;
  margin: 0 0 1.25rem;
  letter-spacing: 0.3px;
}

.sidebar-btn {
  width: 100%;
  display: block;
  text-align: center;
}

/* Services list widget */
.sidebar-services {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
}

.sidebar-services li {
  border-bottom: 1px solid var(--border);
}

.sidebar-services li:last-child {
  border-bottom: none;
}

.sidebar-services a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  color: var(--text-dark);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s, padding-left 0.2s;
}

.sidebar-services a::after {
  content: '→';
  color: var(--accent);
  font-size: 0.85rem;
}

.sidebar-services a:hover {
  color: var(--accent);
  padding-left: 4px;
}

/* Contact details widget */
.sidebar-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.sidebar-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.sidebar-contact-list svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--accent);
}

.sidebar-contact-list a {
  color: var(--text-dark);
  text-decoration: none;
}

.sidebar-contact-list a:hover {
  color: var(--accent);
}

/* ==========================================================================
   SERVICE PAGE — Responsive
   ========================================================================== */
@media (max-width: 1023px) {
  .service-grid {
    grid-template-columns: 1fr;
  }

  .service-sidebar {
    position: static;
  }
}

@media (max-width: 767px) {
  .page-hero {
    min-height: 280px;
    padding: 40px 0;
  }

  .service-content {
    padding: 24px 20px;
  }

  .service-block {
    grid-template-columns: 1fr;
  }

  .service-block-img {
    height: 220px;
  }

  .service-cta-inline {
    flex-direction: column;
    align-items: flex-start;
  }

  .service-cta-inline .btn {
    width: 100%;
    text-align: center;
  }
}

/* ==========================================================================
   MMA DUBLIN — CUSTOM OVERRIDES & NEW COMPONENTS
   ========================================================================== */

/* Brand fonts */
body {
  font-family: 'Barlow', sans-serif;
}

h1, h2, h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.logo-text,
.nav-logo .logo-text,
.footer-logo .logo-text {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  color: var(--white) !important;
}

.logo-accent {
  color: var(--accent) !important;
}

.nav-cta {
  background: var(--accent);
  color: var(--white) !important;
  padding: 8px 18px;
  border-radius: var(--radius);
  font-weight: 600;
  transition: background 0.2s;
}

.nav-cta:hover {
  background: #c0202d;
}

/* ==========================================================================
   HERO — Full bleed image bg
   ========================================================================== */
.hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 100px 0 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero-overlay {
  display: none;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 680px;
}

.hero-eyebrow {
  color: var(--accent);
  margin-bottom: 16px;
}

.hero h1,
.hero-content h1 {
  color: var(--white) !important;
  font-size: clamp(2.4rem, 6vw, 3.6rem);
  line-height: 1.1;
  margin-bottom: 1.25rem;
}

.hero-subtext,
.hero-content .hero-subtext {
  color: var(--white) !important;
  font-size: 1.1rem;
  margin-bottom: 1.75rem;
  max-width: 560px;
}

.hero-trust {
  margin-bottom: 2rem;
}

.hero-trust li {
  color: var(--white) !important;
  padding-left: 1.25rem;
  position: relative;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.hero-trust li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
}

.hero-cta {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.link-accent {
  color: var(--accent);
  font-weight: 600;
  font-size: 0.9rem;
}

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

/* ==========================================================================
   INTRO SECTION
   ========================================================================== */
.intro-inner {
  max-width: 740px;
  margin: 0 auto;
  text-align: center;
}

.intro-inner .eyebrow {
  margin-bottom: 12px;
}

.intro-inner h2 {
  margin-bottom: 1.25rem;
}

/* ==========================================================================
   FEATURES — training disciplines
   ========================================================================== */
.features-sub {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  color: var(--text-muted);
}

.feature-icon {
  margin-bottom: 16px;
  color: var(--accent);
}

/* ==========================================================================
   PHOTO STRIP
   ========================================================================== */
.photo-strip {
  padding: 0;
  overflow: hidden;
}

.photo-strip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.photo-strip-grid img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.photo-strip-grid img:hover {
  transform: scale(1.03);
}

/* ==========================================================================
   PRICING
   ========================================================================== */
.pricing-section {
  background: var(--bg-light);
}

.pricing-header {
  text-align: center;
  margin-bottom: 3rem;
}

.pricing-header h2 {
  margin-bottom: 0.75rem;
}

.pricing-sub {
  color: var(--text-muted);
  max-width: 580px;
  margin: 0 auto;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 860px;
  margin: 0 auto 2rem;
}

.pricing-card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: 8px;
  padding: 40px 36px;
  position: relative;
}

.pricing-card--featured {
  border-color: var(--accent);
  box-shadow: 0 8px 40px rgba(230,57,70,0.12);
}

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 4px 14px;
  border-radius: 20px;
}

.pricing-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.pricing-amount {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 4rem;
  line-height: 1;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.pricing-per {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.pricing-features {
  margin-bottom: 28px;
}

.pricing-features li {
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
  padding-left: 1.1rem;
  position: relative;
}

.pricing-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
  font-size: 0.8rem;
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-note {
  text-align: center;
  max-width: 580px;
  margin: 0 auto;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ==========================================================================
   PAGE HERO (inner pages — privacy etc)
   ========================================================================== */
.page-hero {
  background: var(--bg-dark);
  color: var(--white);
  padding: 60px 0 48px;
  border-bottom: 3px solid var(--accent);
}

.page-hero .eyebrow {
  color: var(--accent);
  margin-bottom: 12px;
}

.page-hero h1 {
  color: var(--white);
  margin-bottom: 8px;
}

.page-hero-sub {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  margin: 0;
}

/* ==========================================================================
   PROSE SECTION (privacy, legal pages)
   ========================================================================== */
.prose-inner {
  max-width: 740px;
  margin: 0 auto;
}

.prose-inner h2 {
  font-size: 1.4rem;
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.prose-inner h2:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.prose-inner ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.prose-inner ul li {
  margin-bottom: 0.4rem;
  color: var(--text-dark);
}

.prose-inner a {
  color: var(--accent);
  text-decoration: underline;
}

/* ==========================================================================
   RESPONSIVE — MMA additions
   ========================================================================== */
@media (max-width: 767px) {
  .hero {
    min-height: 500px;
    padding: 80px 0 60px;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .photo-strip-grid {
    grid-template-columns: 1fr;
  }

  .photo-strip-grid img {
    height: 200px;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .pricing-amount {
    font-size: 3rem;
  }
}
