:root {
  --bg: #121416;
  --bg-deep: #0d0f10;
  --surface: #1b1f20;
  --surface-soft: #252a2b;
  --text: #f4f5f2;
  --muted: #b3b8b6;
  --accent: #2d7a36;
  --accent-dark: #1e5224;
  --accent-light: #83c98a;
  --logo-accent: #3b9a48;
  --pin: #388e3c;
  --line: rgba(210, 218, 214, 0.16);
  --shadow: 0 12px 40px rgba(0, 0, 0, 0.34);
  --radius: 12px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 88px; }
body {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top, rgba(59, 154, 72, 0.12), transparent 40rem), var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.container { width: min(1120px, calc(100% - 40px)); margin-inline: auto; }
.section-pad { padding: 104px 0; }
.narrow { max-width: 850px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(18, 20, 22, 0.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}
.navbar { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 12px; font-weight: 900; letter-spacing: -0.03em; line-height: 1; color: var(--text); }
.site-logo { display: block; width: auto; max-height: 76px; object-fit: contain; }
.mobile-trust, .mobile-trust-narrow { display: none; }
.footer-brand .site-logo { max-height: 64px; }
.nav-menu { display: flex; align-items: center; gap: 26px; color: var(--muted); font-weight: 600; }
.nav-menu a:hover { color: var(--accent); }
.menu-toggle { display: none; width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 12px; background: var(--surface-soft); }
.menu-toggle span { display: block; width: 20px; height: 2px; margin: 5px auto; background: var(--text); transition: transform 0.2s ease, opacity 0.2s ease; }
.menu-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.sticky-booking-bar {
  position: fixed;
  top: 78px;
  left: 0;
  right: 0;
  z-index: 999;
  background: linear-gradient(135deg, rgba(45, 122, 54, 0.95), rgba(30, 82, 36, 0.95));
  backdrop-filter: blur(12px);
  padding: 12px 0;
  border-bottom: 1px solid rgba(59, 154, 72, 0.2);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.sticky-bar-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.sticky-bar-content span {
  color: #ffffff;
}

.btn { display: inline-flex; align-items: center; justify-content: center; min-height: 52px; padding: 0 24px; border-radius: var(--radius); font-weight: 700; border: 1px solid transparent; transition: all 0.2s ease; cursor: pointer; }
.btn:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1); }
.btn-primary { background: var(--accent); color: #ffffff; box-shadow: 0 10px 25px rgba(59, 154, 72, 0.2); }
.btn-primary:hover { background: var(--accent-dark); }
.btn-secondary, .btn-card { background: var(--surface); border: 1px solid var(--line); color: var(--text); }
.btn-secondary:hover { background: var(--bg-deep); }
.btn-small { min-height: 42px; padding: 0 18px; }
.btn-card { width: 100%; margin-top: auto; }

.hero { position: relative; min-height: clamp(560px, calc(100svh - 78px - 92px), 760px); margin-bottom: 0; overflow: hidden; }
.hero-grid { position: relative; display: flex; align-items: center; width: 100%; max-width: none; min-height: inherit; margin: 0; }
.hero-grid::after { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(90deg, rgba(13, 15, 16, 0.04) 24%, rgba(13, 15, 16, 0.18) 42%, rgba(13, 15, 16, 0.88) 76%, rgba(13, 15, 16, 0.97) 100%); pointer-events: none; }
.hero-copy { position: relative; z-index: 2; width: 100%; max-width: none; margin: 0; padding: 64px 48% 64px clamp(32px, 6vw, 112px); text-align: left; }

.hero-contact { display: flex; align-items: center; gap: 12px; font-size: 0.9rem; color: var(--muted); font-weight: 500; }
.hero-contact a { color: var(--muted); transition: color 0.2s ease; }
.hero-contact a:hover { color: var(--text); }
.hero-contact .sep { opacity: 0.3; }

h1 { font-size: clamp(3.2rem, 8vw, 5.2rem); font-weight: 800; letter-spacing: -0.04em; line-height: 1; margin-bottom: 24px; color: var(--text); }
.hero-eyebrow { margin-bottom: 16px; color: var(--accent-light); font-size: 0.78rem; font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase; }
.hero h1 { max-width: 680px; margin-bottom: 24px; font-size: clamp(2.8rem, 5vw, 5rem); line-height: 0.98; text-shadow: 0 3px 24px rgba(0, 0, 0, 0.3); }
.hero-text { max-width: 580px; margin: 0 0 12px; color: var(--text); font-size: 1.05rem; line-height: 1.55; text-shadow: 0 2px 12px rgba(0, 0, 0, 0.55); }
.hero-text-secondary { margin-bottom: 26px; color: var(--muted); font-size: 0.94rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 26px; }
.hero-actions .btn { min-width: 146px; }
.hero-actions .btn-secondary { background: rgba(18, 20, 22, 0.38); border-color: rgba(244, 245, 242, 0.3); backdrop-filter: blur(8px); }
.hero-rating { display: inline-flex; align-items: center; gap: 9px; margin-bottom: 18px; color: var(--text); font-size: 0.9rem; font-weight: 700; }
.hero-rating span { color: #f3c969; letter-spacing: 0.08em; }
.hero-rating:hover { color: var(--accent-light); }
.hero-trust-points { display: flex; flex-wrap: wrap; gap: 8px 18px; color: var(--muted); font-size: 0.78rem; font-weight: 600; }
.hero-trust-points li::first-letter { color: var(--accent-light); }

.hero-card { position: absolute; inset: 0; z-index: 0; width: 100%; height: 100%; margin: 0; border-radius: 0; overflow: hidden; }
.hero-card img { width: 100%; height: 100%; border-radius: 0; object-fit: cover; object-position: center 55%; display: block; }

.floating-stat { position: absolute; border: 1px solid var(--line); border-radius: 20px; padding: 16px 18px; background: rgba(27, 31, 32, 0.94); backdrop-filter: blur(12px); box-shadow: var(--shadow); z-index: 2; }
.floating-stat strong { display: block; color: var(--accent); font-size: 1.65rem; line-height: 1; }
.floating-stat span { color: var(--muted); font-size: 0.82rem; font-weight: 700; }
.top-stat { bottom: 24px; left: 16px; }
.bottom-stat { right: 16px; bottom: 24px; }

.trust-bar {
  padding: 28px 0;
  margin-top: 0;
  background: linear-gradient(135deg, var(--surface-soft), #1d2820);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}
.trust-bar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.trust-point {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-width: 0;
  padding: 6px 24px;
  border-right: 1px solid var(--line);
}
.trust-point:last-child { border-right: 0; }
.trust-point-icon {
  display: grid;
  flex: 0 0 34px;
  place-items: center;
  width: 34px;
  height: 34px;
  color: var(--accent);
}
.trust-point-icon svg { width: 24px; height: 24px; fill: currentColor; }
.trust-point h2 { font-size: 0.95rem; line-height: 1.25; font-weight: 700; }
.trust-point p { margin-top: 3px; color: var(--muted); font-size: 0.78rem; line-height: 1.35; }
.trust-point-link { transition: color 0.2s ease; }
.trust-point-link:hover h2 { color: var(--accent); }

.section-heading { max-width: 740px; margin: 0 auto 46px; text-align: center; }
.section-heading.align-left { text-align: left; margin: 0; }
.pricing-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }

.price-card, .equipment-card, .faq-item, .review-card, .video-card { 
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius); 
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.price-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: rgba(45, 122, 54, 0.45); }
.price-card { position: relative; display: flex; flex-direction: column; min-height: 100%; padding: 28px; }
.price-card.featured { border-color: var(--accent); background: linear-gradient(180deg, var(--surface), #1d2820); transform: translateY(-12px); }
.popular-badge { align-self: flex-start; margin-bottom: 16px; padding: 6px 11px; border-radius: 999px; background: rgba(59, 154, 72, 0.1); color: var(--accent); font-size: 0.78rem; font-weight: 800; }
.card-top { min-height: 98px; }
.price { color: var(--accent); font-weight: 800; font-size: 2rem; margin-top: 12px; }
.highlight { color: var(--text); font-weight: 800; }
ul { list-style: none; }
.price-card ul { display: grid; gap: 10px; margin: 24px 0 26px; }
.price-card li { position: relative; padding-left: 25px; color: var(--muted); }
.price-card li::before { content: "✓"; position: absolute; left: 0; color: var(--accent); font-weight: 900; }
.services-directory { background: linear-gradient(180deg, var(--bg), var(--bg-deep)); }
.service-category-nav { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin: 0 auto 70px; max-width: 980px; }
.service-category-nav a { display: flex; align-items: center; gap: 10px; padding: 14px 16px; border: 1px solid var(--line); border-radius: 999px; background: rgba(27, 31, 32, 0.72); color: var(--muted); font-size: 0.85rem; font-weight: 800; transition: border-color 0.2s ease, color 0.2s ease, transform 0.2s ease; }
.service-category-nav a:hover { transform: translateY(-2px); border-color: var(--accent); color: var(--text); }
.service-nav-icon { display: grid; flex: 0 0 25px; place-items: center; width: 25px; height: 25px; border-radius: 50%; background: rgba(59, 154, 72, 0.14); color: var(--accent-light); }
.service-category { margin-top: 78px; scroll-margin-top: 110px; }
.service-category:first-of-type { margin-top: 0; }
.category-heading { display: flex; align-items: flex-start; gap: 18px; max-width: 780px; margin-bottom: 28px; }
.category-heading h2 { margin: 3px 0 8px; font-size: clamp(1.7rem, 3vw, 2.4rem); letter-spacing: -0.035em; line-height: 1.1; }
.category-heading p:not(.eyebrow) { color: var(--muted); }
.category-icon { display: grid; flex: 0 0 62px; place-items: center; width: 62px; height: 62px; border: 1px solid rgba(131, 201, 138, 0.25); border-radius: 20px; background: linear-gradient(145deg, rgba(59, 154, 72, 0.25), rgba(27, 31, 32, 0.85)); color: var(--accent-light); box-shadow: 0 10px 25px rgba(0, 0, 0, 0.18); }
.category-icon svg { width: 31px; height: 31px; fill: currentColor; }
.service-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.service-card { min-height: 100%; padding: 25px; }
.service-card-icon { display: grid; place-items: center; width: 38px; height: 38px; margin-bottom: 16px; border-radius: 12px; background: rgba(59, 154, 72, 0.13); color: var(--accent-light); font-size: 1.15rem; font-weight: 800; }
.service-card .card-top { min-height: 88px; }
.service-card h3 { font-size: 1.2rem; line-height: 1.2; }
.service-card > p:not(.price):not(.service-card-meta) { color: var(--muted); font-size: 0.91rem; line-height: 1.52; }
.service-card ul { display: grid; gap: 8px; margin: 20px 0 22px; }
.service-card li { position: relative; padding-left: 20px; color: var(--muted); font-size: 0.84rem; line-height: 1.4; }
.service-card li::before { content: "✓"; position: absolute; left: 0; color: var(--accent-light); font-weight: 900; }
.service-card-meta { margin-top: auto; padding-top: 18px; color: var(--accent-light); font-size: 0.79rem; font-weight: 700; }
.service-card-protection { display: grid; grid-template-columns: 0.4fr 1fr; gap: 28px; padding: 34px; background: linear-gradient(135deg, #1d2820, var(--surface)); }
.service-card-protection .service-card-icon { width: 86px; height: 86px; margin: 0; border-radius: 24px; font-size: 2.5rem; }
.service-card-protection h3 { font-size: clamp(1.5rem, 3vw, 2.2rem); }
.service-card-protection .price { font-size: 2.2rem; }
.protection-benefits ul { grid-template-columns: repeat(2, 1fr); margin-bottom: 12px; }
.service-card-protection .btn { margin-top: 20px; }
.service-directory-note { display: flex; align-items: center; justify-content: space-between; gap: 24px; margin-top: 34px; padding: 26px 30px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); }
.service-directory-note p { margin: 0; color: var(--muted); }

.equipment { background: var(--bg-deep); }
.equipment-grid { display: grid; grid-template-columns: 0.82fr 1.18fr; gap: 38px; align-items: start; }
.equipment-cards { display: grid; gap: 18px; }
.equipment-card { padding: 26px; display: grid; grid-template-columns: auto 1fr; gap: 8px 18px; }
.equipment-card .icon { grid-row: span 2; display: grid; place-items: center; width: 54px; height: 54px; border-radius: 18px; background: #1d2820; color: var(--accent); }

.video-card { position: relative; overflow: hidden; min-height: 430px; border: none; }
.video-card img { width: 100%; height: 100%; object-fit: cover; opacity: 0.85; transition: transform 0.35s ease, opacity 0.35s ease; }
.video-card:hover img { transform: scale(1.04); opacity: 1; }
.video-card div { position: absolute; inset: auto 18px 18px; padding: 18px; border-radius: 20px; background: rgba(27, 31, 32, 0.94); backdrop-filter: blur(12px); box-shadow: var(--shadow); }
.video-card span { display: inline-grid; place-items: center; width: 40px; height: 40px; border-radius: 50%; background: var(--accent); color: #ffffff; font-weight: 900; margin-bottom: 14px; }
.video-card p { color: var(--muted); }

.accordion { display: grid; gap: 14px; }
.faq-item { overflow: hidden; }
.faq-question { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 22px 24px; border: 0; background: transparent; color: var(--text); font: inherit; font-weight: 800; text-align: left; cursor: pointer; }
.faq-question span { color: var(--accent); font-size: 1.6rem; transition: transform 0.2s ease; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.25s ease; }
.faq-answer p { padding: 0 24px 22px; color: var(--muted); }
.faq-item.open .faq-question span { transform: rotate(45deg); }

.cta-band { padding-top: 30px; }
.cta-card { 
  display: flex; 
  justify-content: space-between; 
  align-items: center; 
  gap: 28px; 
  padding: 48px; 
  background: linear-gradient(135deg, var(--accent), var(--accent-dark)); 
  color: #ffffff;
  border-radius: 24px;
}
.cta-card h2 { color: #ffffff; }
.site-footer { padding: 80px 0 30px; border-top: 1px solid var(--line); background: var(--bg-deep); }
.footer-grid { display: grid; grid-template-columns: 1.2fr 0.8fr 1fr 0.7fr; gap: 32px; }
.footer-brand { margin-bottom: 16px; }
.site-footer h3 { margin-bottom: 14px; color: var(--text); }
.site-footer ul { display: grid; gap: 8px; color: var(--muted); }
.site-footer a:hover { color: var(--accent); }
.footer-bottom { display: flex; justify-content: space-between; gap: 18px; margin-top: 50px; padding-top: 30px; border-top: 1px solid var(--line); color: var(--muted); }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 980px) {
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .equipment-grid, .footer-grid { grid-template-columns: 1fr; }
  .hero-copy { padding-right: 34%; }
}

.service-page { background: var(--bg); }
.service-page-hero { padding: 86px 0 72px; }
.service-page-hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; align-items: center; gap: 64px; }
.service-page-hero-copy { max-width: 640px; }
.service-page-hero h1 { font-size: clamp(2.8rem, 6vw, 5rem); }
.service-page-hero-copy > p:not(.eyebrow) { max-width: 590px; color: var(--muted); font-size: 1.1rem; }
.service-page-hero-image { min-height: 420px; overflow: hidden; border: 1px solid var(--line); border-radius: 24px; box-shadow: var(--shadow); }
.service-page-hero-image img { width: 100%; height: 100%; min-height: 420px; object-fit: cover; }
.service-page-intro-links { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.service-page-intro-links a { color: var(--accent-light); font-weight: 700; }
.service-page-section-heading { max-width: 700px; margin-bottom: 36px; }
.service-page-section-heading h2 { font-size: clamp(2rem, 4vw, 3.4rem); letter-spacing: -0.04em; }
.service-page-section-heading p:last-child { color: var(--muted); }
.service-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.service-card { display: flex; flex-direction: column; min-height: 270px; padding: 30px; border: 1px solid var(--line); border-radius: 18px; background: linear-gradient(145deg, var(--surface), rgba(37, 42, 43, 0.52)); }
.service-card h3 { margin-bottom: 12px; font-size: 1.45rem; }
.service-card p { color: var(--muted); }
.service-card .service-card-meta { margin-top: 18px; color: var(--accent-light); font-size: 0.86rem; font-weight: 700; }
.service-card .btn { margin-top: auto; align-self: flex-start; }
.service-card-wide { grid-column: 1 / -1; }
.service-page-split { display: grid; grid-template-columns: 0.9fr 1.1fr; align-items: center; gap: 56px; }
.service-page-split.reverse { grid-template-columns: 1.1fr 0.9fr; }
.service-page-split-image { overflow: hidden; border-radius: 20px; border: 1px solid var(--line); }
.service-page-split-image img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.service-page-split-copy h2 { margin-bottom: 18px; font-size: clamp(2rem, 4vw, 3.2rem); letter-spacing: -0.04em; }
.service-page-split-copy p { margin-bottom: 16px; color: var(--muted); }
.service-page-split-copy ul { display: grid; gap: 10px; margin: 22px 0 28px; color: var(--muted); }
.service-page-split-copy li::before { content: "✓"; margin-right: 10px; color: var(--accent-light); font-weight: 800; }
.service-note { margin-top: 28px; padding: 20px 22px; border-left: 3px solid var(--accent); background: rgba(45, 122, 54, 0.1); color: var(--muted); }
.service-note strong { color: var(--text); }
.service-link-row { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 22px; color: var(--accent-light); font-weight: 700; }
.service-programme { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin: 34px 0; }
.programme-option { padding: 26px; border: 1px solid var(--line); border-radius: 16px; background: var(--surface); }
.programme-option strong { display: block; color: var(--text); font-size: 1.25rem; }
.programme-option span { display: block; margin-top: 7px; color: var(--muted); font-size: 0.92rem; }
.service-page .accordion { max-width: 850px; }
.service-page-cta { padding-top: 20px; }
.service-guide-links { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin: 34px 0; }
.service-guide-links a { display: flex; flex-direction: column; gap: 7px; min-height: 116px; padding: 20px; border: 1px solid var(--line); border-radius: 14px; background: var(--surface); transition: transform 0.2s ease, border-color 0.2s ease; }
.service-guide-links a:hover { transform: translateY(-3px); border-color: var(--accent); }
.service-guide-links strong { font-size: 0.95rem; }
.service-guide-links span { margin-top: auto; color: var(--accent-light); font-size: 0.78rem; font-weight: 700; }

@media (max-width: 760px) {
  .hero-contact { flex-direction: row; flex-wrap: wrap; justify-content: center; }
  .hero-contact .sep { display: none; }
  .hero-contact a { padding: 4px 8px; background: rgba(255, 255, 255, 0.06); border-radius: 6px; }
  .hero { min-height: 700px; }
  .hero-grid::after { background: linear-gradient(180deg, rgba(13, 15, 16, 0.08) 12%, rgba(13, 15, 16, 0.38) 38%, rgba(13, 15, 16, 0.97) 76%); }
  .hero-copy { align-self: flex-end; width: 100%; margin: 0; padding: 48px 14px 42px; }
  .hero h1 { font-size: clamp(2.55rem, 11vw, 4rem); line-height: 1; margin-bottom: 20px; }
  .hero-text { font-size: 1rem; }
  .hero-text-secondary { margin-bottom: 22px; font-size: 0.9rem; }
  .hero-actions { margin-bottom: 22px; }
  .hero-actions .btn { flex: 1 1 0; width: auto; min-width: 0; padding: 0 14px; }
  .hero-trust-points { gap: 7px 14px; font-size: 0.74rem; }
  .container { width: min(100% - 28px, 1120px); }
  .section-pad { padding: 74px 0; }
  .navbar { min-height: 64px; gap: 8px; }
  .brand, .menu-toggle { flex: 0 0 auto; }
  .site-logo { max-height: 60px; }
  .mobile-trust {
    display: block;
    min-width: 0;
    flex: 1 1 auto;
    overflow: hidden;
    color: var(--muted);
    font-size: clamp(0.5rem, 2.3vw, 0.68rem);
    font-weight: 600;
    line-height: 1.2;
    text-align: center;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .mobile-trust-wide { display: inline; }
  .menu-toggle { display: block; }
  .nav-menu { position: fixed; inset: 64px 14px auto; display: grid; gap: 8px; padding: 16px; border: 1px solid var(--line); border-radius: 22px; background: var(--surface); transform: translateY(-18px); opacity: 0; pointer-events: none; box-shadow: var(--shadow); }
  .nav-menu.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav-menu a { padding: 12px; }
  .cta-card, .footer-bottom { align-items: stretch; flex-direction: column; }
  .btn { width: 100%; }
  .pricing-grid { grid-template-columns: 1fr; }
  .price-card.featured { transform: none; }
  .hero-card img { object-position: 62% center; }
  .floating-stat { position: absolute; margin-top: 0; padding: 10px 14px; }
  .floating-stat strong { font-size: 1.25rem; }
  .floating-stat span { font-size: 0.75rem; }
  .top-stat { bottom: 16px; left: 16px; }
  .bottom-stat { right: 16px; bottom: 16px; left: auto; }
  .trust-bar { padding: 20px 0; }
  .trust-bar-grid { grid-template-columns: repeat(2, 1fr); row-gap: 14px; }
  .trust-point { justify-content: flex-start; gap: 8px; padding: 4px 8px; }
  .trust-point-icon { flex-basis: 30px; width: 30px; height: 30px; }
  .trust-point-icon svg { width: 21px; height: 21px; }
  .trust-point h2 { font-size: 0.85rem; }
  .trust-point p { font-size: 0.72rem; }
  .trust-point:nth-child(2) { border-right: 0; }
  .trust-point:nth-child(3), .trust-point:nth-child(4) { border-top: 1px solid var(--line); padding-top: 14px; }
  .sticky-bar-content { flex-direction: column; gap: 12px; }
  .sticky-bar-content span { font-size: 13px; }
  .service-directory-note { align-items: stretch; flex-direction: column; }
  .service-page-hero { padding: 58px 0 44px; }
  .service-page-hero-grid, .service-page-split, .service-page-split.reverse { grid-template-columns: 1fr; gap: 30px; }
  .service-page-hero-image, .service-page-hero-image img { min-height: 270px; }
  .service-cards { grid-template-columns: 1fr; }
  .service-card-wide { grid-column: auto; }
  .service-card { min-height: 0; padding: 24px; }
  .service-card .btn { width: 100%; margin-top: 24px; }
  .service-programme { grid-template-columns: 1fr; }
  .service-page-split-image { order: 0; }
  .service-guide-links { grid-template-columns: 1fr; }
}

@media (max-width: 360px) {
  .mobile-trust-wide { display: none; }
  .mobile-trust-narrow { display: inline; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}

.header-social, .footer-social { display: flex; align-items: center; gap: 8px; }
.social-link { display: inline-grid; place-items: center; width: 38px; height: 38px; border: 1px solid var(--line); border-radius: 50%; background: var(--surface); color: var(--text); transition: all 0.2s ease; }
.social-link:hover { transform: translateY(-2px); border-color: var(--accent); background: #1d2820; color: var(--accent); }
.reviews { background: radial-gradient(circle at top right, rgba(59, 154, 72, 0.05), transparent 28rem); }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.review-card { padding: 28px; border-top: 2px solid var(--accent); }
.review-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.review-top { display: flex; align-items: center; justify-content: space-between; gap: 14px; }
.review-source { color: var(--accent); font-size: 0.78rem; font-weight: 800; letter-spacing: 0.05em; text-transform: uppercase; }
.google-badge { padding: 6px 10px; border-radius: 999px; background: rgba(45, 122, 54, 0.14); color: var(--accent-light); font-weight: 800; font-size: 0.8rem; border: 1px solid rgba(45, 122, 54, 0.35); }
.review-card p { color: var(--muted); }
.review-card h3 { margin-top: auto; font-size: 1rem; color: var(--text); }
.reviews-cta { display: flex; justify-content: center; margin-top: 34px; }

@media (max-width: 1100px) {
  .header-social { display: none; }
}

@media (max-width: 980px) {
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
  .reviews-grid { grid-template-columns: 1fr; }
  .footer-social { flex-wrap: wrap; }
}

/* Service directory layout */
.services-directory .service-cards { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.services-directory .service-card { min-height: 100%; padding: 25px; }
.services-directory .service-card-protection { grid-template-columns: 0.4fr 1fr; padding: 34px; }

@media (max-width: 980px) {
  .service-category-nav { grid-template-columns: repeat(2, 1fr); }
  .services-directory .service-cards { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 760px) {
  .service-category-nav { grid-template-columns: 1fr; margin-bottom: 52px; }
  .service-category { margin-top: 58px; }
  .category-heading { gap: 13px; }
  .category-icon { flex-basis: 50px; width: 50px; height: 50px; border-radius: 16px; }
  .category-icon svg { width: 25px; height: 25px; }
  .services-directory .service-cards { grid-template-columns: 1fr; }
  .services-directory .service-card-protection { grid-template-columns: 1fr; gap: 20px; padding: 24px; }
  .services-directory .service-card-protection .service-card-icon { width: 62px; height: 62px; font-size: 1.8rem; }
  .protection-benefits ul { grid-template-columns: 1fr; }
}

.booking-page, .booking-cta { min-height: 100vh; display: grid; align-items: center; }
.booking-card { padding: 48px; border: 1px solid var(--line); border-radius: 18px; background: linear-gradient(135deg, #1d2820, var(--surface)); box-shadow: var(--shadow); text-align: center; }
.booking-card h1 { margin-inline: auto; font-size: clamp(2.4rem, 6vw, 5rem); color: var(--text); }
.booking-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; margin-top: 34px; }
.whatsapp-button { background: #25d366; color: #ffffff; box-shadow: 0 10px 25px rgba(37, 211, 102, 0.2); }
.booking-phone { margin-top: 22px; color: var(--muted); font-weight: 700; }
.booking-phone a { color: var(--accent); }

.gallery-page { background: var(--bg); }
.gallery-intro { max-width: 820px; margin-bottom: 76px; }
.gallery-intro h1 { font-size: clamp(2.7rem, 6vw, 4.7rem); }
.gallery-section { margin-top: 76px; }
.gallery-section:first-of-type { margin-top: 0; }
.gallery-section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 28px;
}
.gallery-section-heading h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); line-height: 1.1; letter-spacing: -0.03em; }
.gallery-section-heading > p { max-width: 390px; color: var(--muted); }
.gallery-grid { display: grid; gap: 18px; }
.gallery-grid-featured { grid-template-columns: repeat(4, 1fr); }
.gallery-grid-specialist { grid-template-columns: repeat(4, 1fr); }
.gallery-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.gallery-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.gallery-card img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.gallery-card-copy { display: grid; gap: 7px; padding: 18px; }
.gallery-card-label { color: var(--accent); font-size: 0.74rem; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase; }
.gallery-card h3 { font-size: 1rem; line-height: 1.4; }
.gallery-card-copy > p:last-child { color: var(--muted); font-size: 0.9rem; line-height: 1.45; }
.gallery-before-after { padding: 42px; border-radius: 24px; background: var(--bg-deep); }
.gallery-before-after .gallery-section-heading { margin-inline: auto; max-width: 980px; }
.gallery-before-after .ba-slider { width: min(980px, 100%); }

@media (max-width: 760px) {
  .booking-card { padding: 32px 20px; }
  .booking-actions { align-items: stretch; flex-direction: column; }
}

.video-showcase-section {
  padding: 80px 20px;
  background-color: var(--bg-deep);
  color: var(--text);
}

.video-showcase-section .container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-header h2 { color: var(--text); font-size: 2.2rem; font-weight: 700; margin-bottom: 8px; }
.section-header p { color: var(--muted); font-size: 1rem; }

.video-grid {
  display: grid;
  gap: 28px;
}

.video-card {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  height: 390px;
  min-height: 0;
  width: 100%;
  border-radius: 18px;
  overflow: hidden;
  background-color: #171a19;
  border: 1px solid var(--line);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.video-card video {
  min-width: 0;
  min-height: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-card:nth-child(even) video {
  grid-column: 2;
  grid-row: 1;
}

.video-card:nth-child(even) .video-info {
  grid-column: 1;
  grid-row: 1;
}

.video-card .video-info {
  position: static;
  inset: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 12px;
  padding: clamp(28px, 4vw, 56px);
  border-radius: 0;
  background: #171a19;
  box-shadow: none;
  color: #ffffff;
  backdrop-filter: none;
}

.video-info-label {
  color: #a8d7ae;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.3;
  text-transform: uppercase;
}

.video-info h3 {
  color: #ffffff;
  font-size: clamp(1.45rem, 2.2vw, 2rem);
  line-height: 1.15;
}

.video-info > p:last-child {
  max-width: 31ch;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.95rem;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .video-grid {
    gap: 22px;
  }

  .video-card {
    grid-template-columns: 1fr;
    height: auto;
  }

  .video-card video,
  .video-card:nth-child(even) video {
    grid-column: 1;
    grid-row: 1;
    aspect-ratio: 16 / 10;
    height: auto;
  }

  .video-card .video-info,
  .video-card:nth-child(even) .video-info {
    grid-column: 1;
    grid-row: 2;
    min-height: 220px;
    padding: 28px 24px 32px;
  }
}

.ba-slider {
  --pos: 50%;
  position: relative;
  width: min(980px, 100%);
  aspect-ratio: 16 / 10;
  min-height: 340px;
  margin-inline: auto;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--surface-soft);
  box-shadow: var(--shadow);
  touch-action: none;
  isolation: isolate;
}

.ba-image,
.ba-image-after {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.ba-image { object-fit: cover; object-position: center; }
.ba-image-after { width: var(--pos); overflow: hidden; }
.ba-image-after .ba-image { width: 100%; max-width: none; }
.ba-range { position: absolute; inset: 0; width: 100%; height: 100%; margin: 0; opacity: 0; cursor: ew-resize; }
.ba-badge {
  position: absolute;
  top: 18px;
  z-index: 2;
  padding: 7px 11px;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(27, 31, 32, 0.94);
  color: var(--text);
  border: 1px solid var(--line);
}
.ba-badge-before { left: 18px; }
.ba-badge-after { right: 18px; }

.ba-badge-after {
  background: var(--accent);
  color: #ffffff;
}

.ba-handle {
  background: var(--surface);
  color: var(--accent);
  border: 3px solid var(--accent);
}

.ba-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--pos);
  z-index: 2;
  width: 2px;
  background: #dfe5e1;
  pointer-events: none;
  transform: translateX(-50%);
}
.ba-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 1.2rem;
  font-weight: 800;
  transform: translate(-50%, -50%);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.16);
}

.details-section { background: var(--bg-deep); }
.detail-feature {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 64px;
  margin-bottom: 72px;
}
.detail-feature-reverse { grid-template-columns: 0.9fr 1.1fr; }
.detail-feature-reverse .detail-feature-image { order: 2; }
.detail-feature-image { overflow: hidden; border-radius: 24px; box-shadow: var(--shadow); }
.detail-feature-image > img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.detail-feature-image-stack {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 10px;
  overflow: visible;
  box-shadow: none;
}
.detail-feature-image-stack img { border-radius: 18px; box-shadow: var(--shadow); }
.detail-feature-image-stack img:last-child { margin-top: 42px; }
.detail-feature-copy h3 { margin-bottom: 18px; font-size: clamp(1.8rem, 3vw, 2.6rem); line-height: 1.1; letter-spacing: -0.03em; }
.detail-feature-copy p:not(.eyebrow) { margin-top: 14px; color: var(--muted); }
.detail-pair { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.detail-card { overflow: hidden; border: 1px solid var(--line); border-radius: 18px; background: var(--surface); box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04); }
.detail-card > img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.detail-card-copy { padding: 26px; }
.detail-card-copy h3 { margin-bottom: 10px; font-size: 1.45rem; }
.detail-card-copy p:not(.eyebrow) { color: var(--muted); }
.work-gallery { display: grid; grid-template-columns: 1.35fr 0.8fr 0.8fr; grid-template-rows: repeat(2, 230px); gap: 16px; }
.work-gallery-card { position: relative; min-height: 0; overflow: hidden; border-radius: 18px; background: var(--surface); }
.work-gallery-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.work-gallery-card:hover img { transform: scale(1.04); }
.work-gallery-card figcaption { position: absolute; right: 14px; bottom: 14px; left: 14px; padding: 10px 12px; border-radius: 10px; background: rgba(27, 31, 32, 0.94); color: var(--text); font-size: 0.8rem; font-weight: 700; }
.work-gallery-feature { grid-row: span 2; }

@media (max-width: 760px) {
  .gallery-intro { margin-bottom: 54px; }
  .gallery-section { margin-top: 54px; }
  .gallery-section-heading { display: grid; gap: 12px; align-items: start; }
  .gallery-before-after { padding: 24px 14px; border-radius: 18px; }
  .gallery-grid-featured,
  .gallery-grid-specialist { grid-template-columns: 1fr; }
  .ba-slider { aspect-ratio: 4 / 3; min-height: 280px; border-radius: 18px; }
  .ba-handle { width: 50px; height: 50px; }
  .ba-badge { top: 12px; font-size: 0.62rem; }
  .ba-badge-before { left: 12px; }
  .ba-badge-after { right: 12px; }
}

.eyebrow { font-size: 0.85rem; font-weight: 700; color: var(--accent); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 12px; }

@media (max-width: 760px) {
  .detail-feature,
  .detail-feature-reverse { grid-template-columns: 1fr; gap: 30px; margin-bottom: 56px; }
  .detail-feature-reverse .detail-feature-image { order: 0; }
  .detail-feature-image-stack { grid-template-columns: 1fr 0.7fr; }
  .detail-feature-image-stack img:last-child { margin-top: 24px; }
  .detail-pair { grid-template-columns: 1fr; gap: 18px; }
  .work-gallery { grid-template-columns: repeat(2, 1fr); grid-template-rows: repeat(3, 180px); gap: 12px; }
  .work-gallery-feature { grid-row: span 2; }
}
