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

/* ---------- 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);
}

.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__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::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(255,255,255,0.05) 0%, transparent 70%);
}

.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 {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ---------- 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; }
