/* ============================================================
   TheDogWalker.me.uk — V2 Extra Styles
   Uses source zip's real images in a modern split-layout design
   ============================================================ */

/* ── HERO V2 ─────────────────────────────────────────────── */
.hero-v2 {
  background: linear-gradient(120deg, #0d2346 0%, var(--navy) 60%, #1e5aa0 100%);
  position: relative;
  overflow: hidden;
  padding: 0;
}
.hero-v2-overlay {
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M0 0h30v30H0zm30 30h30v30H30z'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.hero-v2-inner {
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 0;
  align-items: stretch;
  min-height: 540px;
}
.hero-v2-content {
  padding: 72px 48px 72px 20px;
  position: relative;
  z-index: 2;
}
.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.25);
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 13px;
  color: rgba(255,255,255,.9);
  margin-bottom: 20px;
}
.hero-v2-content h1 {
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 16px;
}
.hero-v2-content > p {
  font-size: 17px;
  color: rgba(255,255,255,.82);
  max-width: 480px;
  margin-bottom: 36px;
  line-height: 1.65;
}
.hero-v2-search { margin-bottom: 40px; }
.search-wrap {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 60px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0,0,0,.28);
  max-width: 520px;
}
.search-icon { padding: 0 14px 0 20px; font-size: 18px; }
.search-wrap input {
  flex: 1;
  border: none;
  padding: 15px 8px;
  font-size: 15px;
  font-family: inherit;
  outline: none;
  color: var(--text);
  background: transparent;
}
.search-wrap button {
  background: var(--orange);
  color: #fff;
  border: none;
  padding: 15px 28px;
  font-size: 15px;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  white-space: nowrap;
  transition: background var(--transition);
}
.search-wrap button:hover { background: var(--orange-hov); }
.hero-v2-stats {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
.hero-v2-stats > div { text-align: center; }
.hero-v2-stats strong { display: block; font-size: 26px; font-weight: 800; color: #fff; }
.hero-v2-stats span { font-size: 12px; color: rgba(255,255,255,.65); }
.hero-v2-stats .divider { width: 1px; height: 36px; background: rgba(255,255,255,.2); }
.hero-v2-img {
  position: relative;
  overflow: hidden;
}
.hero-v2-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-v2-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--navy) 0%, transparent 30%);
}

/* ── SERVICES STRIP ──────────────────────────────────────── */
.services-strip {
  background: #fff;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 16px rgba(26,59,110,.06);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}
.service-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 18px 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-decoration: none;
  color: var(--text);
  transition: all var(--transition);
  gap: 8px;
}
.service-card:hover {
  border-color: var(--navy);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
  color: var(--navy);
}
.svc-icon { font-size: 28px; }
.service-card strong { font-size: 13px; font-weight: 700; display: block; }
.service-card p { font-size: 11px; color: var(--text-muted); line-height: 1.4; margin: 0; }

/* ── HOW IT WORKS ─────────────────────────────────────────── */
.hiw-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.hiw-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  transition: all var(--transition);
}
.hiw-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.hiw-img { height: 200px; overflow: hidden; }
.hiw-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.hiw-card:hover .hiw-img img { transform: scale(1.06); }
.hiw-step {
  position: absolute;
  top: 172px;
  right: 18px;
  width: 44px; height: 44px;
  background: var(--orange);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; font-weight: 800;
  border: 3px solid #fff;
  box-shadow: var(--shadow-sm);
}
.hiw-card h3 { font-size: 17px; padding: 20px 20px 8px; }
.hiw-card p { font-size: 13px; color: var(--text-muted); padding: 0 20px 22px; line-height: 1.6; }

/* ── SERVICE FEATURES ────────────────────────────────────── */
.svc-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.svc-feature-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--transition);
}
.svc-feature-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.svc-feature-img { height: 220px; overflow: hidden; }
.svc-feature-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.svc-feature-card:hover .svc-feature-img img { transform: scale(1.05); }
.svc-feature-body { padding: 22px; }
.svc-feature-body h3 { font-size: 18px; margin-bottom: 10px; }
.svc-feature-body p { font-size: 13px; color: var(--text-muted); line-height: 1.65; margin-bottom: 16px; }

/* ── AREAS GRID ──────────────────────────────────────────── */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 12px;
}
.area-card-v2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  padding: 18px 12px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-decoration: none;
  color: var(--text);
  transition: all var(--transition);
  text-align: center;
}
.area-card-v2:hover { border-color: var(--navy); box-shadow: var(--shadow); transform: translateY(-3px); color: var(--navy); }
.area-icon { font-size: 24px; }
.area-name { font-size: 14px; font-weight: 700; }
.area-count { font-size: 12px; color: var(--text-muted); }

/* ── TRUST SECTION ───────────────────────────────────────── */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.trust-card {
  text-align: center;
  padding: 28px 20px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all var(--transition);
}
.trust-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); border-color: transparent; }
.trust-icon { font-size: 38px; margin-bottom: 12px; }
.trust-card h3 { font-size: 15px; margin-bottom: 8px; }
.trust-card p { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

/* ── FAQ ─────────────────────────────────────────────────── */
.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 22px;
  margin-bottom: 10px;
  cursor: pointer;
}
.faq-item summary {
  font-weight: 700;
  font-size: 15px;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-size: 22px; font-weight: 300; color: var(--navy); transition: transform .2s; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { margin-top: 14px; font-size: 14px; color: var(--text-muted); line-height: 1.7; }

/* ── CTA V2 ──────────────────────────────────────────────── */
.cta-v2 {
  background: linear-gradient(120deg, var(--navy-dark) 0%, var(--navy) 100%);
  padding: 64px 0;
}
.cta-v2-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.cta-v2-text h2 { color: #fff; font-size: clamp(24px, 3vw, 36px); margin-bottom: 10px; }
.cta-v2-text p { color: rgba(255,255,255,.8); font-size: 16px; max-width: 500px; }
.cta-v2-btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* ── OLD CTA SECTION (used in V1 pages) ──────────────────── */
.cta-section {
  background: linear-gradient(120deg, var(--navy-dark) 0%, var(--navy) 100%);
  padding: 72px 0;
  text-align: center;
  color: #fff;
}
.cta-section h2 { color: #fff; font-size: clamp(26px, 4vw, 42px); margin-bottom: 12px; }
.cta-section p { color: rgba(255,255,255,.82); font-size: 17px; max-width: 540px; margin: 0 auto 36px; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── PAGE HEADER ─────────────────────────────────────────── */
.page-header {
  background: linear-gradient(120deg, var(--navy-dark) 0%, var(--navy) 100%);
  color: #fff; padding: 36px 0;
}
.page-header h1 { font-size: clamp(22px,3.5vw,36px); color: #fff; margin-bottom: 6px; }
.page-header p { opacity: .8; font-size: 15px; }

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .hero-v2-inner { grid-template-columns: 1fr; min-height: auto; }
  .hero-v2-img { display: none; }
  .hero-v2-content { padding: 56px 20px; }
  .hiw-grid, .svc-features-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-v2-inner { flex-direction: column; text-align: center; }
  .cta-v2-btns { justify-content: center; }
  .mobile-toggle { display: flex !important; }
  .main-nav { display: none; }
}
