/* ============================================================
   ADR Directory · V3 Theme — The Modern Marketplace
   Phase 1: Foundation only (design tokens, fonts, utilities)
   Loaded AFTER adr-brand.css so it can override Atlas defaults.
   Build date: 2026-05-02
   ============================================================ */

/* --- Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=Instrument+Serif:ital@0;1&display=swap');

/* --- Design tokens --- */
:root {
  /* Surfaces */
  --v3-bg: #fafaf9;
  --v3-bg-2: #ffffff;
  --v3-bg-3: #f4f4f3;
  --v3-bg-dark: #0a0a0a;
  --v3-bg-dark-2: #131313;
  --v3-bg-dark-3: #1a1a1a;

  /* Ink */
  --v3-ink: #0a0a0a;
  --v3-ink-2: #1a1a1a;
  --v3-muted: #6b6b6b;
  --v3-muted-2: #9c9c9c;

  /* Lines */
  --v3-line: rgba(10, 10, 10, 0.08);
  --v3-line-2: rgba(10, 10, 10, 0.04);
  --v3-line-dark: rgba(255, 255, 255, 0.08);
  --v3-line-dark-strong: rgba(255, 255, 255, 0.16);

  /* Brand colours */
  --v3-primary: #5b3df5;
  --v3-primary-2: #7c5cf7;
  --v3-primary-glow: rgba(91, 61, 245, 0.15);
  --v3-pink: #ff5cb1;
  --v3-teal: #00d4b8;
  --v3-orange: #ff8a3d;
  --v3-green: #00c168;
  --v3-amber: #ffc83d;

  /* Gradients */
  --v3-grad-1: linear-gradient(135deg, #5b3df5 0%, #ff5cb1 100%);
  --v3-grad-2: linear-gradient(135deg, #00d4b8 0%, #5b3df5 100%);
  --v3-grad-3: linear-gradient(135deg, #ff8a3d 0%, #ff5cb1 100%);
  --v3-grad-mesh:
    radial-gradient(at 20% 30%, rgba(91, 61, 245, 0.18) 0px, transparent 50%),
    radial-gradient(at 80% 20%, rgba(255, 92, 177, 0.15) 0px, transparent 50%),
    radial-gradient(at 70% 80%, rgba(0, 212, 184, 0.12) 0px, transparent 50%);

  /* Type */
  --v3-font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --v3-font-serif: 'Instrument Serif', Georgia, serif;

  /* Radii */
  --v3-r-sm: 10px;
  --v3-r-md: 14px;
  --v3-r-lg: 20px;
  --v3-r-xl: 24px;
  --v3-r-2xl: 32px;
  --v3-r-pill: 100px;

  /* Shadows */
  --v3-shadow-sm: 0 1px 4px rgba(0, 0, 0, 0.04);
  --v3-shadow-md: 0 4px 12px rgba(0, 0, 0, 0.06);
  --v3-shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.08);
  --v3-shadow-xl: 0 24px 60px rgba(0, 0, 0, 0.12);
  --v3-shadow-glow: 0 8px 24px var(--v3-primary-glow);

  /* Easing */
  --v3-ease: cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Utility classes (used by V3 components) --- */
.v3-serif { font-family: var(--v3-font-serif); font-style: italic; letter-spacing: -0.02em; }
.v3-display { font-family: var(--v3-font-sans); font-weight: 800; letter-spacing: -0.04em; line-height: 1; }

.v3-grad-text-1 { background: var(--v3-grad-1); -webkit-background-clip: text; background-clip: text; color: transparent; }
.v3-grad-text-2 { background: var(--v3-grad-2); -webkit-background-clip: text; background-clip: text; color: transparent; }
.v3-grad-text-3 { background: var(--v3-grad-3); -webkit-background-clip: text; background-clip: text; color: transparent; }

.v3-mesh-bg { background: var(--v3-grad-mesh); }

.v3-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 12px;
  background: var(--v3-primary-glow);
  color: var(--v3-primary);
  border-radius: var(--v3-r-pill);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.v3-eyebrow::before { content: '●'; font-size: 8px; }

.v3-eyebrow-light { background: rgba(255, 255, 255, 0.1); color: #ffffff; }
.v3-eyebrow-green { background: rgba(0, 193, 104, 0.12); color: var(--v3-green); }

/* V3 buttons (additive — use class .v3-btn) */
.v3-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: var(--v3-r-pill);
  font-family: var(--v3-font-sans);
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  border: none;
  transition: all 0.2s var(--v3-ease);
  text-decoration: none;
  line-height: 1;
}
.v3-btn-primary { background: var(--v3-ink); color: var(--v3-bg-2); }
.v3-btn-primary:hover { background: var(--v3-primary); transform: translateY(-1px); box-shadow: var(--v3-shadow-glow); color: #fff; text-decoration: none; }
.v3-btn-secondary { background: var(--v3-bg-2); color: var(--v3-ink); border: 1px solid var(--v3-line); }
.v3-btn-secondary:hover { background: var(--v3-bg-3); color: var(--v3-ink); text-decoration: none; }
.v3-btn-light { background: var(--v3-bg-2); color: var(--v3-primary); }
.v3-btn-light:hover { background: rgba(255, 255, 255, 0.95); color: var(--v3-primary); text-decoration: none; }

/* Pulse dot (used in CTAs and live indicators) */
.v3-pulse {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--v3-green);
  box-shadow: 0 0 0 0 rgba(0, 193, 104, 0.7);
  animation: v3-pulse 1.6s infinite;
}
@keyframes v3-pulse {
  0% { box-shadow: 0 0 0 0 rgba(0, 193, 104, 0.7); }
  70% { box-shadow: 0 0 0 12px rgba(0, 193, 104, 0); }
  100% { box-shadow: 0 0 0 0 rgba(0, 193, 104, 0); }
}

/* V3 reveal-on-scroll utility (optional, additive) */
.v3-reveal { opacity: 0; transform: translateY(20px); transition: all 0.6s var(--v3-ease); }
.v3-reveal.v3-in { opacity: 1; transform: none; }

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  .v3-pulse { animation: none; }
  .v3-reveal { transition: none; opacity: 1; transform: none; }
}

/* Section spacing helpers */
.v3-section { padding: 100px 0; }
.v3-section-sm { padding: 60px 0; }
.v3-container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }

/* --- End Phase 1 --- */
/* Subsequent phases will append component styles below this line */

/* ============================================================
   PHASE 2 — Floating pill nav
   Targets Atlas header.blade.php structure non-destructively.
   The HTML stays the same; only visual treatment changes.
   ============================================================ */

/* Body needs space for floating header */
body.v3-active { background: var(--v3-bg); font-family: var(--v3-font-sans); color: var(--v3-ink); }

/* Wrap the existing .header-section in a floating pill */
.header-section {
  position: sticky !important;
  top: 12px !important;
  z-index: 100;
  background: transparent !important;
  padding: 0 !important;
  margin: 12px auto 0 !important;
  max-width: 1320px;
  width: calc(100% - 24px);
  box-shadow: none !important;
}
.header-section > .container { padding: 0 !important; }
.header-section > .container > .row { margin: 0 !important; }
.header-section > .container > .row > [class^="col-"] { padding: 0 !important; }

/* The actual pill */
.main-header-area {
  background: rgba(255, 255, 255, 0.85) !important;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--v3-line);
  border-radius: var(--v3-r-pill) !important;
  padding: 10px 14px 10px 24px !important;
  box-shadow: var(--v3-shadow-md);
  gap: 16px;
}

/* Logo — give it a V3 feel without replacing the SVG */
.header-section .header-logo a { display: flex; align-items: center; gap: 10px; }
.header-section .header-logo img {
  height: 36px !important;
  width: auto !important;
  padding: 0 !important;
  border-radius: 8px !important;
}

/* Search field embedded in nav — pill it */
.header-section .header-search-form { flex: 0 1 360px; }
.header-section .header-search-wrap {
  background: var(--v3-bg-3) !important;
  border-radius: var(--v3-r-pill) !important;
  padding: 4px 4px 4px 16px !important;
  border: 1px solid transparent;
  transition: all 0.2s var(--v3-ease);
}
.header-section .header-search-wrap:focus-within {
  border-color: var(--v3-primary);
  background: #fff !important;
  box-shadow: 0 0 0 3px var(--v3-primary-glow);
}
.header-section .header-search-wrap .search-select,
.header-section .header-search-wrap .header-search-input {
  background: transparent !important;
  border: none !important;
  font-family: var(--v3-font-sans) !important;
  font-size: 13px !important;
  font-weight: 500;
  color: var(--v3-ink) !important;
  padding: 8px 6px !important;
}
.header-section .header-search-wrap .header-search-input::placeholder { color: var(--v3-muted-2); }
.header-section .header-search-wrap .search-submit-btn {
  background: var(--v3-ink) !important;
  border-radius: 100px !important;
  width: 36px !important;
  height: 36px !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  transition: all 0.2s var(--v3-ease);
}
.header-section .header-search-wrap .search-submit-btn:hover {
  background: var(--v3-primary) !important;
  transform: translateY(-1px);
}

/* Menu items — V3 hover treatment */
.header-section .header-nav-list { gap: 8px !important; }
.header-section .header-nav-list > li > a.first-a {
  font-family: var(--v3-font-sans) !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  color: var(--v3-ink-2) !important;
  padding: 8px 14px !important;
  border-radius: var(--v3-r-pill) !important;
  transition: all 0.2s var(--v3-ease);
  border: none !important;
}
.header-section .header-nav-list > li > a.first-a:hover { background: var(--v3-bg-3) !important; color: var(--v3-primary) !important; }
.header-section .header-nav-list > li > a.first-a.active { color: var(--v3-primary) !important; background: var(--v3-primary-glow) !important; }

/* Sub-menu */
.header-section .first-sub-menu {
  background: rgba(255, 255, 255, 0.95) !important;
  backdrop-filter: blur(20px);
  border-radius: var(--v3-r-md) !important;
  border: 1px solid var(--v3-line) !important;
  box-shadow: var(--v3-shadow-lg) !important;
  padding: 8px !important;
}
.header-section .first-sub-menu li a {
  border-radius: 8px !important;
  font-size: 14px !important;
  padding: 10px 14px !important;
}
.header-section .first-sub-menu li a:hover { background: var(--v3-bg-3) !important; color: var(--v3-primary) !important; }

/* Right-side buttons (login/CTA) — pill them */
.header-section .header-buttons { gap: 8px !important; }
.header-section .header-buttons .login,
.header-section .header-buttons a.btn-getstart,
.header-section .header-buttons a:not(.user-dropdown-toggle) {
  font-family: var(--v3-font-sans) !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  padding: 9px 16px !important;
  border-radius: var(--v3-r-pill) !important;
  transition: all 0.2s var(--v3-ease);
}
.header-section .header-buttons .login {
  color: var(--v3-ink-2) !important;
  background: transparent !important;
}
.header-section .header-buttons .login:hover { background: var(--v3-bg-3) !important; color: var(--v3-primary) !important; }

/* Primary CTA button on the right */
.header-section .header-buttons a.btn-getstart,
.header-section .header-buttons .add-listing,
.header-section .v3-nav-cta {
  background: var(--v3-ink) !important;
  color: #fff !important;
  border: none !important;
}
.header-section .header-buttons a.btn-getstart:hover,
.header-section .header-buttons .add-listing:hover,
.header-section .v3-nav-cta:hover { background: var(--v3-primary) !important; transform: translateY(-1px); }

/* User dropdown trigger (avatar) */
.header-section .at-user-dropdown .user-dropdown-toggle {
  width: 36px !important;
  height: 36px !important;
  padding: 2px !important;
  border: 1px solid var(--v3-line) !important;
  border-radius: 50% !important;
  background: #fff !important;
}
.header-section .at-user-dropdown .user-dropdown-toggle::after { display: none !important; }
.header-section .at-user-dropdown .user-dropdown-toggle img { width: 100% !important; height: 100% !important; border-radius: 50% !important; object-fit: cover; }

/* Language selector */
.header-section .languageforall { font-size: 13px; }

/* Hamburger / offcanvas trigger on mobile */
.header-section .menu-bar-btn { padding: 8px !important; border-radius: 10px !important; }

/* Hide old top-of-header shadow / borders / heavy padding from Atlas */
.header-top-section { display: none !important; }

/* Mobile */
@media (max-width: 991px) {
  .header-section { width: calc(100% - 16px); margin-top: 8px !important; }
  .main-header-area { padding: 8px 12px !important; }
  .header-section .header-search-form { display: none; }  /* search inline only on desktop */
}

/* ============================================================
   END PHASE 2
   ============================================================ */

/* ============================================================
   PHASE 2b — Footer (V3 dark, refined)
   ============================================================ */
.main-footer-section {
  background: var(--v3-bg-dark) !important;
  color: rgba(255, 255, 255, 0.7) !important;
  padding: 80px 0 32px !important;
  border-top: 1px solid var(--v3-line);
  font-family: var(--v3-font-sans);
}
.main-footer-section .container { max-width: 1280px; }

/* Top newsletter strip */
.main-footer-section .footer-top-area {
  background: rgba(255, 255, 255, 0.04) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: var(--v3-r-2xl) !important;
  padding: 40px !important;
  margin-bottom: 60px !important;
  display: grid !important;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
}
.main-footer-section .footer-top-details .title {
  font-family: var(--v3-font-sans) !important;
  font-weight: 700 !important;
  font-size: 28px !important;
  letter-spacing: -0.02em !important;
  line-height: 1.1 !important;
  color: #fff !important;
  margin-bottom: 8px !important;
}
.main-footer-section .footer-top-details .info {
  color: rgba(255, 255, 255, 0.6) !important;
  font-size: 15px !important;
  margin: 0 !important;
}

/* Newsletter input pill */
.main-footer-section .footer-search { width: 100%; max-width: 480px; margin-left: auto; }
.main-footer-section .footer-search form { width: 100%; }
.main-footer-section .footer-input-wrap {
  background: #fff !important;
  border-radius: var(--v3-r-pill) !important;
  padding: 6px 6px 6px 22px !important;
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  border: none !important;
  box-shadow: var(--v3-shadow-sm);
}
.main-footer-section .footer-input-wrap input.form-control {
  border: none !important;
  background: transparent !important;
  font-family: var(--v3-font-sans) !important;
  font-size: 14px !important;
  color: var(--v3-ink) !important;
  outline: none !important;
  flex: 1 !important;
  padding: 10px 0 !important;
  box-shadow: none !important;
  height: auto !important;
}
.main-footer-section .footer-input-wrap input.form-control::placeholder { color: var(--v3-muted-2) !important; }
.main-footer-section .footer-input-wrap button {
  background: var(--v3-grad-1) !important;
  color: #fff !important;
  border: none !important;
  border-radius: var(--v3-r-pill) !important;
  padding: 12px 28px !important;
  font-family: var(--v3-font-sans) !important;
  font-weight: 600 !important;
  font-size: 14px !important;
  cursor: pointer;
  transition: all 0.2s var(--v3-ease);
  white-space: nowrap;
}
.main-footer-section .footer-input-wrap button:hover { transform: translateY(-1px); box-shadow: var(--v3-shadow-glow); }

/* Middle area — logo + columns */
.main-footer-section .footer-middle-area { padding-bottom: 48px !important; border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important; margin-bottom: 32px !important; }

/* Big circular ADR logo — make it sensible size */
.main-footer-section .footer-middle-logo { display: flex; flex-direction: column; gap: 16px; }
.main-footer-section .footer-middle-logo a img,
.main-footer-section .footer-middle-logo img {
  max-width: 140px !important;
  height: auto !important;
  border-radius: 16px !important;
  margin-bottom: 8px;
}
.main-footer-section .footer-middle-logo .info {
  color: rgba(255, 255, 255, 0.55) !important;
  font-size: 14px !important;
  line-height: 1.6 !important;
  max-width: 360px;
  margin: 0 !important;
}

/* Column titles */
.main-footer-section .footer-middle-nav .title {
  font-family: var(--v3-font-sans) !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  letter-spacing: 0.06em !important;
  text-transform: uppercase !important;
  color: rgba(255, 255, 255, 0.5) !important;
  margin-bottom: 20px !important;
  padding-bottom: 0 !important;
  border-bottom: none !important;
}

/* Column links */
.main-footer-section .footer-middle-nav ul { list-style: none; padding: 0; margin: 0; }
.main-footer-section .footer-middle-nav ul li { margin-bottom: 10px !important; }
.main-footer-section .footer-middle-nav ul li a,
.main-footer-section .footer-middle-nav a {
  color: rgba(255, 255, 255, 0.75) !important;
  font-family: var(--v3-font-sans) !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  text-decoration: none !important;
  transition: color 0.2s var(--v3-ease);
  padding: 0 !important;
  background: transparent !important;
}
.main-footer-section .footer-middle-nav ul li a:hover,
.main-footer-section .footer-middle-nav a:hover { color: #fff !important; }

/* Contact column */
.main-footer-section .footer-middle-contact ul { list-style: none; padding: 0; }
.main-footer-section .footer-middle-contact li {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  font-size: 14px !important;
  color: rgba(255, 255, 255, 0.75) !important;
  margin-bottom: 12px !important;
}
.main-footer-section .footer-middle-contact svg path { stroke: rgba(255, 255, 255, 0.5) !important; fill: none !important; }
.main-footer-section .footer-middle-contact a { color: rgba(255, 255, 255, 0.75) !important; }

/* Bottom strip */
.main-footer-section .footer-bottom-area {
  border: none !important;
  padding: 0 !important;
  margin-top: 24px;
}
.main-footer-section .footer-bottom-wrap {
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  flex-wrap: wrap;
  gap: 16px;
}
.main-footer-section .footer-bottom-wrap .info,
.main-footer-section .footer-bottom-wrap p {
  font-size: 12px !important;
  color: rgba(255, 255, 255, 0.4) !important;
  margin: 0 !important;
}
.main-footer-section .footer-bottom-social ul { list-style: none; padding: 0; margin: 0; display: flex; gap: 8px; }
.main-footer-section .footer-bottom-social a {
  display: flex !important;
  align-items: center;
  justify-content: center;
  width: 36px !important;
  height: 36px !important;
  background: rgba(255, 255, 255, 0.06) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: 50% !important;
  transition: all 0.2s var(--v3-ease);
}
.main-footer-section .footer-bottom-social a:hover {
  background: var(--v3-primary) !important;
  border-color: var(--v3-primary) !important;
  transform: translateY(-2px);
}
.main-footer-section .footer-bottom-social svg { width: 14px !important; height: 14px !important; }
.main-footer-section .footer-bottom-social svg path { fill: rgba(255, 255, 255, 0.85) !important; }

/* Hide the placeholder phone number — it's currently +44 1234 567890 */
.main-footer-section .footer-middle-contact li:has(svg path[d*="M17.67"]),
.main-footer-section .footer-middle-contact a[href^="tel:+44 1234"] { display: none !important; }

@media (max-width: 900px) {
  .main-footer-section .footer-top-area { grid-template-columns: 1fr; padding: 24px !important; }
  .main-footer-section .footer-search { margin-left: 0; }
  .main-footer-section .footer-middle-logo a img { max-width: 110px !important; }
}

/* ============================================================
   END PHASE 2b
   ============================================================ */

/* ============================================================
   PHASE 3-8 — Homepage sections (V3)
   ============================================================ */

/* HERO */
.v3-hero { padding: 80px 0 60px; position: relative; }
.v3-hero::before { content: ''; position: absolute; inset: 0; background: var(--v3-grad-mesh); pointer-events: none; }
.v3-hero-inner { max-width: 920px; margin: 0 auto; text-align: center; position: relative; }
.v3-hero-badge { display: inline-flex; align-items: center; gap: 10px; padding: 6px 14px 6px 6px; background: var(--v3-bg-2); border: 1px solid var(--v3-line); border-radius: var(--v3-r-pill); font-size: 13px; font-weight: 500; margin-bottom: 28px; box-shadow: var(--v3-shadow-sm); color: var(--v3-ink-2); }
.v3-hero-badge-pill { background: var(--v3-primary); color: #fff; padding: 4px 10px; border-radius: var(--v3-r-pill); font-size: 11px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; }
.v3-hero-h1 { font-family: var(--v3-font-sans); font-weight: 800; font-size: 76px; line-height: 0.98; letter-spacing: -0.04em; margin: 0 0 24px; color: var(--v3-ink); }
.v3-hero-h1 span { display: inline; transition: opacity 0.3s var(--v3-ease); }
.v3-hero-italic { font-family: var(--v3-font-serif); font-style: italic; font-weight: 400; }
.v3-hero-sub { font-size: 20px; line-height: 1.5; color: var(--v3-muted); max-width: 680px; margin: 0 auto 40px; transition: opacity 0.3s var(--v3-ease); }
.v3-hero-sub strong { color: var(--v3-ink); font-weight: 600; }
.v3-hero-cta { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 56px; }

/* SEARCH */
.v3-search-wrap { max-width: 920px; margin: 0 auto; position: relative; }
.v3-search-glow { position: absolute; inset: -20px; background: var(--v3-grad-1); border-radius: 36px; opacity: 0.18; filter: blur(40px); pointer-events: none; }
.v3-search-box { background: var(--v3-bg-2); border: 1px solid var(--v3-line); border-radius: var(--v3-r-xl); padding: 20px; box-shadow: var(--v3-shadow-xl); position: relative; }
.v3-search-form { display: block; }
.v3-search-tabs { display: flex; gap: 6px; padding: 4px; background: var(--v3-bg-3); border-radius: var(--v3-r-pill); margin-bottom: 16px; width: fit-content; flex-wrap: wrap; }
.v3-search-tab { padding: 10px 20px; background: transparent; border: none; border-radius: var(--v3-r-pill); font-family: var(--v3-font-sans); font-size: 14px; font-weight: 500; color: var(--v3-muted); cursor: pointer; display: flex; align-items: center; gap: 8px; transition: all 0.2s var(--v3-ease); }
.v3-search-tab.active { background: var(--v3-bg-2); color: var(--v3-ink); box-shadow: var(--v3-shadow-sm); font-weight: 600; }
.v3-search-tab:hover:not(.active) { color: var(--v3-ink-2); }
.v3-search-fields { display: grid; grid-template-columns: 2fr 1.2fr 1fr auto; gap: 4px; align-items: stretch; background: var(--v3-bg-3); border-radius: var(--v3-r-md); padding: 4px; }
.v3-search-field-wrap { padding: 10px 16px; background: var(--v3-bg-2); border-radius: 10px; }
.v3-search-field-label { font-size: 11px; font-weight: 600; color: var(--v3-muted-2); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 4px; }
.v3-search-field { width: 100%; border: none; background: transparent; font-family: var(--v3-font-sans); font-size: 14px; font-weight: 500; outline: none; color: var(--v3-ink); }
.v3-search-field::placeholder { color: var(--v3-muted-2); }
.v3-search-btn { background: var(--v3-ink); color: var(--v3-bg-2); border: none; padding: 0 28px; border-radius: 10px; font-family: var(--v3-font-sans); font-weight: 600; cursor: pointer; font-size: 14px; transition: all 0.2s var(--v3-ease); }
.v3-search-btn:hover { background: var(--v3-primary); }
.v3-search-meta { display: flex; align-items: center; justify-content: space-between; padding-top: 16px; border-top: 1px solid var(--v3-line); margin-top: 16px; flex-wrap: wrap; gap: 12px; }
.v3-search-toggle { display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--v3-ink-2); cursor: pointer; }
.v3-search-toggle input { display: none; }
.v3-toggle-track { width: 36px; height: 20px; background: var(--v3-muted-2); border-radius: var(--v3-r-pill); position: relative; transition: background 0.2s var(--v3-ease); flex-shrink: 0; }
.v3-toggle-track::after { content: ''; position: absolute; left: 2px; top: 2px; width: 16px; height: 16px; background: var(--v3-bg-2); border-radius: 50%; box-shadow: 0 1px 3px rgba(0,0,0,0.15); transition: all 0.2s var(--v3-ease); }
.v3-search-toggle input:checked + .v3-toggle-track { background: var(--v3-primary); }
.v3-search-toggle input:checked + .v3-toggle-track::after { left: 18px; }
.v3-search-toggle strong { color: var(--v3-primary); font-weight: 600; }
.v3-search-suggestions { font-size: 12px; color: var(--v3-muted); display: flex; gap: 8px; align-items: center; flex-wrap: wrap; }
.v3-search-tag { padding: 4px 10px; background: var(--v3-bg-3); border-radius: var(--v3-r-pill); font-weight: 500; font-size: 12px; color: var(--v3-ink-2); cursor: pointer; text-decoration: none; transition: all 0.2s var(--v3-ease); }
.v3-search-tag:hover { background: var(--v3-primary-glow); color: var(--v3-primary); text-decoration: none; }

/* TRUST BAR */
.v3-trust { padding: 32px 0; border-top: 1px solid var(--v3-line-2); border-bottom: 1px solid var(--v3-line-2); margin-top: 60px; }
.v3-trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; align-items: center; }
.v3-trust-item { display: flex; align-items: center; gap: 14px; }
.v3-trust-num { font-family: var(--v3-font-sans); font-weight: 800; font-size: 36px; letter-spacing: -0.02em; line-height: 1; }
.v3-trust-label { font-size: 12px; color: var(--v3-muted); line-height: 1.3; }

/* SECTION TITLE */
.v3-section-title { font-family: var(--v3-font-sans); font-weight: 800; font-size: 56px; line-height: 1; letter-spacing: -0.03em; margin: 20px 0 60px; color: var(--v3-ink); max-width: 800px; }
.v3-section-title em { font-family: var(--v3-font-serif); font-style: italic; font-weight: 400; }
.v3-section-title.v3-light { color: #fff; }

/* HOW IT WORKS */
.v3-how { padding: 120px 0; }
.v3-how-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.v3-how-card { padding: 40px; background: var(--v3-bg-2); border: 1px solid var(--v3-line); border-radius: var(--v3-r-xl); position: relative; overflow: hidden; transition: all 0.3s var(--v3-ease); }
.v3-how-card:hover { transform: translateY(-4px); box-shadow: var(--v3-shadow-lg); }
.v3-how-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; }
.v3-how-card:nth-child(1)::before { background: var(--v3-grad-1); }
.v3-how-card:nth-child(2)::before { background: var(--v3-grad-2); }
.v3-how-card:nth-child(3)::before { background: var(--v3-grad-3); }
.v3-how-num { font-family: var(--v3-font-serif); font-style: italic; font-size: 64px; line-height: 1; margin-bottom: 24px; }
.v3-how-card h3 { font-family: var(--v3-font-sans); font-weight: 700; font-size: 24px; line-height: 1.2; margin-bottom: 12px; letter-spacing: -0.02em; color: var(--v3-ink); }
.v3-how-card p { color: var(--v3-muted); font-size: 15px; line-height: 1.6; margin: 0; }

/* CATEGORIES */
.v3-cats { padding: 20px 0 120px; }
.v3-cat-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.v3-cat-card { padding: 40px; background: var(--v3-bg-2); border: 1px solid var(--v3-line); border-radius: var(--v3-r-xl); display: grid; grid-template-columns: 1fr auto; gap: 24px; align-items: center; transition: all 0.3s var(--v3-ease); cursor: pointer; text-decoration: none; color: var(--v3-ink); }
.v3-cat-card:hover { border-color: var(--v3-primary); transform: translateY(-2px); box-shadow: 0 16px 40px rgba(91, 61, 245, 0.08); text-decoration: none; color: var(--v3-ink); }
.v3-cat-tag { display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; padding: 4px 10px; border-radius: var(--v3-r-pill); margin-bottom: 12px; }
.v3-cat-tag.purple { background: var(--v3-primary-glow); color: var(--v3-primary); }
.v3-cat-tag.pink { background: rgba(255, 92, 177, 0.15); color: var(--v3-pink); }
.v3-cat-tag.teal { background: rgba(0, 212, 184, 0.15); color: #009b87; }
.v3-cat-tag.orange { background: rgba(255, 138, 61, 0.15); color: var(--v3-orange); }
.v3-cat-card h3 { font-weight: 700; font-size: 28px; line-height: 1.1; margin-bottom: 8px; letter-spacing: -0.02em; color: var(--v3-ink); }
.v3-cat-card p { color: var(--v3-muted); font-size: 14px; margin-bottom: 16px; }
.v3-cat-stats { display: flex; gap: 20px; font-size: 13px; flex-wrap: wrap; }
.v3-cat-stat { color: var(--v3-muted); }
.v3-cat-stat strong { color: var(--v3-ink); font-weight: 700; }
.v3-cat-icon-wrap { width: 80px; height: 80px; border-radius: var(--v3-r-lg); display: flex; align-items: center; justify-content: center; font-size: 36px; flex-shrink: 0; }
.v3-cat-icon-wrap.purple { background: var(--v3-grad-1); }
.v3-cat-icon-wrap.teal { background: var(--v3-grad-2); }
.v3-cat-icon-wrap.pink { background: var(--v3-grad-3); }
.v3-cat-icon-wrap.green { background: linear-gradient(135deg, var(--v3-green) 0%, var(--v3-teal) 100%); }

/* COMPARE (dark) */
.v3-compare { padding: 100px 0; background: var(--v3-bg-dark); color: var(--v3-bg-2); position: relative; overflow: hidden; }
.v3-compare::before { content: ''; position: absolute; top: -300px; left: -200px; width: 800px; height: 800px; border-radius: 50%; background: var(--v3-grad-1); opacity: 0.15; filter: blur(80px); }
.v3-compare::after { content: ''; position: absolute; bottom: -300px; right: -200px; width: 800px; height: 800px; border-radius: 50%; background: var(--v3-grad-2); opacity: 0.12; filter: blur(80px); }
.v3-compare-content { position: relative; max-width: 1100px; margin: 0 auto; }
.v3-compare-table { background: rgba(255, 255, 255, 0.04); border: 1px solid rgba(255, 255, 255, 0.1); border-radius: var(--v3-r-xl); padding: 12px; backdrop-filter: blur(12px); }
.v3-compare-row { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; padding: 18px 24px; border-radius: 12px; align-items: center; }
.v3-compare-row.v3-compare-head { font-size: 12px; font-weight: 600; color: rgba(255, 255, 255, 0.5); letter-spacing: 0.06em; text-transform: uppercase; }
.v3-compare-row.v3-compare-us { background: rgba(91, 61, 245, 0.15); border: 1px solid rgba(91, 61, 245, 0.3); }
.v3-compare-row > div { font-size: 15px; }
.v3-compare-feature { font-weight: 600; color: #fff; }
.v3-compare-bad { color: rgba(255, 255, 255, 0.5); }
.v3-compare-good { color: var(--v3-green); font-weight: 700; }
.v3-compare-cell-us { color: #fff; font-weight: 700; }

/* ADR FUNNEL */
.v3-funnel { padding: 120px 0; }
.v3-funnel-card { background: var(--v3-grad-1); border-radius: var(--v3-r-2xl); padding: 80px; color: var(--v3-bg-2); position: relative; overflow: hidden; }
.v3-funnel-card::before { content: ''; position: absolute; top: -100px; right: -100px; width: 400px; height: 400px; border-radius: 50%; background: rgba(255, 255, 255, 0.1); }
.v3-funnel-card::after { content: ''; position: absolute; bottom: -150px; left: -100px; width: 500px; height: 500px; border-radius: 50%; background: rgba(255, 255, 255, 0.06); }
.v3-funnel-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 80px; align-items: center; position: relative; }
.v3-funnel-eyebrow { display: inline-block; padding: 6px 14px; background: rgba(255, 255, 255, 0.2); border-radius: var(--v3-r-pill); font-size: 12px; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 20px; color: #fff; }
.v3-funnel-title { font-family: var(--v3-font-sans); font-weight: 800; font-size: 56px; line-height: 1; letter-spacing: -0.03em; margin: 0 0 24px; color: #fff; }
.v3-funnel-title em { font-family: var(--v3-font-serif); font-style: italic; font-weight: 400; }
.v3-funnel p { font-size: 18px; line-height: 1.5; opacity: 0.9; max-width: 540px; margin-bottom: 32px; }
.v3-funnel-stats { background: rgba(255, 255, 255, 0.12); backdrop-filter: blur(12px); border: 1px solid rgba(255, 255, 255, 0.2); border-radius: var(--v3-r-xl); padding: 32px; }
.v3-funnel-stat { padding: 20px 0; border-bottom: 1px solid rgba(255, 255, 255, 0.15); }
.v3-funnel-stat:last-child { border: none; }
.v3-funnel-stat-label { font-size: 12px; opacity: 0.7; letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 6px; }
.v3-funnel-stat-val { font-weight: 700; font-size: 32px; letter-spacing: -0.02em; }

/* PRO CTA */
.v3-procta { padding: 120px 0; }
.v3-procta-card { background: var(--v3-bg-2); border: 1px solid var(--v3-line); border-radius: var(--v3-r-2xl); padding: 80px 60px; display: grid; grid-template-columns: 1.2fr 1fr; gap: 80px; align-items: center; box-shadow: var(--v3-shadow-lg); }
.v3-procta-title { font-family: var(--v3-font-sans); font-weight: 800; font-size: 48px; line-height: 1; letter-spacing: -0.03em; margin: 20px 0 20px; color: var(--v3-ink); }
.v3-procta-title em { font-family: var(--v3-font-serif); font-style: italic; font-weight: 400; color: var(--v3-primary); }
.v3-procta p { color: var(--v3-muted); font-size: 17px; line-height: 1.5; margin-bottom: 32px; max-width: 480px; }
.v3-procta-bullets { list-style: none; padding: 0; margin: 0 0 32px; }
.v3-procta-bullets li { display: flex; align-items: center; gap: 12px; padding: 8px 0; font-size: 14px; color: var(--v3-ink-2); }
.v3-procta-bullets li::before { content: '✓'; width: 22px; height: 22px; background: var(--v3-green); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 11px; flex-shrink: 0; }
.v3-price-card { background: var(--v3-bg-3); border-radius: var(--v3-r-xl); padding: 32px; border: 1px solid var(--v3-line); }
.v3-price-row { display: flex; justify-content: space-between; align-items: center; padding: 14px 0; border-bottom: 1px solid var(--v3-line); font-size: 14px; }
.v3-price-row:last-child { border: none; }
.v3-price-row.v3-price-us { background: var(--v3-ink); color: var(--v3-bg-2); margin: 8px -16px 0; padding: 18px 16px; border-radius: var(--v3-r-md); border: none; }
.v3-price-comp { color: var(--v3-muted); }
.v3-price-row.v3-price-us .v3-price-comp { color: rgba(255,255,255,0.7); }
.v3-price-val { font-weight: 700; }
.v3-price-val.v3-bad { color: var(--v3-ink-2); }
.v3-us-good { color: var(--v3-green); font-size: 28px; font-weight: 800; }

/* VOICES */
.v3-voices { padding: 120px 0; }
.v3-voices-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 48px; }
.v3-voice-card { padding: 32px; background: var(--v3-bg-2); border: 1px solid var(--v3-line); border-radius: var(--v3-r-lg); }
.v3-voice-rating { color: var(--v3-amber); font-size: 16px; letter-spacing: 2px; margin-bottom: 16px; }
.v3-voice-text { font-size: 17px; line-height: 1.5; margin-bottom: 24px; color: var(--v3-ink); }
.v3-voice-author { display: flex; align-items: center; gap: 12px; padding-top: 20px; border-top: 1px solid var(--v3-line); }
.v3-voice-avatar { width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 700; font-size: 13px; }
.v3-voice-avatar.v3-grad-1 { background: var(--v3-grad-1); }
.v3-voice-avatar.v3-grad-2 { background: var(--v3-grad-2); }
.v3-voice-avatar.v3-grad-3 { background: var(--v3-grad-3); }
.v3-voice-name { font-weight: 600; font-size: 14px; color: var(--v3-ink); }
.v3-voice-meta { font-size: 12px; color: var(--v3-muted); }

/* RESPONSIVE */
@media (max-width: 1000px) {
  .v3-hero-h1 { font-size: 52px; }
  .v3-section-title, .v3-funnel-title, .v3-procta-title { font-size: 38px; }
  .v3-search-fields { grid-template-columns: 1fr; }
  .v3-trust-grid, .v3-how-grid, .v3-voices-grid { grid-template-columns: 1fr 1fr; }
  .v3-cat-grid, .v3-funnel-grid, .v3-procta-card { grid-template-columns: 1fr; gap: 32px; }
  .v3-funnel-card, .v3-procta-card { padding: 40px 24px; }
  .v3-compare-row { grid-template-columns: 1fr 1fr; padding: 12px; font-size: 13px; }
  .v3-compare-row > div:first-child { grid-column: 1 / -1; padding-bottom: 8px; border-bottom: 1px solid rgba(255,255,255,0.08); margin-bottom: 8px; }
}
@media (max-width: 600px) {
  .v3-hero-h1 { font-size: 38px; }
  .v3-section-title, .v3-funnel-title, .v3-procta-title { font-size: 30px; }
  .v3-trust-grid, .v3-how-grid, .v3-voices-grid { grid-template-columns: 1fr; }
}

/* HIDE OLD ATLAS HOMEPAGE BLOCKS that we replaced */
.atn-search-filter-section, /* old hero search */
.featured-listing-section, /* old featured */
.testimonial-area, /* old testimonials */
.dog-owner-resources-tips,  /* blog tips block — keep if you want, hide for now */
.client-area, /* trusted-companies (already disabled but belt-and-braces) */
.banner-section, /* old hero */
.banner-slider-wrap,
.banner-section-wrapper { display: none !important; }

/* ============================================================
   END PHASES 3-8
   ============================================================ */

/* ============================================================
   PHASE 9 — Listing cards, search results page, listing detail
   ============================================================ */

/* Page background */
body { background: var(--v3-bg) !important; font-family: var(--v3-font-sans) !important; color: var(--v3-ink); }

/* Page header strip on listings page */
.showing-result-header {
  background: var(--v3-bg-2) !important;
  border: 1px solid var(--v3-line) !important;
  border-radius: var(--v3-r-lg) !important;
  padding: 16px 24px !important;
  margin-bottom: 24px !important;
}
.showing-result-header .listing-info {
  font-family: var(--v3-font-sans) !important;
  font-weight: 600 !important;
  font-size: 14px !important;
  color: var(--v3-ink-2) !important;
}

/* Filter tab switch (grid/list/map) */
.filter-tab-switch {
  background: var(--v3-bg-3) !important;
  border-radius: var(--v3-r-pill) !important;
  padding: 4px !important;
  gap: 2px !important;
}
.filter-tab-switch a {
  padding: 8px 14px !important;
  border-radius: var(--v3-r-pill) !important;
  background: transparent !important;
  border: none !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  transition: all 0.2s var(--v3-ease);
}
.filter-tab-switch a.active {
  background: var(--v3-bg-2) !important;
  box-shadow: var(--v3-shadow-sm);
}
.filter-tab-switch a svg path { stroke: var(--v3-muted) !important; fill: none !important; }
.filter-tab-switch a.active svg path { stroke: var(--v3-primary) !important; }

/* SIDEBAR */
.sidebar-area, .sidebar-wrapper, .at-sidebar {
  background: var(--v3-bg-2);
  border: 1px solid var(--v3-line);
  border-radius: var(--v3-r-lg);
  padding: 24px;
}
.sidebar-title { padding-bottom: 16px; border-bottom: 1px solid var(--v3-line); margin-bottom: 20px !important; }
.sidebar-title .title {
  font-family: var(--v3-font-sans) !important;
  font-weight: 700 !important;
  font-size: 18px !important;
  color: var(--v3-ink) !important;
  letter-spacing: -0.01em !important;
  margin: 0 !important;
}
.sidebar-title .clear { font-size: 12px; color: var(--v3-primary) !important; }

/* LISTING CARD (.single-grid-card) */
.single-grid-card {
  background: var(--v3-bg-2) !important;
  border: 1px solid var(--v3-line) !important;
  border-radius: var(--v3-r-xl) !important;
  overflow: hidden !important;
  box-shadow: none !important;
  transition: all 0.3s var(--v3-ease) !important;
  margin-bottom: 24px;
}
.single-grid-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--v3-shadow-lg) !important;
  border-color: var(--v3-primary) !important;
}

/* image area */
.single-grid-card .grid-slider-area {
  border-radius: 0 !important;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--v3-bg-3);
}
.single-grid-card .grid-slider-area .card-item-image,
.single-grid-card .grid-slider-area img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
  display: block;
}

/* Bookmark button */
.single-grid-card .grid-list-bookmark {
  background: rgba(255,255,255,0.95) !important;
  border-radius: 50% !important;
  width: 36px !important;
  height: 36px !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
  box-shadow: var(--v3-shadow-sm);
  border: none !important;
  position: absolute !important;
  top: 12px !important;
  right: 12px !important;
}
.single-grid-card .grid-list-bookmark svg path { fill: var(--v3-primary) !important; }
.single-grid-card .grid-list-bookmark:hover { transform: scale(1.05); }

/* Unclaimed badge override (was inline-styled) */
.single-grid-card a[href*="/details/"][style*="background:rgba(0,0,0,0.65)"] {
  background: rgba(255,255,255,0.95) !important;
  color: var(--v3-ink) !important;
  border-radius: var(--v3-r-pill) !important;
  padding: 6px 12px !important;
  font-size: 11px !important;
  font-weight: 600 !important;
  letter-spacing: 0.04em !important;
  backdrop-filter: blur(8px);
  box-shadow: var(--v3-shadow-sm);
  text-transform: uppercase;
  top: 12px !important;
  left: 12px !important;
}

/* Card body */
.single-grid-card .hotel-grid-details {
  padding: 24px !important;
}
.single-grid-card .hotel-grid-details .title,
.single-grid-card .hotel-grid-details > a.title {
  font-family: var(--v3-font-sans) !important;
  font-weight: 700 !important;
  font-size: 19px !important;
  color: var(--v3-ink) !important;
  letter-spacing: -0.01em !important;
  line-height: 1.25 !important;
  display: block;
  margin-bottom: 8px !important;
  text-decoration: none !important;
}
.single-grid-card .hotel-grid-details .title:hover { color: var(--v3-primary) !important; }
.single-grid-card .hotelgrid-list-items {
  gap: 12px !important;
  font-size: 13px !important;
  color: var(--v3-muted) !important;
  margin-bottom: 12px !important;
}
.single-grid-card .hotelgrid-list-items svg path { fill: var(--v3-muted) !important; }

/* ratings */
.single-grid-card .ratings { gap: 4px; }
.single-grid-card .ratings .rate { color: var(--v3-amber); font-weight: 700; font-size: 13px; }
.single-grid-card .ratings .rating-text, .single-grid-card .ratings .review-count { color: var(--v3-muted); font-size: 12px; }

/* Bottom price/cta strip */
.single-grid-card .hotelgrid-see-price,
.single-grid-card .hotelgrid-location-rating {
  padding-top: 16px !important;
  border-top: 1px solid var(--v3-line) !important;
  margin-top: 16px !important;
  font-size: 13px !important;
}
.single-grid-card .hotelgrid-see-price .price,
.single-grid-card .hotelgrid-see-price .grid-price-tag {
  font-weight: 700 !important;
  color: var(--v3-ink) !important;
  font-size: 16px !important;
}

/* Pagination */
.listing-pegination .page-item .page-link,
.pagination .page-link {
  border: 1px solid var(--v3-line) !important;
  border-radius: 10px !important;
  color: var(--v3-ink-2) !important;
  font-weight: 600 !important;
  padding: 8px 14px !important;
  margin: 0 2px;
}
.listing-pegination .page-item.active .page-link,
.pagination .page-item.active .page-link {
  background: var(--v3-ink) !important;
  border-color: var(--v3-ink) !important;
  color: #fff !important;
}
.pagination .page-item.disabled .page-link { opacity: 0.4; }

/* LISTING DETAIL PAGE — generic polish */
.listing-details-section, .agent-details-section, .listing-details-area {
  padding: 40px 0 !important;
}
.listing-details-section .container { max-width: 1280px; }
.details-title, .agent-details-section .agent-name {
  font-family: var(--v3-font-sans) !important;
  font-weight: 800 !important;
  letter-spacing: -0.02em !important;
}

/* Forms & inputs site-wide */
.form-control, .form-select, .nice-select, .select2-selection {
  border-radius: var(--v3-r-md) !important;
  border-color: var(--v3-line) !important;
  font-family: var(--v3-font-sans) !important;
}
.form-control:focus { border-color: var(--v3-primary) !important; box-shadow: 0 0 0 3px var(--v3-primary-glow) !important; }

/* Generic .btn site-wide → V3 pill */
.btn, .button, button.theme-btn, a.theme-btn {
  font-family: var(--v3-font-sans) !important;
  font-weight: 600 !important;
  border-radius: var(--v3-r-pill) !important;
  padding: 10px 20px !important;
  transition: all 0.2s var(--v3-ease) !important;
}
.btn-primary, .theme-btn-primary, .at-btn-primary {
  background: var(--v3-ink) !important;
  border-color: var(--v3-ink) !important;
  color: #fff !important;
}
.btn-primary:hover, .theme-btn-primary:hover {
  background: var(--v3-primary) !important;
  border-color: var(--v3-primary) !important;
}

/* ============================================================
   PHASE 10 — Mobile pass + visual polish
   ============================================================ */
/* Reduce hero padding on mobile */
@media (max-width: 768px) {
  .v3-hero { padding: 40px 0 30px; }
  .v3-hero-h1 { font-size: 36px; }
  .v3-hero-cta { flex-direction: column; align-items: stretch; }
  .v3-hero-cta .v3-btn { justify-content: center; }
  .v3-search-box { padding: 12px; }
  .v3-search-tabs { flex-wrap: wrap; }
  .v3-trust { padding: 24px 0; margin-top: 30px; }
  .v3-how, .v3-cats, .v3-funnel, .v3-procta, .v3-voices, .v3-compare { padding: 60px 0; }
  .v3-section-title, .v3-funnel-title, .v3-procta-title { font-size: 28px; margin: 16px 0 36px; }
  .v3-funnel-card { padding: 32px 20px; border-radius: var(--v3-r-xl); }
  .v3-procta-card { padding: 32px 20px; border-radius: var(--v3-r-xl); }
  .v3-cat-card { padding: 24px; }
  .v3-cat-card h3 { font-size: 22px; }
  .v3-cat-icon-wrap { width: 60px; height: 60px; font-size: 28px; }
  .v3-trust-num { font-size: 28px; }
  .single-grid-card .hotel-grid-details { padding: 18px; }
  .single-grid-card .hotel-grid-details > a.title { font-size: 17px; }
}

/* Smooth scroll & focus */
html { scroll-behavior: smooth; }
:focus-visible { outline: 2px solid var(--v3-primary); outline-offset: 2px; border-radius: 4px; }

/* Selection */
::selection { background: var(--v3-primary); color: #fff; }

/* ============================================================
   END PHASE 9 + 10
   ============================================================ */

/* ============================================================
   PHASE 11 — SEO city × service pages + cities hub
   ============================================================ */

.v3-seo-hero { padding: 60px 0 40px; position: relative; }
.v3-seo-hero::before { content: ''; position: absolute; inset: 0; background: var(--v3-grad-mesh); pointer-events: none; opacity: 0.6; }
.v3-seo-hero > * { position: relative; }
.v3-breadcrumb { display: flex; gap: 8px; align-items: center; font-size: 13px; color: var(--v3-muted); margin-bottom: 24px; flex-wrap: wrap; }
.v3-breadcrumb a { color: var(--v3-muted); text-decoration: none; }
.v3-breadcrumb a:hover { color: var(--v3-primary); }
.v3-breadcrumb span { color: var(--v3-muted-2); }

.v3-seo-h1 { font-family: var(--v3-font-sans); font-weight: 800; font-size: 60px; line-height: 0.98; letter-spacing: -0.04em; margin: 16px 0 20px; color: var(--v3-ink); max-width: 900px; }
.v3-seo-h2 { font-family: var(--v3-font-sans); font-weight: 800; font-size: 32px; line-height: 1.05; letter-spacing: -0.03em; margin: 0 0 24px; color: var(--v3-ink); }
.v3-seo-lede { font-size: 19px; line-height: 1.55; color: var(--v3-muted); max-width: 720px; margin: 0 0 32px; }
.v3-seo-lede strong { color: var(--v3-ink); font-weight: 600; }

.v3-seo-quickfacts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 32px; max-width: 800px; }
.v3-seo-fact { background: var(--v3-bg-2); border: 1px solid var(--v3-line); border-radius: var(--v3-r-md); padding: 16px 20px; }
.v3-seo-fact-label { display: block; font-size: 11px; font-weight: 600; color: var(--v3-muted-2); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 6px; }
.v3-seo-fact-val { display: block; font-size: 16px; font-weight: 700; color: var(--v3-ink); }

/* RESULTS GRID */
.v3-seo-results { padding: 40px 0 80px; }
.v3-seo-results-head { display: flex; justify-content: space-between; align-items: end; flex-wrap: wrap; gap: 16px; margin-bottom: 32px; }
.v3-seo-results-head .v3-seo-h2 { margin: 0; }
.v3-seo-viewall { font-size: 14px; font-weight: 600; color: var(--v3-primary); text-decoration: none; }
.v3-seo-viewall:hover { color: var(--v3-pink); text-decoration: none; }

.v3-seo-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.v3-seo-card { display: flex; flex-direction: column; background: var(--v3-bg-2); border: 1px solid var(--v3-line); border-radius: var(--v3-r-xl); overflow: hidden; transition: all 0.3s var(--v3-ease); text-decoration: none; color: inherit; }
.v3-seo-card:hover { transform: translateY(-4px); box-shadow: var(--v3-shadow-lg); border-color: var(--v3-primary); text-decoration: none; color: inherit; }
.v3-seo-card-img { aspect-ratio: 16/10; position: relative; background: var(--v3-bg-3); overflow: hidden; }
.v3-seo-card-img img { width: 100%; height: 100%; object-fit: cover; }
.v3-seo-card-placeholder { display: flex; align-items: center; justify-content: center; width: 100%; height: 100%; font-size: 48px; opacity: 0.4; }
.v3-seo-card-badge { position: absolute; top: 12px; left: 12px; background: rgba(255,255,255,0.95); backdrop-filter: blur(8px); border-radius: var(--v3-r-pill); padding: 5px 11px; font-size: 11px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; }
.v3-seo-card-badge.claimed { color: var(--v3-green); }
.v3-seo-card-badge.unclaimed { color: var(--v3-muted); }
.v3-seo-card-body { padding: 20px; flex: 1; display: flex; flex-direction: column; gap: 6px; }
.v3-seo-card-title { font-family: var(--v3-font-sans); font-weight: 700; font-size: 17px; line-height: 1.25; letter-spacing: -0.01em; color: var(--v3-ink); margin: 0 0 4px; }
.v3-seo-card-meta { font-size: 13px; color: var(--v3-muted); margin: 0; }
.v3-seo-card-postcode { font-size: 12px; color: var(--v3-muted-2); margin: 0; font-family: 'JetBrains Mono', monospace; letter-spacing: 0.04em; }
.v3-seo-card-foot { margin-top: auto; padding-top: 12px; border-top: 1px solid var(--v3-line); }
.v3-seo-card-cta { font-size: 13px; font-weight: 600; color: var(--v3-primary); }

.v3-seo-empty { background: var(--v3-bg-2); border: 1px dashed var(--v3-line); border-radius: var(--v3-r-xl); padding: 60px 32px; text-align: center; }
.v3-seo-empty h3 { font-size: 22px; font-weight: 700; margin-bottom: 12px; }
.v3-seo-empty p { color: var(--v3-muted); margin-bottom: 24px; }

/* CONTEXT */
.v3-seo-context { padding: 80px 0; background: var(--v3-bg-3); border-top: 1px solid var(--v3-line); border-bottom: 1px solid var(--v3-line); }
.v3-seo-context-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 60px; align-items: start; }
.v3-seo-prose { font-size: 16px; line-height: 1.7; color: var(--v3-ink-2); }
.v3-seo-prose p { margin-bottom: 16px; }
.v3-seo-cta-card { background: var(--v3-grad-1); color: #fff; border-radius: var(--v3-r-xl); padding: 32px; box-shadow: var(--v3-shadow-lg); }
.v3-seo-cta-title { font-family: var(--v3-font-sans); font-weight: 800; font-size: 28px; line-height: 1.05; letter-spacing: -0.02em; margin: 16px 0 12px; }
.v3-seo-cta-card p { font-size: 14px; opacity: 0.9; margin-bottom: 20px; line-height: 1.5; }

/* FAQS */
.v3-seo-faqs { padding: 80px 0; }
.v3-seo-faq-list { display: flex; flex-direction: column; gap: 8px; max-width: 880px; }
.v3-seo-faq { background: var(--v3-bg-2); border: 1px solid var(--v3-line); border-radius: var(--v3-r-md); padding: 4px; transition: all 0.2s var(--v3-ease); }
.v3-seo-faq[open] { border-color: var(--v3-primary); box-shadow: var(--v3-shadow-md); }
.v3-seo-faq summary { padding: 18px 20px; font-weight: 600; font-size: 16px; cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; }
.v3-seo-faq summary::-webkit-details-marker { display: none; }
.v3-seo-faq summary::after { content: '+'; font-size: 20px; color: var(--v3-primary); transition: transform 0.2s; }
.v3-seo-faq[open] summary::after { transform: rotate(45deg); }
.v3-seo-faq-a { padding: 0 20px 20px; color: var(--v3-muted); line-height: 1.6; font-size: 15px; }

/* NEARBY + OTHER SERVICES */
.v3-seo-nearby, .v3-seo-otherservices { padding: 60px 0; }
.v3-seo-nearby-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px; }
.v3-seo-nearby-card { display: flex; justify-content: space-between; align-items: center; padding: 16px 18px; background: var(--v3-bg-2); border: 1px solid var(--v3-line); border-radius: var(--v3-r-md); transition: all 0.2s var(--v3-ease); text-decoration: none; color: inherit; }
.v3-seo-nearby-card:hover { border-color: var(--v3-primary); background: var(--v3-bg-3); transform: translateY(-2px); text-decoration: none; color: inherit; }
.v3-seo-nearby-name { font-weight: 600; font-size: 14px; }
.v3-seo-nearby-arrow { color: var(--v3-primary); font-size: 16px; }

.v3-seo-otherservices-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.v3-seo-otherservices-card { display: flex; align-items: center; gap: 16px; padding: 24px; background: var(--v3-bg-2); border: 1px solid var(--v3-line); border-radius: var(--v3-r-lg); transition: all 0.2s var(--v3-ease); text-decoration: none; color: inherit; }
.v3-seo-otherservices-card:hover { border-color: var(--v3-primary); transform: translateY(-2px); box-shadow: var(--v3-shadow-md); text-decoration: none; color: inherit; }
.v3-seo-otherservices-emoji { font-size: 32px; }
.v3-seo-otherservices-name { font-weight: 600; font-size: 16px; line-height: 1.2; }

/* HUB PAGE */
.v3-hub-block { margin-bottom: 64px; }
.v3-hub-head { display: flex; align-items: center; gap: 16px; margin-bottom: 24px; padding-bottom: 16px; border-bottom: 1px solid var(--v3-line); }
.v3-hub-emoji { font-size: 32px; }
.v3-hub-head .v3-seo-h2 { margin: 0; }
.v3-hub-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 8px; }
.v3-hub-link { display: flex; justify-content: space-between; align-items: center; padding: 12px 16px; background: var(--v3-bg-2); border: 1px solid var(--v3-line); border-radius: var(--v3-r-md); transition: all 0.2s var(--v3-ease); text-decoration: none; color: inherit; font-size: 14px; }
.v3-hub-link:hover { border-color: var(--v3-primary); background: var(--v3-primary-glow); color: var(--v3-primary); text-decoration: none; transform: translateY(-1px); }
.v3-hub-link-name { font-weight: 500; }
.v3-hub-link-arrow { opacity: 0.4; }
.v3-hub-link:hover .v3-hub-link-arrow { opacity: 1; }

/* RESPONSIVE */
@media (max-width: 1000px) {
  .v3-seo-h1 { font-size: 40px; }
  .v3-seo-h2 { font-size: 24px; }
  .v3-seo-quickfacts { grid-template-columns: 1fr; }
  .v3-seo-grid { grid-template-columns: 1fr 1fr; }
  .v3-seo-context-grid { grid-template-columns: 1fr; gap: 32px; }
  .v3-seo-nearby-grid { grid-template-columns: repeat(2, 1fr); }
  .v3-seo-otherservices-grid { grid-template-columns: 1fr; }
  .v3-hub-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 600px) {
  .v3-seo-grid { grid-template-columns: 1fr; }
  .v3-hub-grid { grid-template-columns: repeat(2, 1fr); }
  .v3-seo-h1 { font-size: 30px; }
}

/* ============================================================
   END PHASE 11
   ============================================================ */

/* ============================================================
   PHASE 12 — Popular Cities block on homepage
   ============================================================ */
.v3-popcities { padding: 80px 0; background: var(--v3-bg-3); border-top: 1px solid var(--v3-line); border-bottom: 1px solid var(--v3-line); }
.v3-popcities-head { display: flex; justify-content: space-between; align-items: end; flex-wrap: wrap; gap: 24px; margin-bottom: 48px; }
.v3-popcities-head .v3-section-title { margin: 12px 0 0; font-size: 44px; }
.v3-popcities-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.v3-popcity-card { background: var(--v3-bg-2); border: 1px solid var(--v3-line); border-radius: var(--v3-r-lg); padding: 24px; transition: all 0.2s var(--v3-ease); }
.v3-popcity-card:hover { border-color: var(--v3-primary); transform: translateY(-2px); box-shadow: var(--v3-shadow-md); }
.v3-popcity-name { font-family: var(--v3-font-sans); font-weight: 700; font-size: 18px; letter-spacing: -0.02em; color: var(--v3-ink); margin: 0 0 14px; padding-bottom: 12px; border-bottom: 1px solid var(--v3-line); }
.v3-popcity-links { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.v3-popcity-links a { font-size: 14px; color: var(--v3-ink-2); text-decoration: none; display: flex; align-items: center; gap: 8px; padding: 4px 0; transition: color 0.15s var(--v3-ease); }
.v3-popcity-links a:hover { color: var(--v3-primary); text-decoration: none; }

@media (max-width: 1000px) {
  .v3-popcities-grid { grid-template-columns: repeat(2, 1fr); }
  .v3-popcities-head .v3-section-title { font-size: 30px; }
}
@media (max-width: 600px) {
  .v3-popcities-grid { grid-template-columns: 1fr; }
}
/* ============================================================
   END PHASE 12
   ============================================================ */

/* ============================================================
   PHASE 13 — Auto-claim flow pages
   ============================================================ */
.v3-claim { padding: 80px 0 120px; min-height: 70vh; position: relative; }
.v3-claim::before { content: ''; position: absolute; inset: 0; background: var(--v3-grad-mesh); pointer-events: none; opacity: 0.5; }
.v3-claim-container { max-width: 720px; margin: 0 auto; padding: 0 24px; position: relative; }
.v3-claim-h1 { font-family: var(--v3-font-sans); font-weight: 800; font-size: 56px; line-height: 1; letter-spacing: -0.04em; margin: 16px 0 24px; color: var(--v3-ink); }
.v3-claim-lede { font-size: 18px; line-height: 1.55; color: var(--v3-muted); margin-bottom: 32px; }
.v3-claim-lede strong { color: var(--v3-ink); font-weight: 600; }
.v3-claim-perks { list-style: none; padding: 24px 28px; margin: 0 0 32px; background: var(--v3-bg-2); border: 1px solid var(--v3-line); border-radius: var(--v3-r-lg); }
.v3-claim-perks li { padding: 8px 0; font-size: 15px; color: var(--v3-ink-2); border-bottom: 1px solid var(--v3-line-2); }
.v3-claim-perks li:last-child { border-bottom: none; }
.v3-claim-perks strong { color: var(--v3-primary); font-weight: 600; }
.v3-claim-form { margin-bottom: 24px; }
.v3-claim-btn { font-size: 17px !important; padding: 18px 36px !important; }
.v3-claim-fineprint { font-size: 13px; color: var(--v3-muted); }
.v3-claim-fineprint a { color: var(--v3-primary); }
.v3-claim-next { background: var(--v3-bg-2); border: 1px solid var(--v3-line); border-radius: var(--v3-r-lg); padding: 28px 32px; margin: 24px 0 32px; }
.v3-claim-next h2 { font-size: 18px; font-weight: 700; margin-bottom: 16px; color: var(--v3-ink); }
.v3-claim-next ol { padding-left: 20px; color: var(--v3-ink-2); }
.v3-claim-next li { padding: 6px 0; font-size: 15px; }
@media (max-width: 600px) {
  .v3-claim-h1 { font-size: 36px; }
  .v3-claim-perks { padding: 16px 20px; }
}
/* === END PHASE 13 === */
