/* ═══════════════════════════════════════════════════════════
   docpet.gr — Main Stylesheet
   ═══════════════════════════════════════════════════════════ */


/* ─── CSS VARIABLES ─────────────────────────────────────── */

:root {
  --c-bg:          #FAFAFA;
  --c-bg2:         #F8F8F8;
  --c-panel:       #FDF5E6;
  --c-linen:       #FAF0E6;
  --c-mint:        #F0FFFF;
  --c-separator:   #E5E4E2;
  --c-surface:     #F5F5F5;
  --c-blue:        #24A1BD;
  --c-blue-dark:   #1A8DAD;
  --c-text:        #1C1C1E;
  --c-text-mid:    #4A4A52;
  --c-text-soft:   #8E8E96;
  --c-tag-brd:     #E5E4E2;
  --radius-lg:     20px;
  --radius-pill:   50px;
  --shadow-sm:     0 2px 12px rgba(0, 0, 0, 0.06);
  --shadow-md:     0 8px 40px rgba(0, 0, 0, 0.09);
  --shadow-btn:    0 4px 18px rgba(36, 161, 189, 0.40);
}


/* ═══════════════════════════════════════════════════════════
   STICKY SEARCH BAR
   ═══════════════════════════════════════════════════════════ */

.sticky-search {
  position: fixed;
  /* Sits just below the navbar */
  top: 0;
  left: 0; right: 0;
  z-index: 97;
  background: rgba(250, 250, 250, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--c-separator);
  padding: 10px 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
  /* Hidden: shifted up by its own height + the nav height */
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
              opacity   0.30s ease;
}

.sticky-search.visible {
  /* Slide down to sit right below navbar */
  transform: translateY(68px);
  opacity: 1;
  pointer-events: all;
}

.sticky-search-inner {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  background: #FFFFFF;
  border: 1.5px solid var(--c-separator);
  border-radius: var(--radius-pill);
  padding: 6px 6px 6px 18px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.sticky-search-inner:focus-within {
  border-color: var(--c-blue);
  box-shadow: 0 0 0 3px rgba(36, 161, 189, 0.10);
}

.sticky-field {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.sticky-field svg { flex-shrink: 0; color: var(--c-text-soft); }

.sticky-field input {
  flex: 1;
  border: none;
  background: transparent;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--c-text);
  outline: none;
  min-width: 0;
}

.sticky-field input::placeholder {
  color: var(--c-text-soft);
  font-weight: 500;
}

.sticky-divider {
  width: 1px; height: 28px;
  background: var(--c-separator);
  flex-shrink: 0;
  margin: 0 14px;
}

.sticky-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--c-blue);
  color: #fff;
  border: none;
  border-radius: var(--radius-pill);
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.18s, transform 0.18s;
  box-shadow: 0 3px 12px rgba(36, 161, 189, 0.35);
}

.sticky-btn:hover {
  background: var(--c-blue-dark);
  transform: scale(1.03);
}

@media (max-width: 600px) {
  .sticky-search { display: none; }
}


/* ═══════════════════════════════════════════════════════════
   ANIMATED COUNTERS
   ═══════════════════════════════════════════════════════════ */

@keyframes countPop {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.10); color: var(--c-blue); }
  100% { transform: scale(1); }
}

.count-done {
  animation: countPop 0.4s ease;
}


/* ─── RESET ──────────────────────────────────────────────── */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Montserrat', sans-serif;
  background: var(--c-bg);
  color: var(--c-text);
  min-height: 100vh;
  overflow-x: hidden;
}


/* ═══════════════════════════════════════════════════════════
   NAVBAR
   ═══════════════════════════════════════════════════════════ */

nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(250, 250, 250, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--c-separator);
  height: 68px;
  display: flex;
  align-items: center;
  padding: 0 40px;
}

.nav-inner {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-icon {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--c-linen) 0%, var(--c-mint) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--c-separator);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
}

.logo-icon svg { width: 24px; height: 24px; }

.logo-text {
  font-size: 19px;
  font-weight: 800;
  color: var(--c-text);
  letter-spacing: -0.5px;
}

.logo-text span { color: var(--c-blue); }

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--c-text-mid);
  font-size: 14px;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: 10px;
  transition: background 0.18s, color 0.18s;
  letter-spacing: 0.1px;
}

.nav-links a:hover {
  background: var(--c-surface);
  color: var(--c-text);
}

/* Nav right cluster */
.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Language dropdown */
.lang-dropdown { position: relative; }

.lang-dropdown-btn {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 7px 14px;
  background: var(--c-surface);
  border: 1.5px solid var(--c-separator);
  border-radius: var(--radius-pill);
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--c-text-mid);
  cursor: pointer;
  transition: background 0.18s, box-shadow 0.18s;
}

.lang-dropdown-btn:hover {
  background: var(--c-linen);
  box-shadow: var(--shadow-sm);
}

.lang-dropdown-btn svg {
  transition: transform 0.22s ease;
  flex-shrink: 0;
  color: var(--c-text-soft);
}

.lang-dropdown.open .lang-dropdown-btn svg { transform: rotate(180deg); }

.lang-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: #FFFFFF;
  border: 1.5px solid var(--c-separator);
  border-radius: 14px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.10);
  min-width: 160px;
  overflow: hidden;
  z-index: 200;
}

.lang-dropdown.open .lang-dropdown-menu {
  display: block;
  animation: fadeUp 0.18s ease;
}

.lang-option {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 11px 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--c-text-mid);
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
  white-space: nowrap;
}

.lang-option:hover { background: var(--c-surface); color: var(--c-text); }

.lang-option.active {
  color: var(--c-blue);
  font-weight: 700;
  background: var(--c-mint);
}

.lang-option + .lang-option { border-top: 1px solid var(--c-separator); }

/* Profile button */
.profile-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px 6px 6px;
  background: var(--c-surface);
  border: 1.5px solid var(--c-separator);
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: box-shadow 0.18s, background 0.18s;
}

.profile-btn:hover {
  background: var(--c-linen);
  box-shadow: var(--shadow-sm);
}

.profile-avatar {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: linear-gradient(135deg, #C8E6F5, #BDE8D6);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.profile-avatar svg { width: 16px; height: 16px; color: #3A7A6A; }

.profile-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--c-text-mid);
  white-space: nowrap;
}

.chevron { color: var(--c-text-soft); }

/* Hamburger (mobile only) */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  border-radius: 8px;
  transition: background 0.18s;
}

.hamburger:hover { background: var(--c-surface); }

.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--c-text);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }


/* ═══════════════════════════════════════════════════════════
   STICKY SEARCH BAR
   ═══════════════════════════════════════════════════════════ */

.sticky-search {
  position: absolute;
  left: 50%;
  transform: translateX(-50%) translateY(-12px);
  width: min(680px, 90vw);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 10;
}

.sticky-search.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.sticky-search-inner {
  display: flex;
  align-items: center;
  background: #FFFFFF;
  border: 1.5px solid var(--c-separator);
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.10);
  padding: 6px 6px 6px 16px;
  gap: 0;
}

.sticky-field {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.sticky-field svg {
  flex-shrink: 0;
  color: var(--c-text-soft);
}

.sticky-field input {
  flex: 1;
  border: none;
  background: transparent;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--c-text);
  outline: none;
  min-width: 0;
}

.sticky-field input::placeholder {
  color: var(--c-text-soft);
  font-weight: 500;
}

.sticky-divider {
  width: 1px;
  height: 28px;
  background: var(--c-separator);
  flex-shrink: 0;
  margin: 0 12px;
}

.sticky-btn {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 9px 18px;
  background: var(--c-blue);
  border: none;
  border-radius: var(--radius-pill);
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.18s, box-shadow 0.18s, transform 0.18s;
  box-shadow: 0 2px 10px rgba(36, 161, 189, 0.35);
}

.sticky-btn:hover {
  background: var(--c-blue-dark);
  transform: scale(1.03);
  box-shadow: 0 4px 16px rgba(36, 161, 189, 0.45);
}

/* Hide sticky bar on mobile (hamburger takes over) */
@media (max-width: 900px) {
  .sticky-search { display: none; }
}


/* ═══════════════════════════════════════════════════════════
   ANIMATED COUNTERS
   ═══════════════════════════════════════════════════════════ */

/* Stat numbers animate via JS — add a subtle highlight when
   counting is triggered by adding a class in JS if desired.
   The transition below gives a smooth text pop on completion. */
.stat-num[data-target] {
  transition: color 0.3s ease;
}

.stat-num[data-target].counted {
  color: var(--c-blue);
}


/* ═══════════════════════════════════════════════════════════
   MOBILE DRAWER
   ═══════════════════════════════════════════════════════════ */

.mobile-drawer {
  display: none;
  position: fixed;
  top: 68px; left: 0; right: 0; bottom: 0;
  background: rgba(250, 250, 250, 0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 99;
  flex-direction: column;
  padding: 28px 24px;
  gap: 6px;
  border-top: 1px solid var(--c-separator);
  overflow-y: auto;
}

.mobile-drawer.open {
  display: flex;
  animation: slideDown 0.25s ease;
}

.mobile-drawer a {
  text-decoration: none;
  color: var(--c-text-mid);
  font-size: 16px;
  font-weight: 600;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1.5px solid transparent;
  transition: background 0.18s, border-color 0.18s;
}

.mobile-drawer a:hover {
  background: var(--c-surface);
  border-color: var(--c-separator);
}

.mobile-drawer-divider {
  height: 1px;
  background: var(--c-separator);
  margin: 8px 0;
}

.mobile-drawer .profile-btn {
  width: 100%;
  justify-content: center;
  margin-top: 8px;
}


/* ═══════════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════════ */

.hero {
  min-height: 100vh;
  padding-top: 68px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: var(--c-bg);
}

.dot-grid {
  position: absolute;
  inset: 0; z-index: 0;
  background-image: radial-gradient(circle, #D8D8D8 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: 0.35;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.55;
}

.blob-1 {
  width: 700px; height: 700px;
  background: radial-gradient(circle, #F0FFFF 0%, transparent 70%);
  top: -100px; right: -150px;
}

.blob-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, #FDF5E6 0%, transparent 70%);
  bottom: 50px; left: -100px;
}

.blob-3 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, #FAF0E6 0%, transparent 70%);
  top: 55%; right: 10%;
}

.hero-illustration {
  position: absolute;
  right: 6%; bottom: 0;
  width: 380px;
  opacity: 0.92;
  z-index: 1;
  animation: float 6s ease-in-out infinite;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  width: 100%;
  padding: 60px 24px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* Trust badge */
.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--c-surface);
  border: 1.5px solid var(--c-separator);
  border-radius: var(--radius-pill);
  padding: 6px 16px 6px 8px;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--c-text-mid);
  margin-bottom: 28px;
  letter-spacing: 0.2px;
}

.trust-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #4CAF89;
  box-shadow: 0 0 0 3px rgba(76, 175, 137, 0.2);
  animation: pulse 2s infinite;
}

.hero-title {
  font-size: clamp(34px, 5.5vw, 56px);
  font-weight: 800;
  line-height: 1.12;
  color: var(--c-text);
  margin-bottom: 16px;
  letter-spacing: -1px;
}

.hero-title em {
  font-style: italic;
  color: var(--c-blue);
  font-weight: 700;
}

.hero-sub {
  font-size: 16.5px;
  font-weight: 500;
  color: var(--c-text-soft);
  margin-bottom: 40px;
  line-height: 1.6;
  max-width: 520px;
}


/* ═══════════════════════════════════════════════════════════
   SEARCH CARD
   ═══════════════════════════════════════════════════════════ */

.search-card {
  width: 100%;
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--c-separator);
}

.search-tabs {
  display: flex;
  gap: 8px;
  padding: 16px 16px 0;
}

.tab-btn {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 9px 18px;
  border-radius: var(--radius-pill);
  border: 1.5px solid transparent;
  font-family: 'Montserrat', sans-serif;
  font-size: 13.5px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
}

.tab-btn svg { width: 15px; height: 15px; flex-shrink: 0; }

.tab-btn.active {
  background: var(--c-linen);
  border-color: #DDD3C4;
  color: var(--c-text);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.tab-btn.inactive {
  background: transparent;
  border-color: var(--c-separator);
  color: var(--c-text-soft);
}

.tab-btn.inactive:hover {
  background: var(--c-surface);
  color: var(--c-text-mid);
}

.search-bar {
  display: flex;
  align-items: center;
  padding: 14px;
}

.search-field {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: var(--c-bg2);
  border-radius: 14px;
  border: 1.5px solid var(--c-separator);
  transition: border-color 0.2s, box-shadow 0.2s;
  cursor: text;
  min-width: 0;
}

.search-field:hover { border-color: #C8C7C4; }

.search-field:focus-within {
  border-color: var(--c-blue);
  box-shadow: 0 0 0 3px rgba(36, 161, 189, 0.10);
  background: #FFFFFF;
}

.search-field svg {
  width: 18px; height: 18px;
  flex-shrink: 0;
  color: var(--c-text-soft);
}

.search-field input {
  flex: 1;
  border: none;
  background: transparent;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--c-text);
  outline: none;
  min-width: 0;
}

.search-field input::placeholder {
  color: var(--c-text-soft);
  font-weight: 500;
}

.search-divider {
  width: 1px; height: 44px;
  background: var(--c-separator);
  flex-shrink: 0;
  margin: 0 10px;
}

.search-btn {
  width: 54px; height: 54px;
  border-radius: 50%;
  background: var(--c-blue);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 10px;
  flex-shrink: 0;
  box-shadow: var(--shadow-btn);
  transition: transform 0.2s, background 0.2s, box-shadow 0.2s;
}

.search-btn:hover {
  background: var(--c-blue-dark);
  transform: scale(1.06);
  box-shadow: 0 6px 24px rgba(36, 161, 189, 0.50);
}

.search-btn:active { transform: scale(0.97); }

.search-btn svg { width: 22px; height: 22px; color: #fff; }

.freq-searches {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  border-top: 1px solid var(--c-separator);
  padding: 14px 28px 22px;
  margin: 0 14px;
}

.freq-label {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--c-text-soft);
  white-space: nowrap;
}

.freq-tag {
  display: inline-flex;
  align-items: center;
  padding: 5px 13px;
  background: var(--c-surface);
  border: 1.5px solid var(--c-tag-brd);
  border-radius: var(--radius-pill);
  font-size: 12.5px;
  font-weight: 700;
  color: var(--c-text-mid);
  cursor: pointer;
  text-decoration: none;
  transition: background 0.18s, border-color 0.18s, color 0.18s;
}

.freq-tag:hover {
  background: var(--c-linen);
  border-color: #DDD3C4;
  color: var(--c-text);
}


/* ═══════════════════════════════════════════════════════════
   STATS
   ═══════════════════════════════════════════════════════════ */

.stats-row {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 32px;
  margin-top: 36px;
  padding: 0 24px;
  justify-content: center;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
}

.stat-num {
  font-size: 26px;
  font-weight: 800;
  color: var(--c-text);
  letter-spacing: -0.5px;
}

.stat-label {
  font-size: 11.5px;
  font-weight: 700;
  color: var(--c-text-soft);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  text-align: center;
}

.stat-sep {
  width: 1px;
  background: var(--c-separator);
  align-self: stretch;
  margin: 6px 0;
}


/* ═══════════════════════════════════════════════════════════
   SPECIALTIES
   ═══════════════════════════════════════════════════════════ */

.specialties {
  position: relative;
  z-index: 2;
  max-width: 820px;
  width: 100%;
  padding: 0 24px;
  margin-top: 44px;
}

.spec-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--c-text-soft);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 14px;
  text-align: center;
}

.spec-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.spec-chip {
  padding: 10px 18px;
  background: #FFFFFF;
  border: 1.5px solid var(--c-separator);
  border-radius: 14px;
  font-size: 13px;
  font-weight: 700;
  color: var(--c-text-mid);
  cursor: pointer;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.04);
  transition: all 0.2s;
  text-decoration: none;
}

.spec-chip:hover {
  background: var(--c-mint);
  border-color: #C2E0E0;
  box-shadow: var(--shadow-sm);
  color: var(--c-text);
  transform: translateY(-1px);
}


/* ═══════════════════════════════════════════════════════════
   FEATURED VETS
   ═══════════════════════════════════════════════════════════ */

.vets-section {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  width: 100%;
  padding: 80px 24px 40px;
}

.vets-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 36px;
  flex-wrap: wrap;
  gap: 16px;
}

.vets-see-all {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--c-blue);
  text-decoration: none;
  padding: 8px 16px;
  border: 1.5px solid var(--c-blue);
  border-radius: var(--radius-pill);
  transition: background 0.18s, color 0.18s;
  white-space: nowrap;
  align-self: center;
}

.vets-see-all:hover {
  background: var(--c-blue);
  color: #fff;
}

/* Grid */
.vets-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* Card */
.vet-card {
  background: #FFFFFF;
  border: 1.5px solid var(--c-separator);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  position: relative;
}

.vet-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.10);
}

/* Featured card accent */
.vet-card-featured {
  border-color: var(--c-blue);
  box-shadow: 0 4px 20px rgba(36, 161, 189, 0.12);
}

.vet-featured-badge {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--c-blue);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.3px;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  z-index: 2;
}

/* Card top — avatar area */
.vet-card-top {
  position: relative;
  padding: 28px 24px 16px;
  display: flex;
  justify-content: center;
}

.vet-avatar {
  width: 80px; height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid #fff;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.10);
}

.vet-avatar svg {
  width: 48px; height: 48px;
}

/* Availability badges */
.vet-badge-available,
.vet-badge-busy {
  position: absolute;
  bottom: 10px; right: 16px;
  font-size: 10.5px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
}

.vet-badge-available {
  background: #E6F8F0;
  color: #2A8A5A;
  border: 1px solid #B8E8D0;
}

.vet-badge-busy {
  background: #FEF3E5;
  color: #C07020;
  border: 1px solid #F5D8A8;
}

/* Card body */
.vet-card-body {
  padding: 0 20px 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.vet-name {
  font-size: 15px;
  font-weight: 800;
  color: var(--c-text);
  line-height: 1.3;
}

.vet-specialty {
  font-size: 12px;
  font-weight: 600;
  color: var(--c-blue);
  letter-spacing: 0.1px;
}

.vet-location {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  font-weight: 600;
  color: var(--c-text-soft);
  margin-top: 2px;
}

.vet-location svg { flex-shrink: 0; }

.vet-rating {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 4px;
}

.vet-stars {
  font-size: 12px;
  color: #F5A623;
  letter-spacing: 1px;
}

.vet-rating-num {
  font-size: 13px;
  font-weight: 800;
  color: var(--c-text);
}

.vet-reviews {
  font-size: 11.5px;
  font-weight: 600;
  color: var(--c-text-soft);
}

.vet-experience {
  font-size: 11.5px;
  font-weight: 700;
  color: var(--c-text-soft);
  padding: 4px 10px;
  background: var(--c-surface);
  border-radius: var(--radius-pill);
  display: inline-flex;
  align-self: flex-start;
  margin-top: 4px;
}

/* Slots */
.vet-slots {
  padding: 14px 20px;
  border-top: 1px solid var(--c-separator);
}

.vet-slots-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--c-text-soft);
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-bottom: 8px;
}

.vet-slots-row {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.slot-btn {
  padding: 6px 10px;
  border-radius: 8px;
  border: 1.5px solid var(--c-separator);
  background: var(--c-surface);
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: var(--c-text-mid);
  cursor: pointer;
  transition: all 0.18s;
}

.slot-btn:hover {
  border-color: var(--c-blue);
  color: var(--c-blue);
  background: var(--c-mint);
}

.slot-btn-primary {
  background: var(--c-blue);
  border-color: var(--c-blue);
  color: #fff;
}

.slot-btn-primary:hover {
  background: var(--c-blue-dark);
  border-color: var(--c-blue-dark);
  color: #fff;
}

/* Book button */
.vet-book-btn {
  display: block;
  margin: 0 20px 20px;
  padding: 12px;
  background: var(--c-bg2);
  border: 1.5px solid var(--c-separator);
  border-radius: 12px;
  text-align: center;
  font-size: 13px;
  font-weight: 800;
  color: var(--c-text-mid);
  text-decoration: none;
  transition: all 0.2s;
  letter-spacing: 0.2px;
}

.vet-book-btn:hover {
  background: var(--c-blue);
  border-color: var(--c-blue);
  color: #fff;
  box-shadow: 0 4px 14px rgba(36, 161, 189, 0.35);
}

.vet-card-featured .vet-book-btn {
  background: var(--c-blue);
  border-color: var(--c-blue);
  color: #fff;
  box-shadow: 0 4px 14px rgba(36, 161, 189, 0.30);
}

.vet-card-featured .vet-book-btn:hover {
  background: var(--c-blue-dark);
  border-color: var(--c-blue-dark);
}

/* Responsive vets */
@media (max-width: 1100px) {
  .vets-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .vets-section { padding: 48px 16px 24px; }
  .vets-grid    { grid-template-columns: 1fr; gap: 14px; }
  .vets-header  { flex-direction: column; align-items: flex-start; gap: 12px; }
}


/* ═══════════════════════════════════════════════════════════
   HOW IT WORKS
   ═══════════════════════════════════════════════════════════ */

.how-section {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  width: 100%;
  padding: 80px 24px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section-label {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--c-blue);
  margin-bottom: 12px;
}

.section-title {
  font-size: 36px;
  font-weight: 800;
  text-align: center;
  color: var(--c-text);
  margin-bottom: 48px;
  letter-spacing: -0.5px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  width: 100%;
}

.step-card {
  background: #FFFFFF;
  border: 1.5px solid var(--c-separator);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.04);
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
  overflow: hidden;
}

.step-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  border-radius: 2px 2px 0 0;
}

.step-card:nth-child(1)::before { background: linear-gradient(90deg, #24A1BD, #5BBDCE); }
.step-card:nth-child(2)::before { background: linear-gradient(90deg, #4CAF89, #6DC9A8); }
.step-card:nth-child(3)::before { background: linear-gradient(90deg, #F0A050, #F5C070); }

.step-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.step-icon-wrap {
  width: 48px; height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
}

.step-card:nth-child(1) .step-icon-wrap { background: #E0F4F8; }
.step-card:nth-child(2) .step-icon-wrap { background: #E8F7F2; }
.step-card:nth-child(3) .step-icon-wrap { background: #FEF3E5; }

.step-icon-wrap svg { width: 24px; height: 24px; }

.step-title {
  font-size: 16px;
  font-weight: 800;
  color: var(--c-text);
  line-height: 1.3;
}

.step-desc {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--c-text-soft);
  line-height: 1.6;
}


/* ═══════════════════════════════════════════════════════════
   FOR VETERINARIANS SECTION
   ═══════════════════════════════════════════════════════════ */

.forvets-section {
  position: relative;
  width: 100%;
  background: var(--c-bg2);
  border-top: 1px solid var(--c-separator);
  border-bottom: 1px solid var(--c-separator);
  overflow: hidden;
  padding: 90px 40px;
}

/* Background blobs */
.forvets-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.forvets-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.5;
}

.forvets-blob-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, #F0FFFF 0%, transparent 70%);
  top: -100px; left: -150px;
}

.forvets-blob-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, #FDF5E6 0%, transparent 70%);
  bottom: -80px; right: -100px;
}

/* Two-column layout */
.forvets-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 64px;
  align-items: start;
}

/* ── LEFT COPY ─────────────────────────────────────────── */

.forvets-eyebrow {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--c-blue);
  margin-bottom: 14px;
}

.forvets-title {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  color: var(--c-text);
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 18px;
}

.forvets-title em {
  font-style: italic;
  color: var(--c-blue);
  font-weight: 700;
}

.forvets-sub {
  font-size: 15.5px;
  font-weight: 500;
  color: var(--c-text-soft);
  line-height: 1.65;
  max-width: 500px;
  margin-bottom: 36px;
}

/* Perks list */
.forvets-perks {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}

.forvets-perk {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.forvets-perk-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.forvets-perk-title {
  font-size: 14px;
  font-weight: 800;
  color: var(--c-text);
  margin-bottom: 3px;
}

.forvets-perk-desc {
  font-size: 13px;
  font-weight: 500;
  color: var(--c-text-soft);
  line-height: 1.55;
}

/* CTA buttons */
.forvets-cta-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.forvets-cta-primary {
  display: inline-flex;
  align-items: center;
  padding: 14px 28px;
  background: var(--c-blue);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  border-radius: var(--radius-pill);
  text-decoration: none;
  box-shadow: 0 4px 18px rgba(36, 161, 189, 0.38);
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  letter-spacing: 0.2px;
}

.forvets-cta-primary:hover {
  background: var(--c-blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(36, 161, 189, 0.45);
}

.forvets-cta-secondary {
  font-size: 14px;
  font-weight: 700;
  color: var(--c-text-mid);
  text-decoration: none;
  transition: color 0.18s;
}

.forvets-cta-secondary:hover { color: var(--c-blue); }

/* ── RIGHT PANEL ───────────────────────────────────────── */

.forvets-panel {
  background: #FFFFFF;
  border: 1.5px solid var(--c-separator);
  border-radius: 24px;
  padding: 32px;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.forvets-panel-header {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  color: var(--c-text-soft);
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.forvets-panel-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #4CAF89;
  box-shadow: 0 0 0 3px rgba(76, 175, 137, 0.2);
  animation: pulse 2s infinite;
  flex-shrink: 0;
}

/* Stats 2×2 grid */
.forvets-stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.forvets-stat {
  background: var(--c-surface);
  border: 1px solid var(--c-separator);
  border-radius: 14px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.forvets-stat-num {
  font-size: 22px;
  font-weight: 800;
  color: var(--c-text);
  letter-spacing: -0.5px;
}

.forvets-stat-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--c-text-soft);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.4;
}

.forvets-divider {
  height: 1px;
  background: var(--c-separator);
}

/* Testimonial */
.forvets-testimonial {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.forvets-quote {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--c-text-mid);
  line-height: 1.65;
  font-style: italic;
  position: relative;
  padding-left: 18px;
}

.forvets-quote::before {
  content: '"';
  position: absolute;
  left: 0; top: -4px;
  font-size: 32px;
  color: var(--c-blue);
  font-style: normal;
  line-height: 1;
  opacity: 0.5;
}

.forvets-testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.forvets-author-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 2px solid #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.forvets-author-name {
  font-size: 13px;
  font-weight: 800;
  color: var(--c-text);
}

.forvets-author-role {
  font-size: 11.5px;
  font-weight: 600;
  color: var(--c-text-soft);
  margin-top: 2px;
}

/* Trust logos */
.forvets-trust-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--c-text-soft);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: -8px;
}

.forvets-trust-logos {
  display: flex;
  gap: 10px;
}

.forvets-trust-logo {
  flex: 1;
  background: var(--c-surface);
  border: 1px solid var(--c-separator);
  border-radius: 12px;
  padding: 10px 8px;
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  color: var(--c-text-mid);
  line-height: 1.5;
}

/* ── RESPONSIVE ─────────────────────────────────────────── */

@media (max-width: 1024px) {
  .forvets-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .forvets-panel { max-width: 560px; }
}

@media (max-width: 600px) {
  .forvets-section { padding: 60px 20px; }
  .forvets-stat-grid { grid-template-columns: 1fr 1fr; }
  .forvets-cta-row { flex-direction: column; align-items: flex-start; }
  .forvets-cta-primary { width: 100%; justify-content: center; }
}


/* ═══════════════════════════════════════════════════════════
   FOR VETS SECTION
   ═══════════════════════════════════════════════════════════ */

.forvets-section {
  position: relative;
  overflow: hidden;
  background: var(--c-bg2);
  border-top: 1px solid var(--c-separator);
  border-bottom: 1px solid var(--c-separator);
}

/* Background blobs */
.forvets-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.forvets-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.45;
}

.forvets-blob-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, #F0FFFF 0%, transparent 70%);
  top: -150px; left: -100px;
}

.forvets-blob-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, #FAF0E6 0%, transparent 70%);
  bottom: -100px; right: -80px;
}

/* Inner two-column layout */
.forvets-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 90px 40px;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 64px;
  align-items: start;
}

/* ─── LEFT COPY ──────────────────────────────────────────── */

.forvets-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--c-blue);
  margin-bottom: 16px;
}

.forvets-title {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 800;
  line-height: 1.18;
  color: var(--c-text);
  letter-spacing: -0.8px;
  margin-bottom: 18px;
}

.forvets-title em {
  font-style: italic;
  color: var(--c-blue);
  font-weight: 700;
}

.forvets-sub {
  font-size: 15.5px;
  font-weight: 500;
  color: var(--c-text-soft);
  line-height: 1.7;
  max-width: 500px;
  margin-bottom: 36px;
}

/* Perks list */
.forvets-perks {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}

.forvets-perk {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.forvets-perk-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.forvets-perk-title {
  font-size: 14px;
  font-weight: 800;
  color: var(--c-text);
  margin-bottom: 3px;
}

.forvets-perk-desc {
  font-size: 13px;
  font-weight: 500;
  color: var(--c-text-soft);
  line-height: 1.55;
}

/* CTA buttons */
.forvets-cta-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.forvets-cta-primary {
  display: inline-flex;
  align-items: center;
  padding: 14px 28px;
  background: var(--c-blue);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  border-radius: var(--radius-pill);
  text-decoration: none;
  box-shadow: 0 4px 18px rgba(36, 161, 189, 0.38);
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  letter-spacing: 0.2px;
}

.forvets-cta-primary:hover {
  background: var(--c-blue-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(36, 161, 189, 0.48);
}

.forvets-cta-secondary {
  font-size: 14px;
  font-weight: 700;
  color: var(--c-text-mid);
  text-decoration: none;
  transition: color 0.18s;
}

.forvets-cta-secondary:hover { color: var(--c-blue); }

/* ─── RIGHT PANEL ────────────────────────────────────────── */

.forvets-panel {
  background: #FFFFFF;
  border: 1.5px solid var(--c-separator);
  border-radius: 24px;
  padding: 32px 28px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.07);
  display: flex;
  flex-direction: column;
  gap: 0;
}

.forvets-panel-header {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  color: var(--c-text-soft);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 24px;
}

.forvets-panel-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #4CAF89;
  box-shadow: 0 0 0 3px rgba(76, 175, 137, 0.2);
  animation: pulse 2s infinite;
  flex-shrink: 0;
}

/* Stats 2x2 grid inside panel */
.forvets-stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 24px;
}

.forvets-stat {
  background: var(--c-surface);
  border: 1.5px solid var(--c-separator);
  border-radius: 14px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.forvets-stat-num {
  font-size: 22px;
  font-weight: 800;
  color: var(--c-text);
  letter-spacing: -0.5px;
}

.forvets-stat-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--c-text-soft);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.forvets-divider {
  height: 1px;
  background: var(--c-separator);
  margin: 20px 0;
}

/* Testimonial inside panel */
.forvets-testimonial { display: flex; flex-direction: column; gap: 16px; }

.forvets-quote {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--c-text-mid);
  line-height: 1.65;
  font-style: italic;
  position: relative;
  padding-left: 16px;
  border-left: 3px solid var(--c-blue);
}

.forvets-testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.forvets-author-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.10);
}

.forvets-author-name {
  font-size: 13px;
  font-weight: 800;
  color: var(--c-text);
}

.forvets-author-role {
  font-size: 11.5px;
  font-weight: 600;
  color: var(--c-text-soft);
}

/* Trust logos */
.forvets-trust-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--c-text-soft);
  margin-bottom: 12px;
}

.forvets-trust-logos {
  display: flex;
  gap: 10px;
}

.forvets-trust-logo {
  flex: 1;
  background: var(--c-surface);
  border: 1.5px solid var(--c-separator);
  border-radius: 12px;
  padding: 10px 8px;
  font-size: 10.5px;
  font-weight: 700;
  color: var(--c-text-mid);
  text-align: center;
  line-height: 1.5;
}

/* ─── RESPONSIVE ─────────────────────────────────────────── */

@media (max-width: 960px) {
  .forvets-inner {
    grid-template-columns: 1fr;
    padding: 60px 24px;
    gap: 40px;
  }

  .forvets-panel { max-width: 500px; }
}

@media (max-width: 600px) {
  .forvets-inner { padding: 48px 16px; }
  .forvets-title { font-size: 26px; }
  .forvets-sub   { font-size: 14px; }
  .forvets-cta-primary { width: 100%; justify-content: center; }
  .forvets-cta-row { flex-direction: column; align-items: stretch; }
  .forvets-cta-secondary { text-align: center; }
  .forvets-panel { padding: 24px 18px; }
  .forvets-stat-num { font-size: 18px; }
}


/* ═══════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════ */

.footer-teaser {
  width: 100%;
  background: var(--c-panel);
  border-top: 1px solid var(--c-separator);
  padding: 20px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-links { display: flex; gap: 24px; }

.footer-links a {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--c-text-soft);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--c-text-mid); }

.footer-copy {
  font-size: 12px;
  font-weight: 600;
  color: var(--c-text-soft);
}


/* ═══════════════════════════════════════════════════════════
   ANIMATIONS
   ═══════════════════════════════════════════════════════════ */

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-14px); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(76, 175, 137, 0.2); }
  50%       { box-shadow: 0 0 0 6px rgba(76, 175, 137, 0.1); }
}

.anim-1 { animation: fadeUp 0.6s 0.0s ease both; }
.anim-2 { animation: fadeUp 0.6s 0.1s ease both; }
.anim-3 { animation: fadeUp 0.6s 0.2s ease both; }
.anim-4 { animation: fadeUp 0.6s 0.3s ease both; }
.anim-5 { animation: fadeUp 0.6s 0.4s ease both; }
.anim-6 { animation: fadeUp 0.6s 0.5s ease both; }


/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — TABLET (≤ 900px)
   ═══════════════════════════════════════════════════════════ */

@media (max-width: 900px) {
  nav { padding: 0 24px; }

  .nav-links     { display: none; }
  .lang-dropdown { display: none; }
  .hamburger     { display: flex; }

  .hero-illustration { width: 260px; right: 2%; opacity: 0.65; }
  .hero-content  { padding: 48px 20px 32px; }

  .search-bar     { flex-wrap: wrap; gap: 10px; padding: 12px; }
  .search-field   { flex: 1 1 100%; }
  .search-divider { display: none; }
  .search-btn     { width: 100%; border-radius: 14px; height: 50px; margin-left: 0; }

  .stats-row { gap: 20px; flex-wrap: wrap; justify-content: center; }
  .stat-sep  { display: none; }

  .steps-grid    { grid-template-columns: 1fr; gap: 14px; }
  .how-section   { padding: 60px 20px 32px; }
  .section-title { font-size: 26px; }

  .footer-teaser { flex-direction: column; gap: 16px; text-align: center; padding: 24px 20px; }
  .footer-links  { flex-wrap: wrap; justify-content: center; gap: 16px; }
}


/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — MOBILE (≤ 600px)
   ═══════════════════════════════════════════════════════════ */

@media (max-width: 600px) {
  nav            { height: 60px; }
  .mobile-drawer { top: 60px; }
  .hero          { padding-top: 60px; }

  .hero-illustration { display: none; }
  .hero-content  { padding: 36px 16px 24px; }
  .hero-title    { font-size: 28px; letter-spacing: -0.5px; }
  .hero-sub      { font-size: 14px; }
  .trust-badge   { font-size: 11.5px; }

  .search-card  { border-radius: 16px; }
  .search-tabs  { padding: 12px 12px 0; gap: 6px; }
  .tab-btn      { font-size: 12.5px; padding: 8px 14px; }
  .search-bar   { padding: 10px; gap: 8px; }
  .search-field { padding: 12px 14px; }
  .search-field input { font-size: 13px; }

  .freq-searches { padding: 12px 12px 16px; gap: 6px; margin: 0 10px; }
  .freq-label    { font-size: 11.5px; }
  .freq-tag      { font-size: 11.5px; padding: 5px 11px; }

  .stats-row  { gap: 16px; margin-top: 24px; }
  .stat-num   { font-size: 20px; }
  .stat-label { font-size: 10px; }

  .specialties   { padding: 0 16px; margin-top: 32px; }
  .spec-chips    { gap: 8px; }
  .spec-chip     { font-size: 12px; padding: 8px 14px; }

  .how-section   { padding: 48px 16px 28px; }
  .section-title { font-size: 22px; margin-bottom: 28px; }
  .step-card     { padding: 24px 20px; }
  .step-title    { font-size: 14px; }
  .step-desc     { font-size: 12.5px; }

  .footer-links a { font-size: 12px; }
  .footer-copy    { font-size: 11px; }
}
