/* ============================================
   UNLEASHED K9 — Premium Dog Training
   Design: Black & Red, Editorial, Restrained
   ============================================ */

/* ---------- Self-Hosted Inter (variable font, latin subset) ---------- */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('/fonts/inter-variable.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ---------- CSS Variables ---------- */
:root {
  --black: #0a0a0a;
  --black-light: #111111;
  --black-card: #141414;
  --black-border: #1f1f1f;
  --red: #c41e1e;
  --red-bright: #e02020;
  --red-dark: #8b1515;
  --red-glow: rgba(196, 30, 30, 0.15);
  --white: #f5f5f5;
  --white-muted: #b0b0b0;
  --white-dim: #737373;
  --grey-dark: #1a1a1a;
  --grey-mid: #2a2a2a;
  --font-heading: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --max-width: 1200px;
  --section-pad: clamp(80px, 10vw, 140px);
  --transition: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white);
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--red-bright); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--white); }

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--white);
}

h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.8rem); }
h4 { font-size: clamp(1.1rem, 2vw, 1.3rem); }

.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1rem;
  display: block;
}

.section-title { margin-bottom: 1.5rem; }

.section-subtitle {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: var(--white-muted);
  max-width: 640px;
  line-height: 1.8;
}

/* ---------- Layout ---------- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
}

.section {
  padding: var(--section-pad) 0;
  position: relative;
}

.section--dark { background: var(--black-light); }

.section-divider {
  width: 60px;
  height: 3px;
  background: var(--red);
  margin: 2rem 0;
}

/* ---------- Grid ---------- */
.grid { display: grid; gap: 2rem; }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 480px), 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 340px), 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr)); }

/* ---------- Navigation ---------- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.2rem 0;
  transition: all var(--transition);
  background: transparent;
}

.nav.scrolled {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--black-border);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--white);
  letter-spacing: -0.02em;
}

.nav__logo img {
  height: 40px;
  width: auto;
}

.nav__logo-icon {
  width: 36px;
  height: 36px;
  background: var(--red);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 0.9rem;
  color: white;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav__links a {
  color: var(--white-muted);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color var(--transition);
  position: relative;
}

.nav__links a:hover,
.nav__links a.active {
  color: var(--white);
}

.nav__links a.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--red);
}

/* -- Services dropdown -- */
.nav__dropdown { position: relative; }
.nav__dropdown > a { display: flex; align-items: center; gap: 4px; }
.nav__dropdown-chevron { transition: transform 0.25s ease; }
.nav__dropdown:hover .nav__dropdown-chevron { transform: rotate(180deg); }

.nav__dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, visibility 0.2s ease;
  z-index: 1000;
  padding-top: 18px;
}
.nav__dropdown:hover .nav__dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition-delay: 0.05s;
}
.nav__dropdown-menu:hover {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.nav__dropdown-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  background: rgba(14,14,14,0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 1.5rem 2rem;
  min-width: 640px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}

.nav__dropdown-heading {
  color: var(--red);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.6rem;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid rgba(196,30,30,0.2);
}

.nav__dropdown-link {
  display: block;
  color: var(--white-muted) !important;
  font-size: 0.78rem !important;
  font-weight: 400 !important;
  padding: 0.25rem 0;
  transition: color 0.2s ease !important;
  white-space: nowrap;
}
.nav__dropdown-link:hover {
  color: var(--white) !important;
}
.nav__dropdown-link::after { display: none !important; }

.nav__cta {
  background: var(--red) !important;
  color: white !important;
  padding: 0.6rem 1.4rem;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.85rem;
  transition: all var(--transition) !important;
}

.nav__cta:hover {
  background: var(--red-bright) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 20px var(--red-glow);
}

/* Nav team avatars */
.nav__team {
  display: flex !important;
  align-items: center;
  padding: 0 !important;
  gap: 0;
  flex-shrink: 0;
}
.nav__team-pip {
  position: relative;
  display: block;
  flex-shrink: 0;
  margin-left: -8px;
  transition: margin 0.3s ease;
}
.nav__team-pip:first-child {
  margin-left: 0;
}
.nav__team:hover .nav__team-pip {
  margin-left: -4px;
}
.nav__team:hover .nav__team-pip:first-child {
  margin-left: 0;
}
/* Name tooltip */
.nav__team-pip::after {
  content: attr(data-name);
  position: absolute;
  bottom: -28px;
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  background: rgba(10, 10, 10, 0.92);
  color: #fff;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 3px 8px;
  border-radius: 4px;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.25s ease, transform 0.25s ease;
  border: 1px solid rgba(196, 30, 30, 0.3);
  z-index: 10;
}
.nav__team-pip:hover::after {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
/* Small arrow on tooltip */
.nav__team-pip::before {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-bottom: 4px solid rgba(10, 10, 10, 0.92);
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
  z-index: 10;
}
.nav__team-pip:hover::before {
  opacity: 1;
}
.nav__team-avatar {
  width: 28px !important;
  height: 28px !important;
  min-width: 28px;
  min-height: 28px;
  max-width: 28px !important;
  max-height: 28px !important;
  border-radius: 50% !important;
  border: 2px solid var(--black) !important;
  object-fit: cover !important;
  transition: all 0.3s ease;
  filter: grayscale(0.3);
  display: block;
  flex-shrink: 0;
}
.nav__team:hover .nav__team-avatar {
  filter: grayscale(0);
  border-color: var(--red);
}
.nav__team-pip:hover .nav__team-avatar {
  transform: scale(1.15);
  border-color: #fff !important;
  filter: grayscale(0) brightness(1.1);
  z-index: 5;
  position: relative;
}
.nav.scrolled .nav__team-avatar {
  border-color: rgba(10, 10, 10, 0.95);
}

/* Mobile nav */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav__toggle span {
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all var(--transition);
}

@media (max-width: 900px) {
  .nav__toggle { display: flex; }
  .nav__links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 360px;
    height: 100vh;
    background: var(--black-light);
    flex-direction: column;
    align-items: flex-start;
    padding: 5rem 2rem 2rem;
    gap: 1.5rem;
    transition: right var(--transition);
    border-left: 1px solid var(--black-border);
  }
  .nav__links.open { right: 0; }
  .nav__links a { font-size: 1.1rem; }
  .nav__team { display: none !important; }
  .nav__dropdown-menu {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    padding-top: 0;
    display: none;
  }
  .nav__dropdown.open .nav__dropdown-menu { display: block; }
  .nav__dropdown-inner {
    grid-template-columns: 1fr;
    min-width: unset;
    padding: 1rem;
    gap: 1rem;
    background: rgba(20,20,20,0.9);
  }
  .nav__dropdown-chevron { display: inline-block; }
  .nav__overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: 999;
  }
  .nav__overlay.open { display: block; }
}

/* ---------- Hero ---------- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}

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

.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,10,10,0.92) 0%, rgba(10,10,10,0.7) 50%, rgba(10,10,10,0.85) 100%);
  z-index: 1;
}

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

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(196, 30, 30, 0.15);
  border: 1px solid rgba(196, 30, 30, 0.3);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--red-bright);
  margin-bottom: 1.5rem;
  letter-spacing: 0.05em;
}

.hero__badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--red);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero h1 {
  margin-bottom: 1.5rem;
}

.hero h1 .highlight {
  color: var(--red);
  position: relative;
}

.hero__text {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: var(--white-muted);
  margin-bottom: 2.5rem;
  max-width: 560px;
  line-height: 1.8;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero__stats {
  display: flex;
  gap: 3rem;
  margin-top: 4rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--black-border);
}

.hero__stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}

.hero__stat-label {
  font-size: 0.8rem;
  color: var(--white-dim);
  margin-top: 0.3rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  text-decoration: none;
}

.btn-primary {
  background: var(--red);
  color: white;
}

.btn-primary:hover {
  background: var(--red-bright);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--red-glow);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--black-border);
}

.btn-outline:hover {
  border-color: var(--white-dim);
  color: var(--white);
  background: rgba(255,255,255,0.03);
}

.btn-ghost {
  background: transparent;
  color: var(--red);
  padding: 0.85rem 0;
}

.btn-ghost:hover { color: var(--white); }

.btn-sm { padding: 0.6rem 1.2rem; font-size: 0.85rem; }
.btn-lg { padding: 1rem 2.5rem; font-size: 1rem; }

/* ---------- Cards (The Box Style) ---------- */
.card {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: 12px;
  padding: 2rem;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}

.card:hover {
  border-color: var(--grey-mid);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.card:hover::before { opacity: 1; }

.card__icon {
  width: 48px;
  height: 48px;
  background: var(--red-glow);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--red);
}

.card__icon svg { width: 24px; height: 24px; }

.card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
  font-weight: 700;
}

.card p {
  color: var(--white-muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

.card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--red);
  font-size: 0.85rem;
  font-weight: 600;
  margin-top: 1.25rem;
  transition: gap var(--transition);
}

.card__link:hover { gap: 0.6rem; color: var(--red-bright); }

/* Feature card variant */
.card--feature {
  padding: 2.5rem;
  text-align: center;
}

.card--feature .card__icon {
  margin: 0 auto 1.25rem;
  width: 56px;
  height: 56px;
}

/* ---------- Trust Bar ---------- */
.trust-bar {
  padding: 3rem 0;
  border-top: 1px solid var(--black-border);
  border-bottom: 1px solid var(--black-border);
}

.trust-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--white-dim);
  font-size: 0.85rem;
  font-weight: 500;
}

.trust-item svg {
  width: 20px;
  height: 20px;
  color: var(--red);
  flex-shrink: 0;
}

/* ---------- Reviews ---------- */
.review-card {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: 12px;
  padding: 2rem;
  position: relative;
}

.review-card__stars {
  display: flex;
  gap: 2px;
  margin-bottom: 1rem;
}

.review-card__stars svg {
  width: 16px;
  height: 16px;
  fill: var(--red);
}

.review-card__text {
  color: var(--white-muted);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.review-card__author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.review-card__avatar {
  width: 40px;
  height: 40px;
  background: var(--grey-mid);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--red);
}

.review-card__name {
  font-weight: 600;
  font-size: 0.9rem;
}

.review-card__meta {
  font-size: 0.8rem;
  color: var(--white-dim);
}

/* ---------- Team ---------- */
.team-card {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: 12px;
  overflow: hidden;
  transition: all var(--transition);
}

.team-card:hover {
  border-color: var(--grey-mid);
  transform: translateY(-4px);
}

.team-card__image {
  width: 100%;
  height: 320px;
  background: var(--grey-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

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

.team-card__image-placeholder {
  font-size: 4rem;
  color: var(--white-dim);
}

.team-card__info { padding: 1.5rem; }

.team-card__name {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.team-card__role {
  color: var(--red);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.team-card__bio {
  color: var(--white-muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ---------- FAQ Accordion ---------- */
.faq-item {
  border: 1px solid var(--black-border);
  border-radius: 10px;
  margin-bottom: 0.75rem;
  overflow: hidden;
  transition: border-color var(--transition);
}

.faq-item:hover { border-color: var(--grey-mid); }

.faq-item__question {
  width: 100%;
  background: var(--black-card);
  border: none;
  color: var(--white);
  padding: 1.25rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-family: var(--font-body);
}

.faq-item__question svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform var(--transition);
  color: var(--red);
}

.faq-item.open .faq-item__question svg { transform: rotate(45deg); }

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-item.open .faq-item__answer { max-height: 500px; }

.faq-item__answer-inner {
  padding: 0 1.5rem 1.25rem;
  color: var(--white-muted);
  font-size: 0.95rem;
  line-height: 1.8;
}

/* ---------- CTA Section ---------- */
.cta-section {
  background: linear-gradient(135deg, var(--red-dark) 0%, var(--red) 50%, var(--red-dark) 100%);
  text-align: center;
  padding: var(--section-pad) 0;
  position: relative;
  overflow: hidden;
}

.cta-section__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  opacity: 0.15;
  z-index: 0;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(255,255,255,0.05) 0%, transparent 70%);
  z-index: 0;
}

.cta-section h2 { margin-bottom: 1rem; }
.cta-section p { color: rgba(255,255,255,0.8); margin-bottom: 2rem; max-width: 600px; margin-left: auto; margin-right: auto; }

.cta-section .btn-primary {
  background: white;
  color: var(--red);
}

.cta-section .btn-primary:hover {
  background: var(--white);
  color: var(--red-dark);
  box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}

/* ---------- Footer ---------- */
.footer {
  background: var(--black-light);
  border-top: 1px solid var(--black-border);
  padding: 4rem 0 2rem;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer__brand p {
  color: var(--white-muted);
  font-size: 0.9rem;
  margin: 1rem 0;
  max-width: 300px;
  line-height: 1.7;
}

.footer__social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.footer__social a {
  width: 36px;
  height: 36px;
  background: var(--grey-mid);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white-muted);
  transition: all var(--transition);
}

.footer__social a:hover {
  background: var(--red);
  color: white;
}

.footer h4 {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.25rem;
  color: var(--white);
}

.footer__links {
  list-style: none;
}

.footer__links li { margin-bottom: 0.6rem; }

.footer__links a {
  color: var(--white-muted);
  font-size: 0.9rem;
  transition: color var(--transition);
}

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

.footer__bottom {
  border-top: 1px solid var(--black-border);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer__bottom p {
  color: var(--white-dim);
  font-size: 0.8rem;
}

.footer__bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer__bottom-links a {
  color: var(--white-dim);
  font-size: 0.8rem;
}

@media (max-width: 768px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  .hero__stats { gap: 1.5rem; flex-wrap: wrap; }
}

@media (max-width: 480px) {
  .footer__grid { grid-template-columns: 1fr; }
}

/* ---------- Service Page ---------- */
.service-hero {
  padding: calc(80px + var(--section-pad)) 0 var(--section-pad);
  background: var(--black-light);
}

.service-content {
  padding: var(--section-pad) 0;
}

.service-content__grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
}

.service-content__body h3 {
  margin: 2rem 0 1rem;
  color: var(--white);
}

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

.service-content__body ul {
  list-style: none;
  margin: 1rem 0 1.5rem;
}

.service-content__body ul li {
  color: var(--white-muted);
  padding: 0.4rem 0 0.4rem 1.5rem;
  position: relative;
  line-height: 1.7;
}

.service-content__body ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.85rem;
  width: 6px;
  height: 6px;
  background: var(--red);
  border-radius: 50%;
}

.service-sidebar { position: sticky; top: 100px; }

.sidebar-card {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 1.5rem;
}

.sidebar-card h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--white-dim);
  margin-bottom: 1rem;
}

.sidebar-card__price {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.sidebar-card__meta {
  color: var(--white-dim);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

@media (max-width: 900px) {
  .service-content__grid { grid-template-columns: 1fr; }
  .service-sidebar { position: static; }
}

/* ---------- Area Page ---------- */
.area-hero {
  padding: calc(80px + var(--section-pad)) 0 var(--section-pad);
  background: var(--black-light);
}

/* ---------- Breadcrumbs ---------- */
.breadcrumbs {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  margin-bottom: 1.5rem;
  font-size: 0.85rem;
}

.breadcrumbs a { color: var(--white-dim); }
.breadcrumbs a:hover { color: var(--white); }
.breadcrumbs span { color: var(--white-dim); }
.breadcrumbs .current { color: var(--white-muted); }

/* ---------- Contact Page ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-info__item {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}

.contact-info__icon {
  width: 44px;
  height: 44px;
  background: var(--red-glow);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  flex-shrink: 0;
}

.contact-info__icon svg { width: 20px; height: 20px; }

.contact-info__label {
  font-size: 0.8rem;
  color: var(--white-dim);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.25rem;
}

.contact-info__value {
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
}

.map-embed {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--black-border);
  height: 300px;
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

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

/* ---------- Animations ---------- */
/* Reveal animations removed — caused invisible content on mobile */
.reveal {
  opacity: 1;
  transform: none;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.reveal-delay-1, .reveal-delay-2, .reveal-delay-3, .reveal-delay-4 { transition-delay: 0s; }

/* ---------- Red line accent ---------- */
.accent-line {
  width: 40px;
  height: 3px;
  background: var(--red);
  margin-bottom: 1.5rem;
}

/* ---------- Guarantee badge ---------- */
.guarantee-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--red-glow);
  border: 1px solid rgba(196, 30, 30, 0.25);
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--red);
}

/* ---------- Other services grid on service page ---------- */
.other-services {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
  scrollbar-width: none;
}

.other-services::-webkit-scrollbar { display: none; }

.other-service-link {
  white-space: nowrap;
  padding: 0.5rem 1rem;
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: 8px;
  color: var(--white-muted);
  font-size: 0.85rem;
  font-weight: 500;
  transition: all var(--transition);
  flex-shrink: 0;
}

.other-service-link:hover {
  border-color: var(--red);
  color: var(--white);
}

/* ---------- Booking embed ---------- */
.booking-embed {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--black-border);
  background: #fff;
}

.booking-embed iframe {
  width: 100%;
  min-height: 800px;
  border: 0;
}

@media (max-width: 768px) {
  .booking-embed iframe {
    min-height: 700px;
  }
}

/* ---------- Legal pages ---------- */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: var(--section-pad) 0;
}

.legal-content h2 { font-size: 1.5rem; margin: 2rem 0 1rem; }
.legal-content p { color: var(--white-muted); margin-bottom: 1rem; line-height: 1.8; }
.legal-content ul { list-style: disc; padding-left: 1.5rem; margin-bottom: 1rem; }
.legal-content ul li { color: var(--white-muted); margin-bottom: 0.5rem; }

/* ---------- 404 ---------- */
.page-404 {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.page-404 h1 {
  font-size: 8rem;
  color: var(--red);
  line-height: 1;
}

/* ---------- Utility ---------- */
.text-center { text-align: center; }
.text-red { color: var(--red); }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 2rem; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* ---------- Service Page (Cinematic) ---------- */

/* -- Keyframe animations -- */
@keyframes svcGlowPulse {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.2); }
}
@keyframes svcScanFade {
  0% { opacity: 0; }
  10% { opacity: 1; }
  80% { opacity: 1; }
  100% { opacity: 0; }
}
@keyframes svcScanMove {
  0% { top: 0; }
  100% { top: 100%; }
}
@keyframes svcEmberFloat {
  0% { opacity: 0; transform: translateY(0) scale(1); }
  10% { opacity: 0.7; }
  80% { opacity: 0.2; }
  100% { opacity: 0; transform: translateY(-70vh) scale(0.3); }
}
@keyframes svcBtnGlow {
  0%, 100% { background-position: 0% 50%; opacity: 0.3; }
  50% { background-position: 100% 50%; opacity: 0.7; }
}

/* -- Hero -- */
.svc-hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: flex-end;
  padding: calc(80px + 4rem) 0 4rem;
  overflow: hidden;
  background: var(--black-light);
}

/* Services listing page — shorter hero so content starts higher */
.svc-hero--listing {
  min-height: auto;
  align-items: center;
  padding: calc(80px + 2rem) 0 2.5rem;
}

.svc-hero--listing .svc-hero__title {
  position: relative;
}

/* Watermark removed — replaced with hero background image */

.svc-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 80%, rgba(196,30,30,0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(196,30,30,0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 100%, rgba(196,30,30,0.06) 0%, transparent 40%);
  pointer-events: none;
}

.svc-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--black-border), rgba(196,30,30,0.4), var(--black-border), transparent);
  z-index: 4;
}

/* Animated glow orb */
.svc-hero__glow {
  position: absolute;
  bottom: -100px;
  left: -60px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(196,30,30,0.2) 0%, transparent 60%);
  z-index: 1;
  pointer-events: none;
  animation: svcGlowPulse 6s ease-in-out infinite;
}

/* Scanline */
.svc-hero__scanline {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  opacity: 0;
  animation: svcScanFade 3s 0.5s forwards;
}
.svc-hero__scanline::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(196,30,30,0.5), rgba(255,255,255,0.25), rgba(196,30,30,0.5), transparent);
  box-shadow: 0 0 20px rgba(196,30,30,0.3), 0 0 60px rgba(196,30,30,0.1);
  animation: svcScanMove 2.5s 0.8s ease-in-out forwards;
}

/* Floating embers */
.svc-hero__ember {
  position: absolute;
  width: 3px;
  height: 3px;
  background: var(--red);
  border-radius: 50%;
  opacity: 0;
  box-shadow: 0 0 6px rgba(196,30,30,0.6);
  z-index: 3;
  pointer-events: none;
}
.svc-hero__ember:nth-child(4) { left: 20%; bottom: 10%; animation: svcEmberFloat 8s 2s ease-out infinite; }
.svc-hero__ember:nth-child(5) { left: 50%; bottom: 5%; width: 2px; height: 2px; animation: svcEmberFloat 10s 3s ease-out infinite; }
.svc-hero__ember:nth-child(6) { left: 75%; bottom: 12%; animation: svcEmberFloat 7s 4s ease-out infinite; }

/* Film grain */
.svc-hero__grain {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 128px 128px;
  pointer-events: none;
  z-index: 1;
}

.svc-hero__content {
  position: relative;
  z-index: 5;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
}
.svc-hero--listing .svc-hero__content {
  padding-top: 2rem;
}

.svc-hero__back {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--white-dim);
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 2rem;
  transition: all 0.3s ease;
}
.svc-hero__back:hover { color: var(--white); transform: translateX(-3px); }
.svc-hero__back svg { width: 16px; height: 16px; }

/* ---------- Team Hero — Split Layout ---------- */
.team-hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--black);
}
.team-hero__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--black) 0%, rgba(196,30,30,0.08) 50%, var(--black) 100%);
  z-index: 0;
}
.team-hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url('/images/team/training-pro-4.webp') center/cover no-repeat;
  opacity: 0.08;
  filter: grayscale(100%);
}
.team-hero__inner {
  position: relative;
  z-index: 5;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: clamp(100px, 12vw, 140px) clamp(20px, 4vw, 40px) clamp(40px, 5vw, 60px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 3vw, 3rem);
  align-items: center;
}
.team-hero__text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.team-hero__text .svc-hero__title {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  margin-top: 0.5rem;
}
.team-hero__text .svc-hero__sub {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: var(--white-muted);
  margin-top: 0.25rem;
}
.team-hero__specs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1rem 0 1.5rem;
}
.team-hero__spec-tag {
  display: inline-block;
  padding: 0.4rem 1rem;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--white);
  background: rgba(196,30,30,0.15);
  border: 1px solid rgba(196,30,30,0.3);
  border-radius: 100px;
}
.team-hero__image {
  display: flex;
  justify-content: center;
  align-items: center;
}
.team-hero__image img {
  width: 100%;
  max-width: 500px;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: top center;
  border-radius: 20px;
  border: 2px solid rgba(196,30,30,0.2);
  box-shadow: 0 20px 60px rgba(0,0,0,0.6), 0 0 80px rgba(196,30,30,0.1);
}

/* Team hero mobile */
@media (max-width: 900px) {
  .team-hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 120px;
  }
  .team-hero__text {
    align-items: center;
    order: 2;
  }
  .team-hero__specs {
    justify-content: center;
  }
  .team-hero__image {
    order: 1;
    justify-content: center;
  }
  .team-hero__image img {
    max-width: 280px;
    border-radius: 50%;
  }
}
.team-bio .lead { font-size: 1.15rem; line-height: 1.8; color: var(--white-muted); margin-bottom: 2rem; }
.team-bio h2 { font-size: 1.4rem; margin: 2rem 0 1rem; color: var(--white); }
.team-bio ul { list-style: none; padding: 0; }
.team-bio ul li { padding: 0.4rem 0 0.4rem 1.5rem; position: relative; color: var(--white-muted); }
.team-bio ul li::before { content: ''; position: absolute; left: 0; top: 0.85rem; width: 6px; height: 6px; background: var(--red); border-radius: 50%; }
.team-bio a { color: var(--red-bright); text-decoration: none; }
.team-bio a:hover { text-decoration: underline; }

.svc-hero__title {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 1rem;
  text-shadow: 0 4px 30px rgba(0,0,0,0.5);
}

.svc-hero__sub {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: var(--white-muted);
  max-width: 640px;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.svc-hero__divider {
  width: 60px;
  height: 3px;
  background: var(--red);
  margin-bottom: 2rem;
  box-shadow: 0 0 12px rgba(196,30,30,0.4);
}

/* Glassmorphic stats strip */
.svc-hero__stats {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  padding: 1rem 0.5rem;
  position: relative;
}

.svc-hero__stats::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 17px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(196,30,30,0.3), transparent 40%, transparent 60%, rgba(196,30,30,0.15));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.svc-hero__stat {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 2rem;
  border-right: 1px solid rgba(255,255,255,0.06);
}

.svc-hero__stat:first-child { padding-left: 1.5rem; }
.svc-hero__stat:last-child { border-right: none; }

.svc-hero__stat-icon {
  width: 42px;
  height: 42px;
  background: rgba(196,30,30,0.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  flex-shrink: 0;
  box-shadow: 0 0 16px rgba(196,30,30,0.2);
  transition: all 0.3s ease;
}

.svc-hero__stat:hover .svc-hero__stat-icon {
  box-shadow: 0 0 24px rgba(196,30,30,0.35);
  background: rgba(196,30,30,0.18);
}

.svc-hero__stat-icon svg { width: 18px; height: 18px; }

.svc-hero__stat-label {
  font-size: 0.7rem;
  color: var(--white-dim);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
}

.svc-hero__stat-value {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
}

/* CTA button glow */
.svc-hero .btn {
  position: relative;
  overflow: hidden;
}
.svc-hero .btn::before {
  content: '';
  position: absolute;
  inset: -2px;
  background: linear-gradient(90deg, var(--red), #ff6b6b, var(--red));
  background-size: 200% 100%;
  border-radius: inherit;
  z-index: -1;
  animation: svcBtnGlow 3s ease-in-out infinite;
  opacity: 0.5;
}

@media (max-width: 768px) {
  .svc-hero { min-height: auto; padding: calc(80px + 2rem) 0 3rem; }
  .svc-hero__stats {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.75rem;
  }
  .svc-hero__stat {
    padding: 0.75rem 1rem;
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.04);
  }
  .svc-hero__stat:first-child { padding-left: 1rem; }
  .svc-hero__stat:last-child { border-bottom: none; }
  .svc-hero__glow { width: 300px; height: 300px; bottom: -50px; left: -30px; }
}

/* -- Content body -- */
.svc-body {
  padding: var(--section-pad) 0;
}

.svc-body__grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 4rem;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
}

.svc-body__main h2 {
  margin: 3.5rem 0 1.2rem;
  color: var(--white);
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 800;
  line-height: 1.2;
  position: relative;
  padding: 2rem 0 1rem;
}

.svc-body__main h2:first-of-type { margin-top: 2rem; }

.svc-body__main h3 {
  margin: 2.5rem 0 1rem;
  color: var(--white);
  font-size: clamp(1.3rem, 2vw, 1.6rem);
  padding-left: 1rem;
  border-left: 4px solid var(--red);
  position: relative;
}

.svc-body__main h3:first-child { margin-top: 0; }

.svc-body__main p {
  color: var(--white-muted);
  margin-bottom: 1rem;
  line-height: 1.8;
  font-size: 1rem;
}

.svc-body__main ul {
  list-style: none;
  margin: 1rem 0 1.5rem;
  padding: 0;
}

.svc-body__main ul li {
  color: var(--white-muted);
  padding: 0.5rem 0 0.5rem 1.5rem;
  position: relative;
  line-height: 1.7;
}

.svc-body__main ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.85rem;
  width: 6px;
  height: 6px;
  background: var(--red);
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(196,30,30,0.4);
}

/* ===== INLINE CONTENT IMAGE (floated) ===== */
.svc-content-img {
  float: right;
  width: 45%;
  max-width: 380px;
  margin: 0 0 1.5rem 2rem;
  border-radius: 10px;
  overflow: hidden;
}
.svc-content-img img {
  width: 100%;
  height: auto;
  display: block;
}
@media (max-width: 768px) {
  .svc-content-img {
    float: none;
    width: 100%;
    max-width: 100%;
    margin: 0 0 1.5rem 0;
  }
}

/* ===== SERVICE GALLERY CAROUSEL ===== */
.svc-carousel {
  position: relative;
  margin: 2.5rem 0;
}
.svc-carousel__track {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 0.25rem 0;
}
.svc-carousel__track::-webkit-scrollbar { display: none; }
.svc-carousel__slide {
  flex: 0 0 auto;
  width: 380px;
  height: 280px;
  border-radius: 10px;
  overflow: hidden;
  scroll-snap-align: start;
}
.svc-carousel__slide img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.svc-carousel__slide:hover img {
  transform: scale(1.03);
}
/* Nav arrows */
.svc-carousel__nav {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
  justify-content: flex-end;
}
.svc-carousel__btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.05);
  color: var(--white, #fff);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}
.svc-carousel__btn:hover {
  background: rgba(196,30,30,0.2);
  border-color: rgba(196,30,30,0.4);
}
.svc-carousel__btn svg {
  width: 18px;
  height: 18px;
}
/* Desktop: wider slides */
@media (min-width: 769px) {
  .svc-carousel__slide {
    width: 420px;
    height: 300px;
  }
}
/* Mobile: narrower slides, more snap feel */
@media (max-width: 600px) {
  .svc-carousel__slide {
    width: 300px;
    height: 220px;
  }
  .svc-carousel__nav {
    display: none;
  }
}

/* -- Sidebar (Glassmorphic + sticky, scrolls naturally then freezes) -- */
.svc-sidebar {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-self: start;
}

.svc-sidebar__card {
  background: rgba(20,20,20,0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px;
  padding: 2rem;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.svc-sidebar__card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
  opacity: 0.3;
  transition: opacity var(--transition);
}

.svc-sidebar__card:hover {
  border-color: rgba(196,30,30,0.2);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3), 0 0 30px rgba(196,30,30,0.08);
}
.svc-sidebar__card:hover::before { opacity: 1; }

.svc-sidebar__title {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--red);
  margin-bottom: 1.25rem;
}

.svc-sidebar__list {
  list-style: none;
  padding: 0;
}

.svc-sidebar__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.svc-sidebar__list li:last-child { border-bottom: none; }

.svc-sidebar__list-icon {
  width: 38px;
  height: 38px;
  min-width: 38px;
  background: rgba(196,30,30,0.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  box-shadow: 0 0 12px rgba(196,30,30,0.15);
}

.svc-sidebar__list-icon svg { width: 16px; height: 16px; }

.svc-sidebar__list-label {
  font-size: 0.75rem;
  color: var(--white-dim);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}

.svc-sidebar__list-value {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
}

.svc-sidebar__checks {
  list-style: none;
  padding: 0;
}

.svc-sidebar__checks li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.6rem 0;
  color: var(--white-muted);
  font-size: 0.9rem;
}

.svc-sidebar__checks li svg {
  width: 16px;
  height: 16px;
  color: var(--red);
  flex-shrink: 0;
  filter: drop-shadow(0 0 4px rgba(196,30,30,0.4));
}

.svc-sidebar__cta {
  display: block;
  width: 100%;
  text-align: center;
  background: var(--red);
  color: white;
  padding: 0.9rem 2rem;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  margin-top: 1.25rem;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.svc-sidebar__cta::before {
  content: '';
  position: absolute;
  inset: -2px;
  background: linear-gradient(90deg, var(--red), #ff6b6b, var(--red));
  background-size: 200% 100%;
  border-radius: inherit;
  z-index: -1;
  animation: svcBtnGlow 3s ease-in-out infinite;
  opacity: 0.4;
}

.svc-sidebar__cta:hover {
  background: var(--red-bright);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(196,30,30,0.4);
}

.svc-sidebar__phone {
  text-align: center;
  font-size: 0.8rem;
  color: var(--white-dim);
  margin-top: 0.75rem;
}

.svc-sidebar__phone a {
  color: var(--red);
  font-weight: 600;
}

/* -- FAQ section (Premium) -- */
.svc-faq {
  background:
    linear-gradient(180deg, var(--black) 0%, var(--black-light) 30%, var(--black-light) 70%, var(--black) 100%);
  padding: var(--section-pad) 0 60px;
  position: relative;
}

.svc-faq::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(196,30,30,0.3), transparent);
}

.svc-faq__inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
}

.svc-faq .faq-item {
  background: rgba(20,20,20,0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.04);
  border-radius: 12px;
  margin-bottom: 0.75rem;
  transition: all 0.3s ease;
}

.svc-faq .faq-item:hover {
  border-color: rgba(196,30,30,0.15);
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.svc-faq .faq-item__question svg {
  filter: drop-shadow(0 0 4px rgba(196,30,30,0.3));
}

/* -- CTA Banner (Enhanced) -- */
.cta-section {
  position: relative;
  overflow: hidden;
}

.cta-section::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 128px 128px;
  pointer-events: none;
}

/* -- Related Services (Glassmorphic) -- */
.svc-related {
  padding: 60px 0 var(--section-pad);
  position: relative;
  overflow: hidden;
}
.svc-related__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.06;
  filter: grayscale(0.5) blur(2px);
  z-index: 0;
  pointer-events: none;
}
.svc-related__inner { position: relative; z-index: 1; }

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

.svc-related__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
}

.svc-related__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.svc-related__card {
  background: rgba(20,20,20,0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px;
  padding: 2rem;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  color: var(--white);
}

.svc-related__card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
  opacity: 0.25;
  transition: opacity var(--transition);
}

.svc-related__card:hover {
  border-color: rgba(196,30,30,0.2);
  transform: translateY(-8px);
  box-shadow: 0 24px 48px rgba(0,0,0,0.4), 0 0 30px rgba(196,30,30,0.08);
  color: var(--white);
}

.svc-related__card:hover::before { opacity: 1; }

.svc-related__card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.svc-related__card p {
  color: var(--white-muted);
  font-size: 0.9rem;
  line-height: 1.7;
  flex: 1;
}

.svc-related__card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.04);
}

.svc-related__card-price {
  font-size: 0.85rem;
  color: var(--white-dim);
  font-weight: 500;
}

.svc-related__card-arrow {
  width: 34px;
  height: 34px;
  background: rgba(196,30,30,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  transition: all 0.3s ease;
  box-shadow: 0 0 10px rgba(196,30,30,0.15);
}

.svc-related__card:hover .svc-related__card-arrow {
  background: var(--red);
  color: white;
  box-shadow: 0 0 20px rgba(196,30,30,0.4);
}

.svc-related__card-arrow svg { width: 14px; height: 14px; }

@media (max-width: 900px) {
  .svc-body__grid { grid-template-columns: 1fr; }
  .svc-sidebar { position: static; }
}

/* ---------- Service Page — Image Sections ---------- */
.svc-feature-img {
  width: 100%;
  margin: 3rem 0;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}

.svc-feature-img img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
  filter: brightness(0.85) contrast(1.05);
  transition: all 0.6s ease;
}

.svc-feature-img:hover img {
  filter: brightness(1) contrast(1.05);
  transform: scale(1.02);
}

.svc-feature-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 50%, rgba(10,10,10,0.6) 100%),
    radial-gradient(ellipse at center, transparent 40%, rgba(10,10,10,0.3) 100%);
  pointer-events: none;
}

/* Full-width image banner between sections */
.svc-img-banner {
  width: 100%;
  padding: 0;
  position: relative;
  overflow: hidden;
}

.svc-img-banner__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.svc-img-banner__item {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 16/10;
}

.svc-img-banner__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  display: block;
  filter: brightness(0.9) contrast(1.05);
  transition: all 0.6s ease;
}

.svc-img-banner__item:hover img {
  transform: scale(1.04);
  filter: brightness(1) contrast(1.05);
}

.svc-img-banner__item::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 40%, rgba(10,10,10,0.6) 100%),
    radial-gradient(ellipse at center, transparent 50%, rgba(10,10,10,0.2) 100%);
  pointer-events: none;
}

.svc-img-banner__caption {
  position: absolute;
  bottom: 1rem;
  left: 1.25rem;
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 500;
  z-index: 2;
  text-shadow: 0 1px 4px rgba(0,0,0,0.6);
}

/* Single hero-width image */
.svc-hero-img {
  width: 100%;
  max-height: 500px;
  overflow: hidden;
  position: relative;
}

.svc-hero-img img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
  filter: contrast(1.05) brightness(0.85);
}

.svc-hero-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, var(--black) 0%, transparent 20%, transparent 80%, var(--black) 100%),
    radial-gradient(ellipse at center, transparent 40%, rgba(10,10,10,0.3) 100%);
  z-index: 1;
  pointer-events: none;
}

/* Hero background image */
.svc-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 0;
  background-repeat: no-repeat;
  z-index: 0;
  filter: brightness(0.7) contrast(1.1);
}
.svc-hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10,10,10,0.1) 0%, rgba(10,10,10,0.3) 60%, rgba(10,10,10,0.85) 100%),
    radial-gradient(ellipse at 20% 80%, rgba(196,30,30,0.08) 0%, transparent 50%);
}

/* Before & After Video Section */
.svc-video {
  padding: var(--section-pad) 0;
  position: relative;
}
.svc-video::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(196,30,30,0.3), transparent);
}
.svc-video__inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
}
.svc-video__embed {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  border-radius: 14px;
  overflow: hidden;
  background: rgba(20,20,20,0.6);
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 30px rgba(196,30,30,0.06);
}
.svc-video__embed iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
}

/* Sidebar review card */
.svc-sidebar__review {
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.svc-sidebar__review:last-of-type { border-bottom: none; }
.svc-sidebar__review-stars {
  color: #f5a623;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}
.svc-sidebar__review-text {
  color: var(--white-muted);
  font-size: 0.85rem;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 0.4rem;
}
.svc-sidebar__review-author {
  color: var(--white-dim);
  font-size: 0.8rem;
  font-weight: 600;
}

/* Sidebar direction buttons */
.svc-sidebar__directions {
  display: flex;
  gap: 0.5rem;
}
.svc-sidebar__dir-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.6rem 0.75rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  color: var(--white-muted);
  font-size: 0.78rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}
.svc-sidebar__dir-btn:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.15);
  color: #fff;
  transform: translateY(-1px);
}

/* Sidebar trainer flip cards */
.svc-sidebar__trainers {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.svc-trainer-flip {
  perspective: 800px;
  height: 100px;
  cursor: pointer;
}
.svc-trainer-flip__inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  transform-style: preserve-3d;
}
.svc-trainer-flip:hover .svc-trainer-flip__inner {
  transform: rotateY(180deg);
}
.svc-trainer-flip__front,
.svc-trainer-flip__back {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.06);
  background: rgba(20,20,20,0.6);
  display: flex;
  align-items: center;
  padding: 0.75rem;
  gap: 0.75rem;
}
.svc-trainer-flip__back {
  transform: rotateY(180deg);
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 0.75rem 1rem;
  background: rgba(196,30,30,0.08);
  border-color: rgba(196,30,30,0.15);
}
.svc-trainer-flip__photo {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(196,30,30,0.3);
  flex-shrink: 0;
}
.svc-trainer-flip__name {
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 0.15rem;
}
.svc-trainer-flip__role {
  color: var(--red);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.svc-trainer-flip__back-name {
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 0.15rem;
}
.svc-trainer-flip__back-role {
  color: var(--red-bright);
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.4rem;
}
.svc-trainer-flip__specs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
}
.svc-trainer-flip__spec {
  font-size: 0.65rem;
  color: var(--white-muted);
  background: rgba(255,255,255,0.06);
  padding: 0.2rem 0.5rem;
  border-radius: 20px;
  white-space: nowrap;
}
.svc-trainer-flip__link {
  color: var(--red);
  font-size: 0.72rem;
  font-weight: 600;
  text-decoration: none;
  margin-top: 0.3rem;
  transition: color 0.2s;
}
.svc-trainer-flip__link:hover { color: #fff; }

@media (max-width: 768px) {
  .svc-img-banner__inner {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 0 1rem;
  }
  .svc-feature-img img {
    height: 250px;
  }
  .svc-hero-img, .svc-hero-img img {
    height: 300px;
    max-height: 300px;
  }
}

/* --- Email obfuscation --- */
.email-masked {
  cursor: pointer;
  transition: color 0.2s ease;
}
.email-masked:hover {
  color: var(--red) !important;
}
