/* ══════════════════════════════════════════
   ROOT & RESET
   ══════════════════════════════════════════ */
:root {
  --white: #FFFFFF;
  --gray-50: #F8F9FA;
  --gray-100: #F1F3F5;
  --gray-200: #E9ECEF;
  --gray-300: #DEE2E6;
  --gray-400: #CED4DA;
  --gray-500: #7C838A;
  --gray-600: #5F666D;
  --gray-700: #495057;
  --gray-800: #343A40;
  --gray-900: #212529;
  --black: #0A0A0B;
  --teal: #2ABFBF;
  --teal-dark: #1E9E9E;
  --teal-deep: #177A7A;
  --teal-light: #E8F8F8;
  --teal-glow: rgba(42,191,191,0.12);
  --gold: #C9A96E;
  --gold-light: #F5EFE0;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --radius: 20px;
  --radius-sm: 12px;
  --radius-xs: 8px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--sans); color: var(--gray-800);
  background: var(--white); line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: var(--sans); }

.container { max-width: 1200px; margin: 0 auto; padding: 0 32px; }

/* ══════════════════════════════════════════
   ANIMATIONS
   ══════════════════════════════════════════ */
.reveal {
  opacity: 0; transform: translateY(40px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal.d1 { transition-delay: 0.1s; }
.reveal.d2 { transition-delay: 0.2s; }
.reveal.d3 { transition-delay: 0.3s; }
.reveal.d4 { transition-delay: 0.4s; }

/* ══════════════════════════════════════════
   HEADER
   ══════════════════════════════════════════ */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: 80px; display: flex; align-items: center;
  transition: all 0.4s var(--ease);
}
.header::before {
  content: ''; position: absolute; inset: 0;
  background: rgba(255,255,255,0); backdrop-filter: blur(0px);
  transition: all 0.4s var(--ease); border-bottom: 1px solid transparent;
}
.header.sticky::before {
  background: rgba(255,255,255,0.92); backdrop-filter: blur(24px);
  border-bottom-color: var(--gray-200);
}
.header-inner {
  position: relative; z-index: 1;
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 32px;
  box-sizing: border-box;
}
.logo { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.logo img { height: 66px; width: auto; }
.logo-text {
  font-family: var(--sans); font-weight: 600; font-size: 1.1rem;
  letter-spacing: -0.02em; color: var(--white);
  transition: color 0.4s var(--ease);
}
.header.sticky .logo-text { color: var(--gray-900); }

.nav-links { display: flex; align-items: center; gap: 18px; }
.nav-links a {
  font-size: 0.88rem; font-weight: 500; color: rgba(255,255,255,0.75);
  transition: all 0.3s var(--ease); letter-spacing: 0.01em;
  position: relative;
}
.nav-links a:hover { color: var(--white); }
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; width: 0;
  height: 2px; background: var(--teal); border-radius: 2px;
  transition: width 0.3s var(--ease);
}
.nav-links a:hover::after { width: 100%; }
.header.sticky .nav-links a { color: var(--gray-600); }
.header.sticky .nav-links a:hover { color: var(--gray-900); }

.header-right { display: flex; align-items: center; gap: 10px; }

.lang-sw {
  display: flex; border-radius: 8px; overflow: hidden;
  border: 1px solid rgba(255,255,255,0.2);
  transition: border-color 0.4s var(--ease);
}
.header.sticky .lang-sw { border-color: var(--gray-300); }
.lang-sw button {
  padding: 6px 14px; font-size: 0.78rem; font-weight: 600;
  color: rgba(255,255,255,0.6); transition: all 0.3s var(--ease);
  letter-spacing: 0.04em;
}
.lang-sw button.active { background: var(--teal); color: var(--white); }
.header.sticky .lang-sw button { color: var(--gray-500); }
.header.sticky .lang-sw button.active { color: var(--white); }

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 22px; white-space: nowrap; border-radius: 60px; font-size: 0.88rem;
  font-weight: 600; letter-spacing: -0.01em;
  transition: all 0.35s var(--ease);
}
.btn svg {
  width: 14px;
  height: 13px;
  margin-top: 2px;
}
.btn-teal { background: var(--teal); color: var(--white); }
.btn-teal:hover {
  background: var(--teal-dark); transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(42,191,191,0.25);
}
.btn-dark { background: var(--gray-900); color: var(--white); }
.btn-dark:hover {
  background: var(--black); transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}
.btn-outline-white {
  border: 1.5px solid rgba(255,255,255,0.35); color: var(--white);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.6);
}
.btn-outline {
  border: 1.5px solid var(--gray-300); color: var(--gray-700);
}
.btn-outline:hover {
  border-color: var(--teal); color: var(--teal);
}
.btn-ghost { color: var(--teal); font-weight: 600; }
.btn-ghost:hover { color: var(--teal-dark); }
.btn-ghost svg { transition: transform 0.3s var(--ease); }
.btn-ghost:hover svg { transform: translateX(4px); }

.header-cta { display: block; }

/* Burger */
.burger { display: none; padding: 8px; }
.burger-lines { width: 22px; height: 16px; position: relative; }
.burger-lines span {
  position: absolute; left: 0; width: 100%; height: 2px;
  background: var(--white); border-radius: 2px;
  transition: all 0.3s var(--ease);
}
.header.sticky .burger-lines span { background: var(--gray-800); }
.burger-lines span:nth-child(1) { top: 0; }
.burger-lines span:nth-child(2) { top: 7px; }
.burger-lines span:nth-child(3) { top: 14px; }

/* Mobile nav */
.mobile-overlay {
  position: fixed; inset: 0; z-index: 99;
  background: rgba(255,255,255,0.97); backdrop-filter: blur(20px);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 28px; opacity: 0; pointer-events: none;
  transition: opacity 0.4s var(--ease);
}
.mobile-overlay.open { opacity: 1; pointer-events: auto; }
.mobile-overlay a {
  font-size: 1.4rem; font-weight: 600; color: var(--gray-800);
  transition: color 0.3s var(--ease);
}
.mobile-overlay a:hover { color: var(--teal); }

/* ══════════════════════════════════════════
   HERO
   ══════════════════════════════════════════ */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  overflow: hidden; padding: 120px 0 80px;
  background: var(--gray-900);
}
.hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #0d1b2a 0%, #1b3a4b 40%, #1a3340 70%, #0d1b2a 100%);
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 600px 400px at 75% 45%, rgba(42,191,191,0.08), transparent),
    radial-gradient(ellipse 400px 300px at 25% 70%, rgba(201,169,110,0.05), transparent);
}
.hero-noise {
  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: 256px;
}
.hero-grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.hero-content { max-width: 560px; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 18px 8px 10px;
  background: rgba(42,191,191,0.08); border: 1px solid rgba(42,191,191,0.15);
  border-radius: 60px; font-size: 0.82rem; font-weight: 500;
  color: rgba(255,255,255,0.7); margin-bottom: 28px;
}
.hero-eyebrow-dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--teal);
  box-shadow: 0 0 8px var(--teal);
  animation: dot-pulse 2s ease-in-out infinite;
}
@keyframes dot-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.hero h1 {
  font-family: var(--serif); font-size: clamp(2.6rem, 4.5vw, 3.8rem);
  font-weight: 500; color: var(--white); line-height: 1.1;
  margin-bottom: 24px; letter-spacing: -0.02em;
}
.hero h1 .accent {
  background: linear-gradient(135deg, var(--teal), #5DD6D6);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-desc {
  font-size: 1.05rem; color: rgba(255,255,255,0.7); line-height: 1.7;
  margin-bottom: 40px; max-width: 460px;
}
.hero-actions { display: flex; gap: 14px; margin-bottom: 56px; flex-wrap: wrap; }

/* Google rating badge */
.hero-rating {
  display: inline-flex; align-items: center; gap: 16px;
  padding: 16px 24px; border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
}
.hero-rating-stars { display: flex; gap: 3px; }
.hero-rating-stars svg { width: 18px; height: 18px; }
.hero-rating-info { display: flex; flex-direction: column; }
.hero-rating-score {
  font-size: 1.6rem; font-weight: 700; color: var(--white); line-height: 1;
  font-family: var(--sans);
}
.hero-rating-text { font-size: 0.75rem; color: rgba(255,255,255,0.4); margin-top: 2px; }
.hero-rating-g {
  width: 28px; height: 28px;
}

/* Hero right: image collage */
.hero-visual { position: relative; }
.hero-img-main {
  width: 100%; max-width: 480px; aspect-ratio: 4/5;
  border-radius: var(--radius); overflow: hidden;
  margin-left: auto;
  box-shadow: 0 32px 80px rgba(0,0,0,0.3);
  border: 1px solid rgba(255,255,255,0.06);
}
.hero-img-main img { width: 100%; height: 100%; object-fit: cover; }
.hero-slide {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  object-fit: cover; opacity: 0;
  transition: opacity 1.5s ease-in-out;
}
.hero-slide.active { opacity: 1; }
.hero-img-main { position: relative; }
.hero-float-card {
  position: absolute; padding: 14px 18px;
  background: rgba(255,255,255,0.95); backdrop-filter: blur(16px);
  border-radius: var(--radius-sm); box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  display: flex; align-items: center; gap: 12px;
  animation: float 6s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.hero-float-card.card-1 {
  bottom: 40px; left: -30px; animation-delay: 0s;
}
.hero-float-card.card-2 {
  top: 60px; right: -20px; animation-delay: 2s;
}
.hero-float-icon {
  width: 40px; height: 40px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; padding: 8px;
}
.hero-float-icon.teal-bg { background: var(--teal-light); }
.hero-float-icon.gold-bg { background: var(--gold-light); }
.hero-float-card .label { font-size: 0.72rem; color: var(--gray-500); }
.hero-float-card .value { font-size: 0.95rem; font-weight: 700; color: var(--gray-900); }

/* Stats strip */
.stats-strip {
  position: relative; z-index: 2;
  margin-top: -40px;
  max-width: 1200px; margin-left: auto; margin-right: auto;
  padding: 0 32px;
}
.stats-strip-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr);
  background: var(--white); border-radius: var(--radius);
  box-shadow: 0 16px 64px rgba(0,0,0,0.08);
  border: 1px solid var(--gray-200);
  overflow: hidden;
}
.stat-item {
  padding: 32px; text-align: center;
  border-right: 1px solid var(--gray-100);
  transition: background 0.3s var(--ease);
}
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: var(--gray-50); }
.stat-icon {
  width: 48px; height: 48px; margin: 0 auto 14px;
  border-radius: 14px; display: flex; align-items: center; justify-content: center;
}
.stat-icon.bg-teal { background: var(--teal-light); }
.stat-icon.bg-gold { background: var(--gold-light); }
.stat-icon svg { width: 24px; height: 24px; }
.stat-num {
  font-family: var(--serif); font-size: 1.8rem; font-weight: 600;
  color: var(--gray-900); line-height: 1;
}
.stat-label {
  font-size: 0.82rem; color: var(--gray-500); margin-top: 6px; font-weight: 500;
}

/* ══════════════════════════════════════════
   SECTION COMMONS
   ══════════════════════════════════════════ */
.section { padding: 110px 0; }
.section-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.75rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 2.5px; color: var(--teal); margin-bottom: 16px;
}
.section-eyebrow::before {
  content: ''; width: 24px; height: 2px; background: var(--teal);
  border-radius: 2px;
}
.section-title {
  font-family: var(--serif); font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 500; color: var(--gray-900); line-height: 1.15;
  letter-spacing: -0.02em; margin-bottom: 16px;
}
.section-desc {
  font-size: 1.05rem; color: var(--gray-600); max-width: 560px; line-height: 1.7;
}
.section-header { margin-bottom: 64px; }
.section-header.centered { text-align: center; }
.section-header.centered .section-desc { margin: 0 auto; }

/* ══════════════════════════════════════════
   ABOUT
   ══════════════════════════════════════════ */
.about { background: var(--white); }
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start;
}
.about-text { max-width: 520px; }
.about-text p {
  font-size: 1.05rem; color: var(--gray-600); line-height: 1.8;
  margin-bottom: 20px;
}
.about-text p strong { color: var(--gray-800); font-weight: 600; }
.about-features {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 40px;
}
.about-feat {
  padding: 24px; border-radius: var(--radius-sm);
  background: var(--gray-50); border: 1px solid var(--gray-100);
  transition: all 0.35s var(--ease);
}
.about-feat:hover {
  background: var(--white); border-color: var(--teal);
  box-shadow: 0 8px 32px var(--teal-glow);
  transform: translateY(-3px);
}
.about-feat-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--teal-light); display: flex; align-items: center;
  justify-content: center; margin-bottom: 14px;
}
.about-feat-icon svg { width: 22px; height: 22px; color: var(--teal-deep); }
.about-feat h4 {
  font-size: 0.95rem; font-weight: 600; color: var(--gray-900); margin-bottom: 6px;
}
.about-feat p { font-size: 0.85rem; color: var(--gray-500); line-height: 1.55; }

/* About right card */
.about-card {
  background: var(--gray-900); border-radius: var(--radius);
  padding: 44px; position: relative; overflow: hidden;
}
.about-card::before {
  content: ''; position: absolute; top: -60px; right: -60px;
  width: 240px; height: 240px; border-radius: 50%;
  background: radial-gradient(circle, rgba(42,191,191,0.12), transparent 70%);
}
.about-card-eyebrow {
  font-size: 0.72rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 2px; color: var(--teal); margin-bottom: 16px;
  position: relative;
}
.about-card h3 {
  font-family: var(--serif); font-size: 1.6rem; font-weight: 500;
  color: var(--white); line-height: 1.25; margin-bottom: 16px;
  position: relative;
}
.about-card p {
  color: rgba(255,255,255,0.7); line-height: 1.7; margin-bottom: 32px;
  position: relative; font-size: 0.95rem;
}
.about-card-stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  padding-top: 28px; border-top: 1px solid rgba(255,255,255,0.08);
  position: relative;
}
.about-card-stat { text-align: center; }
.about-card-stat .n {
  font-family: var(--serif); font-size: 2rem; font-weight: 600;
  color: var(--teal); line-height: 1;
}
.about-card-stat .l {
  font-size: 0.75rem; color: rgba(255,255,255,0.4); margin-top: 6px;
  font-weight: 500;
}

/* About extra block */
.about-extra {
  margin-top: 32px; padding: 28px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--gray-200);
  background: var(--white);
  display: flex; gap: 20px; align-items: start;
}
.about-extra-icon {
  width: 48px; height: 48px; border-radius: 14px;
  background: var(--gold-light); display: flex; align-items: center;
  justify-content: center; flex-shrink: 0;
}
.about-extra h4 {
  font-size: 0.95rem; font-weight: 600; margin-bottom: 6px; color: var(--gray-900);
}
.about-extra p { font-size: 0.85rem; color: var(--gray-500); line-height: 1.55; }

/* ══════════════════════════════════════════
   SERVICES
   ══════════════════════════════════════════ */
.services { background: var(--gray-50); }
.services-list { display: flex; flex-direction: column; gap: 32px; }
.service-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  background: var(--white); border-radius: var(--radius);
  overflow: hidden; border: 1px solid var(--gray-200);
  transition: all 0.4s var(--ease);
}
.service-row:hover {
  box-shadow: 0 16px 64px rgba(0,0,0,0.06);
  border-color: var(--gray-300);
}
.service-row:nth-child(even) .service-img { order: 2; }
.service-img {
  height: 100%; min-height: 380px; overflow: hidden; position: relative;
}
.service-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}
.service-row:hover .service-img img { transform: scale(1.04); }
.service-tag {
  position: absolute; top: 20px; left: 20px;
  padding: 8px 16px; border-radius: 8px;
  background: var(--white); font-size: 0.75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.5px; color: var(--teal-deep);
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
.service-body {
  padding: 48px; display: flex; flex-direction: column; justify-content: center;
}
.service-body h3 {
  font-family: var(--serif); font-size: 1.7rem; font-weight: 500;
  color: var(--gray-900); margin-bottom: 16px; line-height: 1.2;
}
.service-body > p {
  font-size: 0.95rem; color: var(--gray-600); line-height: 1.7;
  margin-bottom: 24px;
}
.service-checks { list-style: none; margin-bottom: 28px; }
.service-checks li {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 8px 0; font-size: 0.9rem; color: var(--gray-700);
}
.service-check-icon {
  width: 22px; height: 22px; border-radius: 6px; flex-shrink: 0;
  background: var(--teal-light); display: flex; align-items: center;
  justify-content: center; margin-top: 2px;
}
.service-check-icon svg { width: 12px; height: 12px; color: var(--teal-deep); }

/* ══════════════════════════════════════════
   PRICING / EXAMPLES (carousel)
   ══════════════════════════════════════════ */
.examples { background: var(--white); }
.carousel-wrapper { position: relative; overflow: hidden; }
.carousel-track {
  display: flex; gap: 24px; overflow-x: auto;
  scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch;
  padding: 8px 0 24px; scrollbar-width: none;
}
.carousel-track::-webkit-scrollbar { display: none; }

.example-card {
  min-width: 300px; flex-shrink: 0; scroll-snap-align: start;
  border-radius: var(--radius); overflow: hidden;
  background: var(--white); border: 1px solid var(--gray-200);
  transition: all 0.35s var(--ease);
}
.example-card:hover {
  border-color: var(--teal);
  box-shadow: 0 12px 40px var(--teal-glow);
  transform: translateY(-4px);
}
.example-card-img {
  height: 200px; background: var(--gray-100); overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.example-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s var(--ease-out);
}
.example-card:hover .example-card-img img { transform: scale(1.06); }
.example-card-img .card-badge {
  position: absolute; bottom: 12px; right: 12px;
  padding: 5px 12px; border-radius: 6px;
  background: var(--white); font-size: 0.72rem; font-weight: 700;
  color: var(--teal-deep); text-transform: uppercase; letter-spacing: 0.5px;
}
.example-card-body { padding: 24px; }
.example-card-body h4 {
  font-family: var(--serif); font-size: 1.2rem; font-weight: 600;
  color: var(--gray-900); margin-bottom: 4px;
}
.example-card-body .breed { font-size: 0.82rem; color: var(--teal); font-weight: 500; margin-bottom: 14px; }
.example-route {
  display: flex; align-items: center; gap: 10px; margin-bottom: 18px;
  font-size: 0.88rem; color: var(--gray-600);
}
.example-route svg { width: 16px; color: var(--teal); flex-shrink: 0; }
.example-price {
  padding-top: 16px; border-top: 1px solid var(--gray-100);
  display: flex; align-items: baseline; gap: 6px;
}
.example-price .from { font-size: 0.8rem; color: var(--gray-500); }
.example-price .amount {
  font-family: var(--serif); font-size: 1.5rem; font-weight: 600;
  color: var(--gray-900);
}

.carousel-controls {
  display: flex; gap: 12px; margin-top: 32px; justify-content: center;
}
.carousel-btn {
  width: 48px; height: 48px; border-radius: 50%;
  border: 1.5px solid var(--gray-300); display: flex;
  align-items: center; justify-content: center;
  transition: all 0.3s var(--ease); color: var(--gray-600);
}
.carousel-btn:hover {
  border-color: var(--teal); color: var(--teal);
  background: var(--teal-light);
}
.carousel-btn svg { width: 18px; height: 18px; }

/* ══════════════════════════════════════════
   REVIEWS
   ══════════════════════════════════════════ */
.reviews { background: var(--gray-50); }
.reviews-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
.review-item {
  border-radius: var(--radius-sm); overflow: hidden;
  position: relative; cursor: pointer;
  transition: all 0.35s var(--ease);
  background: var(--gray-200);
}
.review-item::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.4) 0%, transparent 50%);
  opacity: 0; transition: opacity 0.35s var(--ease);
}
.review-item:hover::after { opacity: 1; }
.review-item:hover { transform: scale(1.02); box-shadow: 0 12px 40px rgba(0,0,0,0.12); }
.review-item img { width: 100%; aspect-ratio: 3/4; object-fit: cover; }
.review-zoom {
  position: absolute; bottom: 12px; right: 12px; z-index: 2;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.9); display: flex;
  align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.3s var(--ease);
}
.review-item:hover .review-zoom { opacity: 1; }
.review-zoom svg { width: 16px; height: 16px; color: var(--gray-700); }

.review-caption {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 2;
  padding: 16px; opacity: 0; transform: translateY(8px);
  transition: all 0.35s var(--ease);
}
.review-item:hover .review-caption { opacity: 1; transform: translateY(0); }
.review-caption p {
  font-size: 0.78rem; color: var(--white); font-weight: 500; line-height: 1.4;
}

/* ══════════════════════════════════════════
   FAQ
   ══════════════════════════════════════════ */
.faq { background: var(--white); }
.faq-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; align-items: start; }
.faq-list { display: flex; flex-direction: column; gap: 8px; }
.faq-item {
  border: 1px solid var(--gray-200); border-radius: var(--radius-sm);
  overflow: hidden; transition: all 0.3s var(--ease);
}
.faq-item.open { border-color: var(--teal); box-shadow: 0 4px 20px var(--teal-glow); }
.faq-q {
  padding: 20px 24px; display: flex; align-items: center;
  justify-content: space-between; gap: 16px;
  font-size: 0.92rem; font-weight: 600; color: var(--gray-800);
  cursor: pointer; transition: color 0.3s var(--ease);
}
.faq-q:hover { color: var(--teal-deep); }
.faq-toggle {
  width: 28px; height: 28px; border-radius: 8px;
  background: var(--gray-100); display: flex; align-items: center;
  justify-content: center; flex-shrink: 0;
  transition: all 0.3s var(--ease);
}
.faq-item.open .faq-toggle { background: var(--teal); transform: rotate(45deg); }
.faq-toggle svg {
  width: 14px; height: 14px; color: var(--gray-600);
  transition: color 0.3s var(--ease);
}
.faq-item.open .faq-toggle svg { color: var(--white); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.5s var(--ease); }
.faq-a-inner {
  padding: 0 24px 20px; font-size: 0.9rem;
  color: var(--gray-600); line-height: 1.7;
}

/* ══════════════════════════════════════════
   CONTACT / FORM
   ══════════════════════════════════════════ */
.contact {
  background: linear-gradient(135deg, #0d1b2a 0%, #1b3a4b 50%, #142a36 100%);
  color: var(--white); position: relative; overflow: hidden;
}
.contact::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 500px 300px at 15% 85%, rgba(42,191,191,0.06), transparent),
    radial-gradient(ellipse 400px 300px at 85% 15%, rgba(201,169,110,0.04), transparent);
}
.contact-grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1.1fr; gap: 80px; align-items: start;
}
.contact-info h2 {
  font-family: var(--serif); font-size: clamp(2rem, 3vw, 2.6rem);
  font-weight: 500; line-height: 1.15; margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.contact-info > p {
  color: rgba(255,255,255,0.65); line-height: 1.7; margin-bottom: 40px;
  font-size: 1rem;
}
.contact-methods { display: flex; flex-direction: column; gap: 12px; }
.contact-method {
  display: flex; align-items: center; gap: 16px;
  padding: 18px 20px; border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  transition: all 0.3s var(--ease);
}
.contact-method:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(42,191,191,0.3);
  transform: translateX(4px);
}
.contact-method-icon {
  width: 44px; height: 44px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-method-icon.bg-teal { background: rgba(42,191,191,0.12); }
.contact-method-icon.bg-green { background: rgba(37,211,102,0.12); }
.contact-method-icon.bg-blue { background: rgba(0,136,204,0.12); }
.contact-method-icon.bg-pink { background: rgba(228,64,95,0.12); }
.contact-method-icon svg { width: 24px; height: 24px; }
.contact-method .cm-label { font-size: 0.75rem; color: rgba(255,255,255,0.35); }
.contact-method .cm-value { font-size: 0.95rem; font-weight: 600; color: var(--white); }

/* Form card */
.form-card {
  background: var(--white); border-radius: var(--radius);
  padding: 40px; color: var(--gray-800);
  box-shadow: 0 24px 80px rgba(0,0,0,0.2);
}
.form-card h3 {
  font-family: var(--serif); font-size: 1.5rem; font-weight: 500;
  text-align: center; margin-bottom: 8px; color: var(--gray-900);
}
.form-card .form-sub {
  text-align: center; font-size: 0.85rem; color: var(--gray-500);
  margin-bottom: 28px;
}
.pet-toggle {
  display: flex; gap: 8px; justify-content: center; margin-bottom: 24px;
}
.pet-toggle button {
  padding: 10px 24px; border-radius: 60px; font-size: 0.88rem;
  font-weight: 600; border: 1.5px solid var(--gray-300);
  color: var(--gray-600); transition: all 0.3s var(--ease);
}
.pet-toggle button.active {
  border-color: var(--teal); background: var(--teal-light); color: var(--teal-deep);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.form-row.full { grid-template-columns: 1fr; }
.f-group { display: flex; flex-direction: column; gap: 5px; }
.f-group label {
  font-size: 0.72rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.8px; color: var(--gray-500);
}
.f-group input, .f-group select, .f-group textarea {
  padding: 12px 16px; border-radius: var(--radius-xs);
  border: 1.5px solid var(--gray-200); background: var(--gray-50);
  font-family: var(--sans); font-size: 0.9rem; color: var(--gray-800);
  transition: all 0.3s var(--ease); outline: none;
}
.f-group input:focus, .f-group select:focus, .f-group textarea:focus {
  border-color: var(--teal); background: var(--white);
  box-shadow: 0 0 0 3px var(--teal-glow);
}
.f-group textarea { resize: vertical; min-height: 72px; }
.form-submit-btn {
  width: 100%; padding: 15px; border-radius: 60px; margin-top: 8px;
  background: var(--gray-900); color: var(--white);
  font-size: 0.95rem; font-weight: 600;
  transition: all 0.35s var(--ease);
}
.form-submit-btn:hover {
  background: var(--black); transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

/* ══════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════ */
.footer {
  background: var(--gray-900); color: rgba(255,255,255,0.5);
  padding: 64px 0 32px;
}
.footer-top {
  display: grid; grid-template-columns: 1.2fr 1fr 1fr 1fr; gap: 48px;
  padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-brand p {
  font-size: 0.88rem; color: rgba(255,255,255,0.4); line-height: 1.6;
  margin-top: 16px; max-width: 280px;
}
.footer-col h4 {
  font-size: 0.75rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 2px; color: rgba(255,255,255,0.25); margin-bottom: 20px;
}
.footer-col a {
  display: block; font-size: 0.88rem; color: rgba(255,255,255,0.5);
  padding: 5px 0; transition: color 0.3s var(--ease);
}
.footer-col a:hover { color: var(--teal); }
.footer-socials { display: flex; gap: 10px; margin-top: 20px; }
.footer-social {
  width: 40px; height: 40px; border-radius: 10px;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.06);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s var(--ease);
}
.footer-social:hover {
  background: var(--teal); border-color: var(--teal);
}
.footer-social svg { width: 18px; height: 18px; color: rgba(255,255,255,0.5); }
.footer-social:hover svg { color: var(--white); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 28px; font-size: 0.8rem;
}

/* ══════════════════════════════════════════
   LIGHTBOX
   ══════════════════════════════════════════ */
.lb {
  display: none; position: fixed; inset: 0; z-index: 200;
  background: rgba(0,0,0,0.92); backdrop-filter: blur(12px);
  align-items: center; justify-content: center;
}
.lb.open { display: flex; }
.lb img { max-width: 92vw; max-height: 88vh; object-fit: contain; border-radius: var(--radius-sm); }
.lb-close, .lb-prev, .lb-next {
  position: absolute; width: 48px; height: 48px; border-radius: 50%;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.1);
  color: var(--white); display: flex; align-items: center; justify-content: center;
  transition: all 0.3s var(--ease); font-size: 1.2rem;
}
.lb-close { top: 24px; right: 24px; }
.lb-prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 24px; top: 50%; transform: translateY(-50%); }
.lb-close:hover, .lb-prev:hover, .lb-next:hover {
  background: rgba(255,255,255,0.15);
}

/* ══════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-content { max-width: 100%; }
  .hero-desc { margin: 0 auto 40px; }
  .hero-actions { justify-content: center; }
  .hero-visual { display: none; }
  .hero-rating { margin: 0 auto; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-text { max-width: 100%; }
  .service-row { grid-template-columns: 1fr; }
  .service-img { min-height: 280px; }
  .service-row:nth-child(even) .service-img { order: 0; }
  .faq-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .reviews-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .section { padding: 72px 0; }
  .nav-links { display: none; }
  .burger { display: block; }
  .header-cta { display: none; }
  .stats-strip-inner { grid-template-columns: 1fr 1fr; }
  .stat-item:nth-child(2) { border-right: none; }
  .about-features { grid-template-columns: 1fr; }
  .service-body { padding: 28px; }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}
@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { justify-content: center; }
  .stats-strip { padding: 0 20px; }
  .example-card { min-width: 270px; }
}

/* ══════════════════════════════════════════
   UTILITY CLASSES
   ══════════════════════════════════════════ */
.centered-cta { text-align: center; margin-top: 40px; }
.faq-cta-wrap { margin-top: 28px; }
.section-eyebrow.gold { color: var(--gold); }
.section-eyebrow.gold::before { background: var(--gold); }
.footer-logo-img { filter: brightness(0) invert(1); }
.footer-logo-text { color: white; }
