/* ============================================================
   ONE PROPERTY SOLUTION — Main Stylesheet
   Colors: Orange #F15A28 | Charcoal #2C2C2C | Blue #116DFF
   Fonts: Montserrat (headings) | Inter (body)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --orange:       #F15A28;
  --orange-dark:  #D44A1C;
  --orange-light: #FF7A50;
  --orange-pale:  rgba(241,90,40,0.08);
  --dark:         #1E1E1E;
  --charcoal:     #2C2C2C;
  --charcoal-2:   #3A3A3A;
  --white:        #FFFFFF;
  --blue:         #116DFF;
  --blue-dark:    #0D5ACC;
  --cream:        #FAF8F5;
  --light-gray:   #F4F4F4;
  --gray:         #888888;
  --mid-gray:     #555555;
  --border:       #E8E8E8;
  --red:          #CC2200;
  --success:      #22A06B;

  --font-head: 'Montserrat', sans-serif;
  --font-body: 'Inter', sans-serif;

  --shadow-sm:  0 2px 10px rgba(0,0,0,0.07);
  --shadow-md:  0 6px 24px rgba(0,0,0,0.11);
  --shadow-lg:  0 12px 48px rgba(0,0,0,0.16);
  --shadow-xl:  0 20px 60px rgba(0,0,0,0.2);

  --radius-sm: 8px;
  --radius:    14px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  --transition: all 0.25s ease;
  --container: 1200px;
}

/* ── RESET & BASE ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }
body { font-family: var(--font-body); color: var(--dark); background: var(--white); line-height: 1.6; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--font-body); border: none; background: none; }
input, textarea, select { font-family: var(--font-body); }

/* ── TYPOGRAPHY ───────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 { font-family: var(--font-head); font-weight: 700; line-height: 1.2; color: var(--dark); }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.5rem); }
h4 { font-size: 1.05rem; }
p { line-height: 1.75; color: var(--mid-gray); }

/* ── LAYOUT ───────────────────────────────────────────────── */
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
section { padding: 90px 0; }

/* Section Labels */
.section-eyebrow {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--orange);
  margin-bottom: 10px;
}
.section-title { margin-bottom: 14px; }
.section-subtitle {
  font-size: 1.08rem;
  color: var(--mid-gray);
  max-width: 580px;
  line-height: 1.75;
  margin-bottom: 52px;
}
.text-center { text-align: center; }
.text-center .section-subtitle { margin-left: auto; margin-right: auto; }

/* ── BUTTONS ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 14px 30px;
  border-radius: var(--radius-sm);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  transition: var(--transition);
  cursor: pointer;
  text-align: center;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.btn-primary   { background: var(--orange); color: #fff; }
.btn-primary:hover { background: var(--orange-dark); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(241,90,40,0.32); }
.btn-secondary { background: transparent; color: var(--orange); border: 2px solid var(--orange); }
.btn-secondary:hover { background: var(--orange); color: #fff; transform: translateY(-2px); }
.btn-blue      { background: var(--blue); color: #fff; }
.btn-blue:hover{ background: var(--blue-dark); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(17,109,255,0.3); }
.btn-white     { background: #fff; color: var(--orange); font-weight: 700; }
.btn-white:hover { background: var(--cream); transform: translateY(-2px); }
.btn-outline-white { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.5); }
.btn-outline-white:hover { background: rgba(255,255,255,0.12); border-color: #fff; }
.btn-dark      { background: var(--charcoal); color: #fff; }
.btn-dark:hover{ background: var(--dark); transform: translateY(-2px); }
.btn-lg { padding: 17px 38px; font-size: 1rem; }
.btn-sm { padding: 9px 18px; font-size: 0.82rem; }

/* ── NAVBAR ───────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--charcoal);
  transition: var(--transition);
}
.navbar.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,0.25); }
.navbar-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
/* Logo */
.navbar-logo { display: flex; align-items: center; }
.logo-img {
  height: 40px;
  width: auto;
  display: block;
  flex-shrink: 0;
}

/* Nav links */
.navbar-nav { display: flex; align-items: center; gap: 2px; }
.nav-item { position: relative; }
.nav-link {
  display: flex; align-items: center; gap: 5px;
  padding: 8px 13px;
  color: rgba(255,255,255,0.8);
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 0.86rem;
  border-radius: 7px;
  transition: var(--transition);
}
.nav-link:hover, .nav-link.active { color: #fff; background: rgba(255,255,255,0.1); }
.nav-link .chevron { width: 12px; height: 12px; transition: var(--transition); }
.nav-item:hover .nav-link .chevron { transform: rotate(180deg); }

/* Dropdown */
.dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  background: #fff;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  min-width: 210px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: var(--transition);
  z-index: 200;
  overflow: hidden;
  padding: 6px;
}
.nav-item:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a {
  display: flex; align-items: center; gap: 10px;
  padding: 11px 14px;
  color: var(--dark);
  font-size: 0.88rem;
  font-weight: 500;
  border-radius: 8px;
  transition: var(--transition);
}
.dropdown a:hover { background: var(--cream); color: var(--orange); }
.dropdown a svg { width: 16px; height: 16px; color: var(--orange); flex-shrink: 0; }

/* Mobile hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.hamburger span { width: 22px; height: 2px; background: #fff; border-radius: 2px; transition: var(--transition); }

/* ── HERO ─────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  background: linear-gradient(145deg, var(--charcoal) 0%, #353535 60%, #2a2a2a 100%);
  display: flex; align-items: center;
  padding-top: 68px;
  position: relative;
  overflow: hidden;
}
.hero-bg-pattern {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(241,90,40,0.07) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(17,109,255,0.05) 0%, transparent 40%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 80px 24px;
  max-width: var(--container);
  margin: 0 auto;
  position: relative; z-index: 1;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(241,90,40,0.12);
  border: 1px solid rgba(241,90,40,0.28);
  color: var(--orange);
  padding: 6px 14px;
  border-radius: 100px;
  font-family: var(--font-head);
  font-size: 0.73rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.12em;
  margin-bottom: 18px;
}
.hero-badge svg { width: 13px; height: 13px; }
.hero h1 { color: #fff; margin-bottom: 18px; }
.hero h1 .accent { color: var(--orange); }
.hero-desc { color: rgba(255,255,255,0.65); font-size: 1.08rem; margin-bottom: 36px; max-width: 460px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-trust { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.trust-pill {
  display: flex; align-items: center; gap: 7px;
  color: rgba(255,255,255,0.55); font-size: 0.82rem;
}
.trust-pill svg { width: 15px; height: 15px; color: var(--orange); }

/* Hero Visual */
.hero-visual { position: relative; }
.hero-cards { display: flex; flex-direction: column; gap: 16px; }
.hero-stat-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 22px 26px;
  display: flex; align-items: center; gap: 18px;
}
.hero-stat-icon {
  width: 52px; height: 52px;
  background: rgba(241,90,40,0.15);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.hero-stat-icon svg { width: 26px; height: 26px; color: var(--orange); }
.hero-stat-num {
  font-family: var(--font-head);
  font-size: 2rem; font-weight: 800; color: #fff;
  line-height: 1;
}
.hero-stat-label { font-size: 0.83rem; color: rgba(255,255,255,0.5); margin-top: 3px; }
.hero-narpm {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 16px 20px;
  display: flex; align-items: center; gap: 12px;
  color: rgba(255,255,255,0.6); font-size: 0.82rem;
}
.hero-narpm svg { color: var(--orange); flex-shrink: 0; }

/* ── METRICS STRIP ────────────────────────────────────────── */
.metrics-strip { background: var(--orange); }
.metrics-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: var(--container);
  margin: 0 auto;
}
.metric-item {
  padding: 30px 20px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.22);
}
.metric-item:last-child { border-right: none; }
.metric-num {
  font-family: var(--font-head);
  font-size: 2.3rem; font-weight: 900; color: #fff;
  line-height: 1; display: block;
}
.metric-lbl { font-size: 0.8rem; color: rgba(255,255,255,0.82); font-weight: 500; margin-top: 5px; }

/* ── AUDIENCE SECTION ─────────────────────────────────────── */
.audience-section { background: var(--cream); }
.audience-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.audience-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 44px 40px;
  box-shadow: var(--shadow-sm);
  border: 2px solid transparent;
  transition: var(--transition);
  position: relative; overflow: hidden;
  display: flex; flex-direction: column;
}
.audience-card::after {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: var(--orange);
  transform: scaleX(0); transform-origin: left;
  transition: var(--transition);
}
.audience-card:hover, .audience-card.featured {
  border-color: rgba(241,90,40,0.25);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.audience-card:hover::after, .audience-card.featured::after { transform: scaleX(1); }
.audience-tag {
  display: inline-block;
  background: rgba(241,90,40,0.1);
  color: var(--orange);
  font-family: var(--font-head);
  font-size: 0.7rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  padding: 4px 10px; border-radius: 100px;
  margin-bottom: 14px;
}
.audience-icon {
  width: 58px; height: 58px;
  background: var(--orange-pale);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.audience-icon svg { width: 30px; height: 30px; color: var(--orange); }
.audience-card h3 { margin-bottom: 12px; }
.audience-card p  { margin-bottom: 24px; flex: 1; }
.audience-features { margin-bottom: 28px; display: flex; flex-direction: column; gap: 9px; }
.audience-feature {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.88rem; color: var(--mid-gray);
}
.audience-feature svg { width: 16px; height: 16px; color: var(--success); flex-shrink: 0; }

/* ── VALUES / WHY US ──────────────────────────────────────── */
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.value-card {
  text-align: center;
  padding: 40px 28px;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid var(--border);
}
.value-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); border-color: rgba(241,90,40,0.2); }
.value-icon {
  width: 66px; height: 66px;
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 22px;
  box-shadow: 0 8px 24px rgba(241,90,40,0.28);
}
.value-icon svg { width: 32px; height: 32px; color: #fff; }
.value-card h3 { margin-bottom: 12px; }

/* ── SERVICE AREA MAP ─────────────────────────────────────── */
.map-section { background: var(--charcoal); }
.map-section .section-title { color: #fff; }
.map-section .section-subtitle { color: rgba(255,255,255,0.55); }
.map-layout { display: grid; grid-template-columns: 340px 1fr; gap: 44px; align-items: start; }
#service-map {
  height: 460px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 2px solid rgba(255,255,255,0.08);
}
.county-list { display: flex; flex-direction: column; gap: 14px; }
.county-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 20px 22px;
  cursor: pointer;
  transition: var(--transition);
  display: flex; align-items: flex-start; gap: 14px;
}
.county-card:hover, .county-card.active {
  background: rgba(241,90,40,0.12);
  border-color: rgba(241,90,40,0.4);
}
.county-dot {
  width: 12px; height: 12px;
  background: var(--orange);
  border-radius: 50%;
  margin-top: 5px; flex-shrink: 0;
  box-shadow: 0 0 0 4px rgba(241,90,40,0.2);
}
.county-card h4 { color: #fff; font-family: var(--font-head); font-size: 1rem; margin-bottom: 4px; }
.county-card p  { color: rgba(255,255,255,0.5); font-size: 0.84rem; margin: 0; }
.map-disclaimer { color: rgba(255,255,255,0.3); font-size: 0.78rem; margin-top: 14px; font-style: italic; }

/* ── SERVICES GRID ────────────────────────────────────────── */
.services-section { background: var(--cream); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.service-card {
  background: #fff;
  padding: 30px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.service-card:hover { border-color: var(--orange); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.service-icon {
  width: 50px; height: 50px;
  background: var(--orange-pale);
  border-radius: 11px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.service-icon svg { width: 26px; height: 26px; color: var(--orange); }
.service-card h3 { font-size: 1rem; margin-bottom: 8px; }
.service-card p  { font-size: 0.88rem; }

/* ── PROCESS STEPS ────────────────────────────────────────── */
.process-section { }
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
}
.process-grid::before {
  content: '';
  position: absolute;
  top: 30px; left: 12%; right: 12%;
  height: 2px; background: var(--border);
  z-index: 0;
}
.process-step { text-align: center; position: relative; z-index: 1; }
.step-num {
  width: 60px; height: 60px;
  background: #fff;
  border: 3px solid var(--orange);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
  font-family: var(--font-head); font-weight: 800;
  font-size: 1.2rem; color: var(--orange);
}
.process-step h4 { font-size: 0.95rem; margin-bottom: 8px; }
.process-step p  { font-size: 0.85rem; }

/* ── TEAM ─────────────────────────────────────────────────── */
.team-section { background: var(--cream); }
.team-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 22px;
}
.team-card {
  flex: 0 0 calc(25% - 17px);
  min-width: 150px;
  max-width: 200px;
  text-align: center;
}
.team-avatar {
  width: 78px; height: 78px;
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px;
  font-family: var(--font-head); font-weight: 800; font-size: 1.4rem; color: #fff;
  box-shadow: 0 6px 20px rgba(241,90,40,0.25);
}
.team-card h4 { font-size: 0.95rem; margin-bottom: 4px; }
.team-card p  { font-size: 0.78rem; color: var(--orange); font-weight: 600; font-family: var(--font-head); text-transform: uppercase; letter-spacing: 0.06em; }

/* ── REVIEWS ──────────────────────────────────────────────── */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.review-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
  display: flex; flex-direction: column;
}
.review-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.review-stars { display: flex; gap: 3px; margin-bottom: 14px; }
.review-stars svg { width: 18px; height: 18px; color: #FFC107; fill: #FFC107; }
.review-text {
  font-size: 0.94rem; color: var(--mid-gray);
  font-style: italic; line-height: 1.7;
  margin-bottom: 18px; flex: 1;
}
.review-author { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.review-avatar {
  width: 42px; height: 42px;
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-weight: 700; color: #fff; font-size: 0.88rem;
  flex-shrink: 0;
}
.review-name { font-weight: 600; font-size: 0.9rem; font-family: var(--font-head); }
.review-date { font-size: 0.76rem; color: var(--gray); margin-top: 2px; }
.review-lang-badge {
  display: inline-block;
  background: var(--orange-pale);
  color: var(--orange);
  font-size: 0.7rem; font-weight: 600;
  padding: 2px 7px; border-radius: 100px;
  margin-left: 6px; font-family: var(--font-head);
}

/* ── REVIEW FORM ──────────────────────────────────────────── */
.review-form-wrap {
  max-width: 680px;
  margin: 0 auto;
  background: #fff;
  border-radius: var(--radius-xl);
  padding: 48px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 22px; }
.form-group label {
  display: block;
  font-family: var(--font-head); font-weight: 600; font-size: 0.88rem;
  margin-bottom: 8px; color: var(--dark);
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.94rem; color: var(--dark);
  background: #fff;
  transition: var(--transition);
  appearance: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(241,90,40,0.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }

/* Star Rating Input */
.star-input { display: flex; gap: 6px; flex-direction: row-reverse; justify-content: flex-end; }
.star-input input { display: none; }
.star-input label {
  font-size: 2rem; color: #DDD;
  cursor: pointer; transition: var(--transition);
  display: block;
}
.star-input input:checked ~ label,
.star-input label:hover,
.star-input label:hover ~ label { color: #FFC107; }

/* Form success */
.form-success {
  display: none;
  background: rgba(34,160,107,0.08);
  border: 1.5px solid rgba(34,160,107,0.3);
  border-radius: var(--radius);
  padding: 20px 24px;
  text-align: center;
  color: var(--success);
  font-weight: 600;
  margin-top: 16px;
  font-family: var(--font-head);
}
.form-success.visible { display: block; }

/* ── FAQ ACCORDION ────────────────────────────────────────── */
.faq-list { max-width: 780px; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 0; cursor: pointer;
  font-family: var(--font-head); font-weight: 600; font-size: 1rem;
  color: var(--dark); gap: 16px;
  transition: var(--transition);
}
.faq-q:hover { color: var(--orange); }
.faq-chevron { width: 20px; height: 20px; color: var(--orange); flex-shrink: 0; transition: var(--transition); }
.faq-a { display: none; padding-bottom: 20px; color: var(--mid-gray); line-height: 1.75; font-size: 0.94rem; }
.faq-item.open .faq-a { display: block; }
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-item.open .faq-q { color: var(--orange); }

/* ── PAGE HERO ────────────────────────────────────────────── */
.page-hero {
  background: linear-gradient(145deg, var(--charcoal) 0%, var(--charcoal-2) 100%);
  padding: 130px 0 80px;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 10% 80%, rgba(241,90,40,0.08) 0%, transparent 45%),
                    radial-gradient(circle at 90% 20%, rgba(17,109,255,0.04) 0%, transparent 40%);
  pointer-events: none;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: #fff; margin-bottom: 14px; }
.page-hero h1 .accent { color: var(--orange); }
.page-hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 32px;
}
.page-hero .lead { color: rgba(255,255,255,0.65); font-size: 1.1rem; max-width: 560px; line-height: 1.75; }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 0.83rem; color: rgba(255,255,255,0.45); margin-bottom: 18px; }
.breadcrumb a { color: rgba(255,255,255,0.45); transition: var(--transition); }
.breadcrumb a:hover { color: var(--orange); }
.breadcrumb .sep { color: rgba(255,255,255,0.25); }
.breadcrumb .current { color: var(--orange); }

/* ── INFO CARDS ───────────────────────────────────────────── */
.info-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 32px 36px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}
.info-card h3 { margin-bottom: 18px; display: flex; align-items: center; gap: 10px; }
.info-card h3 svg { width: 22px; height: 22px; color: var(--orange); }

/* Checklist */
.check-list { display: flex; flex-direction: column; }
.check-item {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 11px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
  line-height: 1.55;
}
.check-item:last-child { border-bottom: none; }
.check-icon {
  width: 20px; height: 20px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 1px;
}
.check-icon.yes { background: rgba(34,160,107,0.1); }
.check-icon.yes svg { width: 12px; height: 12px; color: var(--success); }
.check-icon.no  { background: rgba(204,34,0,0.1); }
.check-icon.no svg  { width: 12px; height: 12px; color: var(--red); }
.check-icon.info { background: rgba(17,109,255,0.1); }
.check-icon.info svg { width: 12px; height: 12px; color: var(--blue); }

/* Notice / Highlight */
.notice {
  background: rgba(17,109,255,0.06);
  border: 1.5px solid rgba(17,109,255,0.18);
  border-radius: var(--radius);
  padding: 16px 20px;
  display: flex; gap: 12px;
  font-size: 0.9rem; color: #1a4a99;
  line-height: 1.6;
}
.notice svg { width: 18px; height: 18px; color: var(--blue); flex-shrink: 0; margin-top: 1px; }

.highlight-box {
  background: rgba(241,90,40,0.06);
  border: 1.5px solid rgba(241,90,40,0.2);
  border-radius: var(--radius);
  padding: 22px 26px;
}
.highlight-box h4 { color: var(--orange); margin-bottom: 8px; font-family: var(--font-head); }

/* ── CTA SECTION ──────────────────────────────────────────── */
.cta-section {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
  padding: 88px 0;
  text-align: center;
  position: relative; overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23fff' fill-opacity='0.04'%3E%3Cpath d='M0 0h20v20H0zM20 20h20v20H20z'/%3E%3C/g%3E%3C/svg%3E") repeat;
  pointer-events: none;
}
.cta-section .container { position: relative; z-index: 1; }
.cta-section h2 { color: #fff; margin-bottom: 14px; }
.cta-section p { color: rgba(255,255,255,0.85); font-size: 1.1rem; max-width: 520px; margin: 0 auto 36px; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── SISTER COMPANIES ─────────────────────────────────────── */
.sister-section { background: var(--light-gray); }
.sister-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.sister-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 26px 22px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.sister-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); border-color: rgba(241,90,40,0.2); }
.sister-icon {
  width: 50px; height: 50px;
  background: var(--orange-pale);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px;
}
.sister-icon svg { width: 26px; height: 26px; color: var(--orange); }
.sister-card h4 { font-size: 0.9rem; margin-bottom: 6px; }
.sister-card p  { font-size: 0.8rem; color: var(--gray); }

/* ── FOOTER ───────────────────────────────────────────────── */
footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.6);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-desc { font-size: 0.88rem; color: rgba(255,255,255,0.45); line-height: 1.7; margin: 14px 0 20px; max-width: 270px; }
.footer-contact { display: flex; flex-direction: column; gap: 9px; }
.footer-contact a {
  display: flex; align-items: center; gap: 9px;
  font-size: 0.88rem; color: rgba(255,255,255,0.5);
  transition: var(--transition);
}
.footer-contact a:hover { color: var(--orange); }
.footer-contact svg { width: 15px; height: 15px; color: var(--orange); flex-shrink: 0; }
.footer-col h5 {
  color: #fff;
  font-family: var(--font-head); font-size: 0.78rem;
  text-transform: uppercase; letter-spacing: 0.12em;
  margin-bottom: 16px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 0.88rem; color: rgba(255,255,255,0.45); transition: var(--transition); }
.footer-links a:hover { color: var(--orange); }
.narpm-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  padding: 10px 14px; font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
}
.narpm-badge svg { color: var(--orange); width: 16px; height: 16px; }
.footer-bottom {
  padding: 20px 0;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.8rem;
}
.footer-bottom a { color: rgba(255,255,255,0.4); transition: var(--transition); }
.footer-bottom a:hover { color: var(--orange); }

/* ══════════════════════════════════════════════════════════
   RESPONSIVE — TABLET (≤1024px)
══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .sister-grid { grid-template-columns: repeat(2, 1fr); }
  .map-layout { grid-template-columns: 1fr; }
  #service-map { height: 380px; }
  .team-card { flex: 0 0 calc(25% - 17px); }
}

/* ══════════════════════════════════════════════════════════
   RESPONSIVE — MOBILE (≤768px)
══════════════════════════════════════════════════════════ */
@media (max-width: 768px) {

  /* Base */
  html, body { overflow-x: hidden; }
  section { padding: 52px 0; }
  .container { padding-left: 16px; padding-right: 16px; }
  h1 { font-size: clamp(1.8rem, 7vw, 2.8rem); }
  h2 { font-size: clamp(1.4rem, 5vw, 2rem); }
  h3 { font-size: clamp(1rem, 4vw, 1.3rem); }
  .section-subtitle { font-size: 0.95rem; margin-bottom: 32px; }

  /* Logo */
  .logo-img { height: 30px; }

  /* ── Navbar / Mobile Menu ── */
  .hamburger { display: flex; }
  .navbar-nav {
    display: none;
    position: absolute; top: 68px; left: 0; right: 0;
    background: var(--charcoal);
    padding: 8px 0 16px;
    flex-direction: column;
    gap: 0;
    box-shadow: var(--shadow-lg);
    z-index: 999;
    max-height: calc(100vh - 68px);
    overflow-y: auto;
  }
  .navbar-nav.open { display: flex; }
  .nav-item > .nav-link {
    display: block;
    padding: 12px 20px;
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  .nav-item > .nav-link .chevron { display: none; }
  .dropdown {
    display: flex !important;
    position: static !important;
    flex-direction: column;
    background: rgba(0,0,0,0.25);
    box-shadow: none;
    border-radius: 0;
    padding: 4px 0 4px 12px;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    pointer-events: auto !important;
    min-width: 0;
  }
  .dropdown a {
    padding: 8px 16px;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
    border-bottom: none;
  }
  .dropdown a svg { width: 13px; height: 13px; flex-shrink: 0; }
  .nav-cta { padding: 12px 20px; border-top: 1px solid rgba(255,255,255,0.1); margin-top: 4px; }
  .nav-cta .btn { width: 100%; justify-content: center; }

  /* ── Hero ── */
  .hero { min-height: auto; padding-bottom: 48px; }
  .hero-grid { padding: 48px 16px 32px; gap: 28px; }
  .hero-actions { flex-direction: column; align-items: stretch; gap: 10px; margin-bottom: 28px; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-trust { flex-direction: column; align-items: flex-start; gap: 10px; }
  .hero-badge { font-size: 0.65rem; }

  /* ── Page Hero (inner pages) ── */
  .page-hero { padding: 60px 0 40px; }
  .page-hero h1 { font-size: clamp(1.5rem, 6vw, 2.2rem); }
  .page-hero .lead { font-size: 0.95rem; }
  .page-hero-actions { flex-direction: column; gap: 10px; margin-top: 24px; }
  .page-hero-actions .btn { width: 100%; justify-content: center; }

  /* ── Metrics ── */
  .metrics-inner { grid-template-columns: 1fr 1fr; }
  .metric-item { border-right: none !important; border-bottom: 1px solid rgba(255,255,255,0.2); padding: 22px 12px; }
  .metric-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.2) !important; }
  .metric-num { font-size: 1.8rem; }

  /* ── Grids → single column ── */
  .audience-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }

  /* ── Audience cards ── */
  .audience-card { padding: 28px 22px; }

  /* ── Process ── */
  .process-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .process-grid::before { display: none; }
  .process-step { padding: 0 8px; }

  /* ── Map ── */
  .map-layout { grid-template-columns: 1fr; }
  #service-map { height: 300px; }
  .county-list { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
  .county-card { padding: 14px 16px; }
  .county-card h4 { font-size: 0.88rem; }
  .county-card p { display: none; }

  /* ── Team ── */
  .team-card { flex: 0 0 calc(33.33% - 15px); min-width: 100px; max-width: 160px; }

  /* ── Reviews summary ── */
  .rating-summary { flex-direction: column; align-items: stretch; gap: 16px; padding: 20px 16px; }
  .rating-summary > div:last-child { padding-left: 0 !important; border-top: 1px solid var(--border); padding-top: 16px; }
  .rating-summary > div:last-child .btn { width: 100%; justify-content: center; }

  /* ── Review form ── */
  .review-form-wrap { padding: 24px 16px; }

  /* ── Info cards ── */
  .info-card { padding: 20px 16px; }

  /* ── Pet policy ── */
  .pet-policy-grid { grid-template-columns: 1fr !important; gap: 24px !important; }
  .pet-policy-grid .info-card { order: 2; }
  .pet-policy-grid > div:first-child { order: 1; }

  /* ── Owner form ── */
  .owner-form-wrap { padding: 24px 16px; }
  .owner-form-grid { grid-template-columns: 1fr; gap: 16px; }
  .owner-field-full { grid-column: 1; }

  /* ── Sister companies ── */
  .sister-grid { grid-template-columns: 1fr; }

  /* ── CTA section ── */
  .cta-actions { flex-direction: column; align-items: stretch; gap: 10px; }
  .cta-actions .btn { width: 100%; justify-content: center; }

  /* ── Footer ── */
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

  /* ── Inline grids from owners/tenants (style attribute grids) ── */
  [style*="grid-template-columns:1fr 1fr"],
  [style*="grid-template-columns: 1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }
  [style*="display:grid"],
  [style*="display: grid"] {
    gap: 24px !important;
  }
}

/* ══════════════════════════════════════════════════════════
   RESPONSIVE — SMALL MOBILE (≤480px)
══════════════════════════════════════════════════════════ */
@media (max-width: 480px) {
  section { padding: 44px 0; }
  .logo-img { height: 26px; }
  .team-card { flex: 0 0 calc(50% - 11px); min-width: 110px; max-width: 160px; }
  .process-grid { grid-template-columns: 1fr; }
  .metrics-inner { grid-template-columns: 1fr 1fr; }
  .metric-num { font-size: 1.6rem; }
  .county-list { grid-template-columns: 1fr; }
  .sister-grid { grid-template-columns: 1fr; }
  .hero-grid { padding: 40px 16px 28px; }
}

/* ── OWNER INQUIRY FORM ───────────────────────────────────── */
.owner-form-wrap {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  padding: 40px 44px;
}
.owner-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-top: 32px;
}
.owner-field { display: flex; flex-direction: column; gap: 8px; }
.owner-field-full { grid-column: 1 / -1; }
.owner-field label {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.82rem;
  color: var(--dark);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.owner-field input,
.owner-field select {
  padding: 14px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-family: var(--font-body);
  color: var(--dark);
  background: var(--cream);
  transition: var(--transition);
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
}
.owner-field input:focus,
.owner-field select:focus {
  outline: none;
  border-color: var(--orange);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(241,90,40,0.1);
}
.owner-field input::placeholder { color: var(--gray); }
.owner-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 20 20' fill='%23888'%3E%3Cpath fill-rule='evenodd' d='M5.293 7.293a1 1 0 011.414 0L10 10.586l3.293-3.293a1 1 0 111.414 1.414l-4 4a1 1 0 01-1.414 0l-4-4a1 1 0 010-1.414z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-color: var(--cream);
  padding-right: 38px;
  cursor: pointer;
}
@media (max-width: 640px) {
  .owner-form-wrap { padding: 28px 20px; }
  .owner-form-grid { grid-template-columns: 1fr; }
  .owner-field-full { grid-column: 1; }
}

/* ── PHOTO SUPPORT ────────────────────────────────────────── */
/* Hero background photo */
.hero.has-photo { position: relative; }
.hero.has-photo::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(28,28,28,0.65);
  z-index: 0;
}
.hero.has-photo .hero-bg-pattern,
.hero.has-photo .hero-grid { position: relative; z-index: 1; }

/* Page hero background photo */
.page-hero.has-photo { background-size: cover; background-position: center; }
.page-hero.has-photo::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(28,28,28,0.6);
}
.page-hero.has-photo .container { position: relative; z-index: 1; }

/* Team member photo */
.team-avatar.has-photo {
  background: none;
  box-shadow: none;
  overflow: hidden;
}
.team-avatar.has-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
