/* ============================================================
   CEEMAC REMOVALS & CLEARANCES LTD — SHARED STYLESHEET
   Premium house clearance website for Central Scotland
   ============================================================ */

/* --- CUSTOM PROPERTIES --- */
:root {
  --navy:    #1B3A6B;
  --navy-dark: #122952;
  --cream:   #FAF6F0;
  --gold:    #B8860B;
  --gold-light: #D4A017;
  --gold-pale: #F5EDD4;
  --text:    #1A1A1A;
  --muted:   #5C5C5C;
  --white:   #FFFFFF;
  --border:  #E2D9CE;
  --shadow:  0 4px 24px rgba(27,58,107,0.10);
  --shadow-lg: 0 8px 40px rgba(27,58,107,0.16);
  --radius:  8px;
  --radius-lg: 14px;
  --transition: 0.28s ease;
  --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-sans:  'Inter', 'Segoe UI', system-ui, sans-serif;
  --max-width: 1200px;
}

/* --- RESET & BASE --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 17px;
}

body {
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

a { color: inherit; text-decoration: none; }

ul { list-style: none; }

button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  line-height: 1.25;
  color: var(--navy);
}

h1 { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); font-weight: 600; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

strong { font-weight: 600; }

.text-muted { color: var(--muted); }
.text-gold  { color: var(--gold); }
.text-navy  { color: var(--navy); }
.text-white { color: var(--white); }
.text-center { text-align: center; }

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

.section { padding: 80px 0; }
.section-sm { padding: 56px 0; }
.section-lg { padding: 100px 0; }

.section-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-heading {
  margin-bottom: 16px;
}

.section-subheading {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 620px;
  margin-bottom: 48px;
}

.section-heading + .section-subheading { margin-top: 8px; }

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

.divider {
  width: 56px; height: 3px;
  background: var(--gold);
  margin: 16px 0 32px;
}

.divider-center { margin-left: auto; margin-right: auto; }

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1;
  transition: var(--transition);
  text-decoration: none;
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn-gold {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}

.btn-gold:hover {
  background: #9a700a;
  border-color: #9a700a;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(184,134,11,0.35);
}

.btn-navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.btn-navy:hover {
  background: var(--navy-dark);
  border-color: var(--navy-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(27,58,107,0.35);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}

.btn-outline-white:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
}

.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}

.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--white);
}

.btn-lg {
  padding: 18px 36px;
  font-size: 1.05rem;
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.9rem;
}

.btn svg, .btn .icon { width: 18px; height: 18px; flex-shrink: 0; }

/* --- TOP BAR --- */
.top-bar {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.85);
  font-size: 0.82rem;
  padding: 8px 0;
}

.top-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.top-bar-left {
  display: flex;
  align-items: center;
  gap: 20px;
}

.top-bar-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.top-bar-item svg { width: 14px; height: 14px; opacity: 0.8; }

.top-bar-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.top-bar a {
  color: var(--gold-light);
  font-weight: 600;
  transition: var(--transition);
}

.top-bar a:hover { color: var(--white); }

.sepa-badge {
  background: rgba(184,134,11,0.25);
  border: 1px solid rgba(184,134,11,0.5);
  color: var(--gold-light);
  padding: 2px 10px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

/* --- NAVIGATION --- */
.main-nav {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: box-shadow var(--transition);
}

.main-nav.scrolled { box-shadow: var(--shadow-lg); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  max-width: var(--max-width);
  margin: 0 auto;
  height: 72px;
  gap: 16px;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo-name {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.1;
}

.nav-logo-tagline {
  font-size: 0.7rem;
  color: var(--muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 12px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text);
  border-radius: var(--radius);
  transition: var(--transition);
  white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
  color: var(--navy);
  background: var(--cream);
}

.nav-link.active { font-weight: 600; }

.nav-link svg { width: 14px; height: 14px; transition: transform var(--transition); }
.nav-item:hover .nav-link svg { transform: rotate(180deg); }

/* Dropdown */
.nav-dropdown {
  position: absolute;
  top: calc(100% + 4px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  min-width: 220px;
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition), transform var(--transition);
  transform: translateX(-50%) translateY(-8px);
}

.nav-item:hover .nav-dropdown,
.nav-dropdown:hover {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown a {
  display: block;
  padding: 10px 14px;
  font-size: 0.88rem;
  color: var(--text);
  border-radius: var(--radius);
  transition: var(--transition);
}

.nav-dropdown a:hover {
  background: var(--cream);
  color: var(--navy);
  padding-left: 18px;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.nav-phone {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.nav-phone-label {
  font-size: 0.65rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.nav-phone-number {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  font-family: var(--font-sans);
}

.nav-phone-number:hover { color: var(--gold); }

/* Mobile Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--transition);
}

.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Nav */
.mobile-nav {
  display: none;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 16px 24px 24px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.mobile-nav.open {
  max-height: 600px;
}

.mobile-nav a {
  display: block;
  padding: 12px 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
  border-bottom: 1px solid var(--border);
}

.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover { color: var(--navy); }

.mobile-nav-section {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 16px 0 4px;
}

/* --- HERO --- */
.hero {
  background: var(--navy);
  color: var(--white);
  padding: 88px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(184,134,11,0.12) 0%, transparent 65%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255,255,255,0.04) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(184,134,11,0.2);
  border: 1px solid rgba(184,134,11,0.4);
  color: var(--gold-light);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 24px;
  margin-bottom: 20px;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 20px;
}

.hero h1 em {
  font-style: normal;
  color: var(--gold-light);
}

.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.80);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 520px;
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.hero-quote {
  border-left: 3px solid var(--gold);
  padding: 12px 20px;
  background: rgba(255,255,255,0.07);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 0.92rem;
  color: rgba(255,255,255,0.85);
  font-style: italic;
  max-width: 480px;
}

.hero-quote cite {
  display: block;
  font-style: normal;
  font-size: 0.78rem;
  color: var(--gold-light);
  margin-top: 6px;
  font-weight: 600;
}

.hero-image-box {
  aspect-ratio: 4/3;
  background: rgba(255,255,255,0.08);
  border: 2px solid rgba(184,134,11,0.3);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.4);
  font-size: 0.85rem;
  text-align: center;
  padding: 24px;
  position: relative;
}

.hero-image-box span {
  position: absolute;
  bottom: 16px;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
}

/* Stat Strip */
.stat-strip {
  background: var(--navy-dark);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 28px 0;
}

.stat-strip .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.stat-item {}

.stat-number {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.65);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* --- COMPASSION BANNER --- */
.compassion-banner {
  background: linear-gradient(135deg, #8B6914 0%, var(--gold) 50%, #9a700a 100%);
  color: var(--white);
  padding: 44px 0;
  text-align: center;
}

.compassion-banner h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.3rem, 3vw, 1.9rem);
  color: var(--white);
  margin-bottom: 12px;
}

.compassion-banner p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.9);
  max-width: 680px;
  margin: 0 auto 20px;
}

.compassion-banner .btn {
  background: var(--white);
  color: var(--gold);
  border-color: var(--white);
}

.compassion-banner .btn:hover {
  background: rgba(255,255,255,0.9);
  transform: translateY(-2px);
}

/* --- WHY CEEMAC / TRUST PILLARS --- */
.trust-section {
  background: var(--white);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.trust-card {
  text-align: center;
  padding: 40px 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}

.trust-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.trust-icon {
  width: 64px;
  height: 64px;
  background: var(--cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  border: 2px solid var(--gold-pale);
}

.trust-icon svg {
  width: 28px;
  height: 28px;
  color: var(--gold);
}

.trust-card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.trust-card p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.6;
}

/* --- SERVICES GRID --- */
.services-section {
  background: var(--cream);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  border-color: var(--navy);
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}

.service-card-img {
  height: 200px;
  background: linear-gradient(135deg, var(--navy) 0%, #2a5298 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  font-size: 0.82rem;
  text-align: center;
  padding: 16px;
  position: relative;
  overflow: hidden;
}

.service-card-img::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(transparent, rgba(0,0,0,0.25));
}

.service-card-body {
  padding: 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-card-badge {
  display: inline-block;
  background: var(--gold-pale);
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 12px;
}

.service-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 0.9rem;
  color: var(--muted);
  flex: 1;
  margin-bottom: 20px;
  line-height: 1.6;
}

.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy);
  transition: var(--transition);
}

.service-card-link:hover { color: var(--gold); gap: 10px; }
.service-card-link svg { width: 16px; height: 16px; }

/* --- HOW IT WORKS --- */
.how-it-works {
  background: var(--navy);
  color: var(--white);
}

.how-it-works .section-label { color: var(--gold-light); }
.how-it-works h2 { color: var(--white); }
.how-it-works .section-subheading { color: rgba(255,255,255,0.7); }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 48px;
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 32px;
  left: calc(10% + 24px);
  right: calc(10% + 24px);
  height: 2px;
  background: linear-gradient(to right, rgba(184,134,11,0.4), rgba(184,134,11,0.2));
  z-index: 0;
}

.step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-number {
  width: 64px;
  height: 64px;
  background: var(--gold);
  color: var(--white);
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 4px 16px rgba(184,134,11,0.4);
}

.step h3 {
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 8px;
  font-family: var(--font-sans);
  font-weight: 600;
}

.step p {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.55;
}

/* --- REVIEWS --- */
.reviews-section {
  background: var(--cream);
}

.reviews-header {
  text-align: center;
  margin-bottom: 48px;
}

.stars-display {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin-bottom: 8px;
}

.star {
  font-size: 1.5rem;
  color: #F59E0B;
}

.rating-text {
  font-size: 1.05rem;
  color: var(--muted);
  margin-bottom: 0;
}

.rating-text strong {
  color: var(--navy);
  font-size: 1.15rem;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  position: relative;
  transition: var(--transition);
}

.testimonial-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 16px;
  right: 24px;
  font-family: var(--font-serif);
  font-size: 4rem;
  color: var(--gold-pale);
  line-height: 1;
}

.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
}

.testimonial-stars .star { font-size: 1rem; }

.testimonial-text {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

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

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}

.testimonial-name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--navy);
  line-height: 1.2;
}

.testimonial-meta {
  font-size: 0.78rem;
  color: var(--muted);
}

/* --- BEFORE & AFTER --- */
.before-after-section {
  background: var(--white);
}

.before-after-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 48px;
}

.before-after-pair { }

.before-after-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 16px;
}

.ba-img {
  aspect-ratio: 4/3;
  border-radius: var(--radius);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 12px;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.ba-before {
  background: linear-gradient(160deg, #8B7355 0%, #6B5A3E 100%);
  color: rgba(255,255,255,0.8);
}

.ba-after {
  background: linear-gradient(160deg, var(--navy) 0%, #2a5298 100%);
  color: rgba(255,255,255,0.8);
}

.ba-label {
  display: block;
  background: rgba(0,0,0,0.35);
  padding: 4px 10px;
  border-radius: 20px;
}

.before-after-caption {
  font-size: 0.9rem;
  color: var(--muted);
  text-align: center;
}

.before-after-caption strong {
  display: block;
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 4px;
}

/* --- PROMISE SECTION --- */
.promise-section {
  background: var(--navy);
  color: var(--white);
  text-align: center;
}

.promise-section h2 { color: var(--white); }
.promise-section .divider { background: var(--gold); }

.promise-body {
  max-width: 760px;
  margin: 0 auto;
}

.promise-body p {
  color: rgba(255,255,255,0.82);
  font-size: 1.05rem;
  margin-bottom: 1.1rem;
}

.promise-points {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 32px 0;
  text-align: left;
}

.promise-point {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(184,134,11,0.3);
  border-radius: var(--radius);
  padding: 16px 20px;
}

.promise-point-icon {
  color: var(--gold-light);
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.promise-point p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
  margin: 0;
}

.promise-signature {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--gold-light);
  font-style: italic;
  margin-top: 24px;
}

/* --- QUOTE FORM SECTION --- */
.quote-section {
  background: var(--cream);
}

.quote-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.quote-info h2 { margin-bottom: 12px; }
.quote-info .divider { margin-bottom: 24px; }

.quote-info p {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 28px;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}

.contact-detail:last-child { border-bottom: none; }

.contact-icon {
  width: 40px;
  height: 40px;
  background: var(--navy);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon svg {
  width: 18px;
  height: 18px;
  color: var(--white);
}

.contact-detail-label {
  font-size: 0.75rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-weight: 600;
}

.contact-detail-value {
  font-weight: 600;
  color: var(--navy);
}

.contact-detail-value a { transition: var(--transition); }
.contact-detail-value a:hover { color: var(--gold); }

.quote-form-wrap {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow);
}

/* --- FORMS --- */
.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}

.form-label .required { color: var(--gold); margin-left: 2px; }

.form-control {
  width: 100%;
  padding: 13px 16px;
  font-family: var(--font-sans);
  font-size: 1rem;
  color: var(--text);
  background: var(--cream);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  transition: var(--transition);
  outline: none;
  appearance: none;
}

.form-control:focus {
  border-color: var(--navy);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(27,58,107,0.1);
}

.form-control.error {
  border-color: #C0392B;
  background: #FFF5F5;
}

.form-control::placeholder { color: #9B9B9B; }

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-submit {
  width: 100%;
  justify-content: center;
  font-size: 1.05rem;
  padding: 16px;
}

.form-note {
  font-size: 0.78rem;
  color: var(--muted);
  text-align: center;
  margin-top: 12px;
}

.form-message {
  padding: 14px 18px;
  border-radius: var(--radius);
  font-size: 0.9rem;
  margin-bottom: 16px;
  display: none;
}

.form-message.success {
  background: #ECFDF5;
  border: 1px solid #6EE7B7;
  color: #065F46;
  display: block;
}

.form-message.error {
  background: #FEF2F2;
  border: 1px solid #FCA5A5;
  color: #991B1B;
  display: block;
}

/* --- FAQ ACCORDION --- */
.faq-section {
  background: var(--white);
}

.faq-list {
  max-width: 820px;
  margin: 48px auto 0;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  transition: var(--transition);
}

.faq-item.open {
  border-color: var(--navy);
  box-shadow: var(--shadow);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  text-align: left;
  background: var(--white);
  transition: var(--transition);
}

.faq-item.open .faq-question {
  color: var(--navy);
  background: var(--cream);
}

.faq-question:hover { background: var(--cream); }

.faq-icon {
  width: 28px;
  height: 28px;
  background: var(--cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1.5px solid var(--border);
  transition: var(--transition);
  color: var(--navy);
  font-size: 1.2rem;
  line-height: 1;
}

.faq-item.open .faq-icon {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.36s ease;
}

.faq-answer-inner {
  padding: 0 24px 24px;
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.75;
}

.faq-answer-inner p { margin-bottom: 0.75rem; }
.faq-answer-inner p:last-child { margin-bottom: 0; }

/* --- LOCATIONS SECTION --- */
.locations-section {
  background: var(--cream);
}

.locations-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 40px;
}

.location-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 16px;
  font-size: 0.9rem;
  color: var(--navy);
  font-weight: 500;
  transition: var(--transition);
  text-decoration: none;
}

.location-chip:hover {
  border-color: var(--navy);
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.location-chip svg { width: 14px; height: 14px; color: var(--gold); flex-shrink: 0; }
.location-chip:hover svg { color: var(--gold-light); }

/* --- PAGE HERO (inner pages) --- */
.page-hero {
  background: var(--navy);
  color: var(--white);
  padding: 64px 0 56px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(184,134,11,0.10) 0%, transparent 65%);
  pointer-events: none;
}

.page-hero h1 { color: var(--white); margin-bottom: 16px; }

.page-hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.78);
  max-width: 600px;
  margin-bottom: 28px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 20px;
}

.breadcrumb a { color: rgba(255,255,255,0.65); transition: var(--transition); }
.breadcrumb a:hover { color: var(--gold-light); }
.breadcrumb span { font-size: 0.7rem; }

/* --- CONTENT SECTIONS (inner pages) --- */
.content-section {
  background: var(--white);
  padding: 72px 0;
}

.content-section.alt {
  background: var(--cream);
}

.content-section.dark {
  background: var(--navy);
  color: var(--white);
}

.content-inner {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 64px;
  align-items: start;
}

.content-inner.reverse {
  grid-template-columns: 420px 1fr;
}

.content-inner.reverse .content-text { order: 2; }
.content-inner.reverse .content-img { order: 1; }

.content-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.img-placeholder {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--navy) 0%, #2a5298 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
  text-align: center;
  padding: 24px;
  border-radius: var(--radius-lg);
}

.content-text h2 { margin-bottom: 12px; }
.content-text .divider { margin-bottom: 24px; }

.content-text p {
  color: var(--muted);
  font-size: 0.97rem;
  margin-bottom: 1rem;
}

.dark .content-text p { color: rgba(255,255,255,0.75); }
.dark h2 { color: var(--white); }

.check-list {
  margin: 20px 0 28px;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.93rem;
  color: var(--text);
  margin-bottom: 10px;
  line-height: 1.5;
}

.check-list li::before {
  content: '✓';
  color: var(--gold);
  font-weight: 700;
  font-size: 0.95rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.dark .check-list li { color: rgba(255,255,255,0.82); }

/* CTA inline */
.inline-cta {
  background: var(--gold-pale);
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 20px 24px;
  margin: 28px 0;
}

.inline-cta p {
  color: var(--text);
  font-size: 0.95rem;
  margin-bottom: 12px;
}

.inline-cta .btn { margin-top: 0; }

/* --- ABOUT PAGE --- */
.team-section {
  background: var(--cream);
}

.founder-card {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 56px;
  align-items: start;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.founder-photo {
  aspect-ratio: 3/4;
  background: linear-gradient(160deg, var(--navy) 0%, #2a5298 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.4);
  font-size: 0.85rem;
  text-align: center;
  padding: 24px;
}

.founder-bio {
  padding: 48px 48px 48px 0;
}

.founder-bio h2 { margin-bottom: 4px; }
.founder-bio .founder-role {
  color: var(--gold);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 20px;
  display: block;
}

.founder-bio p { color: var(--muted); font-size: 0.97rem; }

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.value-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
}

.value-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
}

.value-number {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  color: var(--gold-pale);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 8px;
}

/* --- FOOTER --- */
.footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.75);
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand {}

.footer-logo-name {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.footer-logo-tagline {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.footer-sepa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(184,134,11,0.15);
  border: 1px solid rgba(184,134,11,0.35);
  color: var(--gold-light);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 20px;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  color: rgba(255,255,255,0.6);
}

.footer-social a:hover {
  background: var(--gold);
  color: var(--white);
}

.footer-social svg { width: 16px; height: 16px; }

.footer-col h4 {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 20px;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  transition: var(--transition);
}

.footer-col ul li a:hover {
  color: var(--white);
  padding-left: 4px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
}

.footer-contact-item svg {
  width: 16px;
  height: 16px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-contact-item a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.75);
  transition: var(--transition);
}

.footer-contact-item a:hover { color: var(--white); }

.footer-contact-item span {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.5;
}

.footer-bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom a { color: rgba(255,255,255,0.5); transition: var(--transition); }
.footer-bottom a:hover { color: var(--gold-light); }

/* --- MOBILE BOTTOM BAR --- */
.mobile-bottom-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: var(--white);
  border-top: 1px solid var(--border);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.12);
  padding: 12px 16px;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding-bottom: max(12px, env(safe-area-inset-bottom));
}

.mobile-bottom-bar .btn {
  justify-content: center;
  padding: 14px;
  font-size: 0.95rem;
}

/* --- WHATSAPP FLOAT --- */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  z-index: 998;
  transition: var(--transition);
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,0.55);
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
  color: var(--white);
}

/* --- ANIMATIONS --- */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }
.fade-in-delay-5 { transition-delay: 0.5s; }

/* --- PHONE CTA BAR --- */
.phone-cta-bar {
  background: var(--navy);
  color: var(--white);
  padding: 24px 0;
  text-align: center;
}

.phone-cta-bar p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 8px;
}

.phone-cta-bar .phone-link {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold-light);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.phone-cta-bar .phone-link:hover { color: var(--white); }

/* --- BEREAVEMENT PAGE SPECIFIC --- */
.bereavement-empathy {
  background: var(--cream);
  border-left: 5px solid var(--gold);
  padding: 36px 40px;
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  margin: 32px 0;
}

.bereavement-empathy p {
  font-size: 1.1rem;
  line-height: 1.85;
  color: var(--text);
  font-style: italic;
}

.process-list {
  counter-reset: process;
  margin: 28px 0;
}

.process-item {
  counter-increment: process;
  display: flex;
  gap: 20px;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
}

.process-item:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }

.process-number {
  width: 40px;
  height: 40px;
  background: var(--navy);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.95rem;
  flex-shrink: 0;
  font-family: var(--font-serif);
}

.process-content h4 { margin-bottom: 6px; color: var(--navy); }
.process-content p { font-size: 0.92rem; color: var(--muted); margin: 0; }

/* Alert box */
.alert-box {
  background: var(--gold-pale);
  border: 1.5px solid var(--gold);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin: 24px 0;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.alert-box svg { width: 20px; height: 20px; color: var(--gold); flex-shrink: 0; margin-top: 2px; }

.alert-box p { font-size: 0.92rem; color: var(--text); margin: 0; }

/* --- LOCATION PAGES --- */
.area-coverage {
  background: var(--cream);
}

.coverage-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 36px;
}

.coverage-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
  transition: var(--transition);
}

.coverage-card:hover {
  border-color: var(--navy);
  transform: translateY(-3px);
}

.coverage-card h4 { font-size: 1rem; margin-bottom: 4px; }
.coverage-card p { font-size: 0.82rem; color: var(--muted); margin: 0; }

/* --- CONTACT PAGE --- */
.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 48px 0;
}

.contact-info-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
}

.contact-info-card:hover {
  border-color: var(--navy);
  box-shadow: var(--shadow);
}

.contact-info-card .contact-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  border-radius: 50%;
}

.contact-info-card h3 { font-size: 1.05rem; margin-bottom: 8px; }
.contact-info-card p { font-size: 0.9rem; color: var(--muted); margin: 0; }
.contact-info-card a { color: var(--navy); font-weight: 600; transition: var(--transition); }
.contact-info-card a:hover { color: var(--gold); }

/* --- RESPONSIVE --- */
@media (max-width: 1100px) {
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  .steps-grid::before { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-image-box { display: none; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: 1fr; }
  .content-inner,
  .content-inner.reverse { grid-template-columns: 1fr; }
  .content-inner.reverse .content-text { order: 1; }
  .content-inner.reverse .content-img { order: 2; }
  .quote-inner { grid-template-columns: 1fr; gap: 40px; }
  .before-after-grid { grid-template-columns: 1fr; }
  .founder-card { grid-template-columns: 1fr; }
  .founder-photo { aspect-ratio: 2/1; }
  .founder-bio { padding: 32px; }
  .contact-info-grid { grid-template-columns: 1fr; }
  .locations-grid { grid-template-columns: repeat(2, 1fr); }
  .coverage-grid { grid-template-columns: 1fr 1fr; }
  .promise-points { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  html { font-size: 16px; }

  .top-bar .container { justify-content: center; }
  .top-bar-left { flex-wrap: wrap; justify-content: center; gap: 12px; }
  .top-bar-right { display: none; }

  .nav-links { display: none; }
  .nav-phone { display: none; }
  .nav-toggle { display: flex; }
  .mobile-nav { display: block; }
  .nav-right .btn { display: none; }

  .hero { padding: 56px 0 48px; }
  .hero-ctas { flex-direction: column; align-items: flex-start; }
  .hero-ctas .btn { width: 100%; justify-content: center; }

  .stat-strip .container {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .section { padding: 56px 0; }
  .section-lg { padding: 72px 0; }

  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }

  .services-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr; gap: 16px; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .locations-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .quote-form-wrap { padding: 28px 20px; }
  .values-grid { grid-template-columns: 1fr; }
  .coverage-grid { grid-template-columns: 1fr; }

  .mobile-bottom-bar { display: grid; }

  .whatsapp-float {
    bottom: 88px;
    right: 16px;
    width: 50px;
    height: 50px;
  }

  .bereavement-empathy { padding: 24px 20px; }
  .page-hero { padding: 48px 0 40px; }
}

@media (max-width: 480px) {
  .stat-strip .container { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: 1fr; }
  .locations-grid { grid-template-columns: 1fr; }
  h1 { font-size: 1.8rem; }
  h2 { font-size: 1.5rem; }
}

/* --- PRINT --- */
@media print {
  .main-nav, .top-bar, .mobile-bottom-bar, .whatsapp-float { position: static; box-shadow: none; }
}
