/* ================================================================
   south-west-london.css
   Helpful Movers -South West London Removals Page
   Premium responsive design matching helpfulmovers.co.uk
   ================================================================ */

/* ── Design Tokens ── */
:root {
  --orange:      #c2410c;
  --orange-h:    #e05a0e;
  --blue:        #0b4cb4;
  --blue-dark:   #06347a;
  --ink:         #111827;
  --ink-mid:     #444;
  --ink-light:   #666;
  --bg-alt:      #f5f4f4;
  --white:       #fff;
  --card-border: #e2e8f0;
  --line:        #e2e8f0;
  --radius-sm:   12px;
  --radius-md:   16px;
  --radius-lg:   24px;
  --shadow-sm:   0 4px 16px rgba(0,0,0,0.07);
  --shadow-md:   0 12px 36px rgba(0,0,0,0.10);
  --transition:  0.25s cubic-bezier(0.4,0,0.2,1);
      --blue: #0b4cb4;
    --blue-dark: #06347a
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: "Poppins", sans-serif; color: var(--ink); background: #fff; line-height: 1.6; }
ul { list-style: none; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }


.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  color: #fff;
  padding: 100px 5% 80px;
  background:
    linear-gradient(90deg,
      rgba(2,12,35,0.97) 0%,
      rgba(6,52,122,0.92) 35%,
      rgba(11,76,180,0.72) 60%,
      rgba(255,255,255,0) 100%),
    url('images/final-img/Helpful-Movers-UK-Removal-Company.webp.webp') center center / cover no-repeat;
  background-attachment: scroll;
}
.hero::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(194,65,12,0.10) 0%, transparent 65%);
  pointer-events: none;
}

.hero-inner { position: relative; z-index: 1; max-width: 720px; }

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(194,65,12,0.18);
  border: 1px solid rgba(194,65,12,0.45);
  color: #ffb899;
  padding: 7px 18px;
  border-radius: 50px;
  font-size: 13px; font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 28px;
}
.hero-eyebrow i { color: var(--orange); }

.hero h1 {
  font-size: clamp(30px, 4.5vw, 56px);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 24px;
  color: #fff;
}
.hero h1 span { color: #ffb366; }

.hero-sub {
  font-size: clamp(15px, 1.8vw, 18px);
  line-height: 1.75;
  color: rgba(255,255,255,0.85);
  margin-bottom: 40px;
  max-width: 600px;
}

.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 42px; }

.btn-primary {
  padding: 15px 32px;
  background: linear-gradient(135deg, var(--orange), var(--orange-h));
  color: #fff;
  border: none; border-radius: 50px;
  font-size: 15px; font-weight: 700;
  cursor: pointer;
  transition: all var(--transition);
  box-shadow: 0 6px 20px rgba(194,65,12,0.4);
  display: inline-flex; align-items: center; gap: 8px;
  font-family: "Poppins", sans-serif;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 28px rgba(194,65,12,0.5); }

.btn-secondary {
  padding: 14px 30px;
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.55);
  border-radius: 50px;
  font-size: 15px; font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  display: inline-flex; align-items: center; gap: 8px;
  font-family: "Poppins", sans-serif;
}
.btn-secondary:hover { background: rgba(255,255,255,0.12); border-color: #fff; }

.trust-strip {
  display: flex; align-items: center; gap: 18px;
  flex-wrap: wrap;
}
.trust-badge {
  display: flex; align-items: center; gap: 7px;
  font-size: 13px; font-weight: 600;
  color: rgba(255,255,255,0.88);
}
.trust-badge i { color: #ffc107; }
.trust-sep { width: 1px; height: 18px; background: rgba(255,255,255,0.28); }

/* ================================================================
   SHARED / UTILITY
================================================================ */
.container { max-width: 1360px; }
.section-title {
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 700;
  color: #0b1f3a;
  line-height: 1.25;
  margin-bottom: 16px;
}
.section-desc {
  font-size: 16px;
  line-height: 1.75;
  color: #555;
}

/* ================================================================
   INTRO
================================================================ */
.intro-section { padding: 96px 5%; background: #fff; }

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.intro-content .section-desc { max-width: 100%; margin-bottom: 0; }

.intro-visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(11,76,180,0.14);
}
.intro-visual img {
  width: 100%; height: 575px;
  object-fit: cover; display: block;
}
.intro-overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 22px 26px;
  background: linear-gradient(0deg, rgba(6,52,122,0.93) 0%, transparent 100%);
}
.intro-overlay p { color: #fff; font-weight: 600; font-size: 15px; margin: 0; }

.intro-stats {
  display: flex; gap: 28px; margin-top: 32px; flex-wrap: wrap;
}
.i-stat { text-align: center; }
.i-stat strong { display: block; font-size: 28px; font-weight: 800; color: var(--blue); }
.i-stat span { font-size: 13px; color: #888; font-weight: 500; }


/* ================================================================
   WHY CHOOSE
================================================================ */
.why-section { padding: 96px 5%; background: var(--bg-alt); }
.why-header { text-align: center; margin-bottom: 60px; }
.why-header .section-desc { margin: 0 auto; max-width: 820px; }

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.why-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 36px 28px;
  border: 1px solid var(--card-border);
  transition: all var(--transition);
  position: relative; overflow: hidden;
}
.why-card::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px;
  background: #ef62008a;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.why-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.why-card:hover::after { transform: scaleX(1); }

.why-icon {
  width: 54px; height: 54px;
  background: linear-gradient(135deg, rgba(11,76,180,0.09), rgba(6,52,122,0.04));
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  font-size: 22px; color: var(--blue);
  transition: all var(--transition);
}
.why-card:hover .why-icon { background: linear-gradient(135deg, #dbeafe, #eff6ff); color: #2563eb; }
.why-card h3 { font-size: 17px; font-weight: 700; color: #111; margin-bottom: 10px; }
.why-card p { font-size: 14px; color: var(--ink-light); line-height: 1.65; }

.areas-section {
  padding: 96px 5%;
  background: linear-gradient(135deg, #0b4cb4 0%, var(--blue-dark) 100%) !important;
}
.areas-section .section-title { color: #fff; text-align: center; }
.areas-section .section-desc { color: rgba(255,255,255,0.82); }

.areas-grid {
  display: flex; flex-wrap: wrap;
  gap: 12px; justify-content: center;
  max-width: 900px; margin: 0 auto 50px;
}
.area-chip {
  padding: 10px 20px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 50px;
  font-size: 14px; font-weight: 600; color: #fff;
  cursor: default;
  transition: all var(--transition);
  display: flex; align-items: center; gap: 7px;
}
.area-chip:hover { background: rgba(255,255,255,0.2); transform: translateY(-2px); }
.area-chip i { font-size: 11px; color: #ffb899; }

.areas-cta { text-align: center; }
.btn-white {
  padding: 15px 36px;
  background: #fff;
  color: var(--blue-dark);
  border: none; border-radius: 50px;
  font-size: 15px; font-weight: 700;
  cursor: pointer; font-family: "Poppins", sans-serif;
  transition: all var(--transition);
  display: inline-flex; align-items: center; gap: 8px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.18);
}
.btn-white:hover { transform: translateY(-3px); box-shadow: 0 14px 32px rgba(0,0,0,0.26); }

/* ================================================================
   CHALLENGES (new two-column image + cards layout)
================================================================ */
.challenges-section { padding: 96px 5% }

.challenges-layout {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 64px;
  align-items: center;
}

.challenges-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(11,76,180,0.14);
}
.challenges-img-wrap img {
  width: 100%; height: 480px;
  object-fit: cover; display: block;
}
.challenges-img-badge {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 20px 24px;
  background: linear-gradient(0deg, rgba(6,52,122,0.92) 0%, transparent 100%);
  display: flex; align-items: center; gap: 12px; color: #fff;
}
.challenges-img-badge i { font-size: 20px; color: #ffc107; flex-shrink: 0; }
.challenges-img-badge span { font-size: 14px; font-weight: 600; }

.challenges-right .section-title { font-size: clamp(22px, 2.5vw, 32px); }

.challenges-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.challenge-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 24px 20px;
  border: 1px solid var(--card-border);
  display: flex; gap: 14px;
  transition: all var(--transition);
}
.challenge-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.challenge-num {
  font-size: 34px; font-weight: 800;
  color: rgba(11,76,180,0.08);
  line-height: 1; flex-shrink: 0;
  font-style: italic;
}
.challenge-body h3 { font-size: 15px; font-weight: 700; color: #111; margin-bottom: 6px; }
.challenge-body p { font-size: 13px; color: var(--ink-light); line-height: 1.6; }


/* ================================================================
   STATS
================================================================ */
.stats-section {
  padding: 96px 5%;
  background: linear-gradient(135deg, #0b1f3a 0%, #06347a 55%, #0b4cb4 100%);
  position: relative; overflow: hidden;
}
.stats-section::before {
  content: '';
  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='none'%3E%3Cg fill='%23ffffff' fill-opacity='0.025'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.stats-header { text-align: center; margin-bottom: 56px; }
.stats-header .section-title { color: #fff; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  position: relative; z-index: 1;
}
.stat-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: var(--radius-md);
  padding: 36px 16px;
  text-align: center;
  backdrop-filter: blur(8px);
  transition: all var(--transition);
}
.stat-card:hover { background: rgba(255,255,255,0.13); transform: translateY(-6px); }
.stat-value { font-size: clamp(32px, 4vw, 44px); font-weight: 800; color: #fff; line-height: 1; margin-bottom: 8px; }
.stat-value span { color: #ffb366; }
.stat-label { font-size: 13px; color: rgba(255,255,255,0.72); font-weight: 500; line-height: 1.4; }



@media (max-width: 560px) {
    .why-grid {
    display: grid;
    grid-template-columns: 1FR;
    gap: 24px;
}
.intro-grid {
    display: grid;
    grid-template-columns: 1fr;
}
.intro-visual img {
    width: 100%;
    height: 335px;
}
.hero-inner
{
    padding: 0px 30px;
}
.challenges-layout {
    display: grid;
    grid-template-columns: 1fr;
}
.challenges-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}
.stats-grid {
    display: grid;
    grid-template-columns: 1fr;
}
.stats-header
{
    margin-bottom: 20px;

}
.section-head h2 {
    font-size: 24px;
            margin-bottom: 10px;
}
.section-head
{
    margin-bottom: 30px;
}
}
.domestic-hero {
    background:
    linear-gradient(90deg,
      rgba(2,12,35,0.97) 0%,
      rgba(6,52,122,0.85) 45%,
      rgba(255,255,255,0.1) 100%),
    url('../images/Helpful-Movers-UK-Removal-Company.webp') center center / cover no-repeat !important;
}
