/* ============================================
   JJ Removals - Main Stylesheet
   Manchester Removals Company
   ============================================ */

/* ---- CSS Variables ---- */
:root {
  --red: #e10600;
  --red-dark: #b80500;
  --red-light: #fde8e8;
  --blue: #0b3d91;
  --blue-dark: #072a6b;
  --blue-light: #e8eef8;
  --white: #ffffff;
  --off-white: #f8f9fa;
  --text-dark: #1a1a2e;
  --text-grey: #4b5563;
  --border: #e5e7eb;
  --shadow: 0 4px 6px -1px rgba(0,0,0,.1), 0 2px 4px -1px rgba(0,0,0,.06);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,.1), 0 4px 6px -2px rgba(0,0,0,.05);
  --shadow-xl: 0 20px 40px -8px rgba(0,0,0,.15);
  --radius: 8px;
  --radius-lg: 16px;
  --transition: all .3s ease;
  --max-width: 1200px;
}

/* ---- Base Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; }

/* ---- Typography ---- */
h1, h2, h3, h4, h5, h6 { font-weight: 700; line-height: 1.2; color: var(--text-dark); }
h1 { font-size: clamp(2rem, 5vw, 3.25rem); }
h2 { font-size: clamp(1.625rem, 4vw, 2.25rem); }
h3 { font-size: clamp(1.125rem, 2.5vw, 1.375rem); }
p  { color: var(--text-grey); line-height: 1.75; }

/* ---- Layout Utilities ---- */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 1.5rem; }
.section-padding { padding: 5rem 0; }

.section-tag {
  display: inline-block;
  font-size: .8125rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--red); margin-bottom: .75rem;
}

.section-header { margin-bottom: 3rem; }
.section-header.centered { text-align: center; }
.section-header.centered .section-subtitle { margin: .75rem auto 0; }
.section-subtitle { font-size: 1.0625rem; color: var(--text-grey); max-width: 580px; margin-top: .75rem; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .875rem 2rem; border-radius: var(--radius);
  font-weight: 600; font-size: 1rem;
  cursor: pointer; transition: var(--transition);
  border: 2px solid transparent; white-space: nowrap;
}
.btn-primary { background: var(--red); color: var(--white); border-color: var(--red); }
.btn-primary:hover { background: var(--red-dark); border-color: var(--red-dark); transform: translateY(-2px); box-shadow: 0 8px 25px rgba(225,6,0,.35); }
.btn-secondary { background: transparent; color: var(--blue); border-color: var(--blue); }
.btn-secondary:hover { background: var(--blue); color: var(--white); transform: translateY(-2px); }
.btn-white { background: var(--white); color: var(--blue); border-color: var(--white); }
.btn-white:hover { background: transparent; color: var(--white); }
.btn-lg { padding: 1rem 2.5rem; font-size: 1.0625rem; }

/* ============================================
   HEADER
   ============================================ */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.header.scrolled { box-shadow: var(--shadow); }

.header-inner {
  display: flex; align-items: center;
  justify-content: space-between;
  height: 70px; gap: 1.5rem;
}

.logo-wrap { display: flex; flex-direction: column; gap: .4rem; flex-shrink: 0; }
.logo { display: flex; align-items: center; gap: .75rem; flex-shrink: 0; }
.logo-cta {
  font-size: .75rem !important; padding: .3rem .875rem !important;
  border-radius: 20px !important; font-weight: 700 !important;
  display: inline-block; width: fit-content;
}
.logo-icon {
  width: 44px; height: 44px;
  background: var(--blue); border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-weight: 800; font-size: 1.125rem; letter-spacing: -1px;
}
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-name { font-weight: 800; font-size: 1.25rem; color: var(--blue); }
.logo-tagline { font-size: .6875rem; color: var(--red); font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }

.nav { display: flex; align-items: center; gap: .125rem; }
.nav a {
  padding: .5rem .875rem; font-size: .9375rem; font-weight: 500;
  color: var(--text-dark); border-radius: var(--radius); transition: var(--transition);
}
.nav a:hover { color: var(--blue); background: var(--blue-light); }

.header-actions { display: flex; align-items: center; gap: 1rem; flex-shrink: 0; }
.header-phone {
  display: flex; align-items: center; gap: .5rem;
  color: var(--text-dark); font-weight: 600; font-size: .9375rem;
}
.header-phone svg { color: var(--blue); }

/* Mobile Menu Button */
.mobile-menu-btn {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: .5rem;
}
.mobile-menu-btn span {
  display: block; width: 24px; height: 2px;
  background: var(--text-dark); transition: var(--transition); border-radius: 2px;
}
.mobile-menu-btn.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile-menu-btn.open span:nth-child(2) { opacity: 0; }
.mobile-menu-btn.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Nav */
.mobile-nav {
  display: none; position: fixed; top: 70px; left: 0; right: 0;
  background: var(--white); border-bottom: 1px solid var(--border);
  padding: 1rem 1.5rem 1.5rem; box-shadow: var(--shadow-lg);
  z-index: 999; flex-direction: column; gap: .25rem;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  display: block; padding: .75rem 1rem; font-weight: 500;
  color: var(--text-dark); border-radius: var(--radius); transition: var(--transition);
}
.mobile-nav a:hover { background: var(--blue-light); color: var(--blue); }
.mobile-nav .btn { margin-top: .75rem; text-align: center; justify-content: center; }

/* ============================================
   HERO
   ============================================ */
.hero {
  padding-top: 70px;
  min-height: 100vh;
  display: flex; align-items: center;
  background: linear-gradient(135deg, #edf2ff 0%, #ffffff 55%, #fff0f0 100%);
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: 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' fill-rule='evenodd'%3E%3Cg fill='%230b3d91' fill-opacity='0.04'%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");
}

.hero-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center;
  position: relative; z-index: 1; padding: 3rem 0;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--blue-light); color: var(--blue);
  padding: .4375rem 1rem; border-radius: 100px;
  font-size: .8125rem; font-weight: 700; margin-bottom: 1.5rem;
  border: 1px solid rgba(11,61,145,.15);
}
.badge-dot {
  width: 8px; height: 8px; background: var(--red);
  border-radius: 50%; animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .7; transform: scale(1.3); }
}

.hero h1 { color: var(--text-dark); margin-bottom: 1.25rem; }
.hero h1 .accent { color: var(--red); }
.hero-sub { font-size: 1.0625rem; color: var(--text-grey); margin-bottom: 2rem; }
.hero-actions { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.5rem; }

.hero-trust { display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: .5rem; font-size: .875rem; font-weight: 500; }
.trust-item svg { color: var(--red); flex-shrink: 0; }

/* Hero Image */
.hero-visual { position: relative; }
.hero-image-placeholder {
  width: 100%; aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--blue-light), #d4e0f7);
  border-radius: var(--radius-lg);
  border: 2px dashed rgba(11,61,145,.25);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 1rem; color: var(--blue);
  position: relative; overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.hero-image-placeholder::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 70% 30%, rgba(225,6,0,.04) 0%, transparent 60%);
}
.placeholder-icon-wrap {
  width: 72px; height: 72px;
  background: rgba(11,61,145,.1); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  position: relative; z-index: 1;
}
.placeholder-icon-wrap svg { color: var(--blue); }
.placeholder-label { text-align: center; position: relative; z-index: 1; }
.placeholder-label strong { display: block; font-size: 1rem; color: var(--blue); margin-bottom: .25rem; }
.placeholder-label span { font-size: .8125rem; color: var(--text-grey); }

/* Hero Stats */
.hero-stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1rem; margin-top: 1.5rem;
}
.stat-box {
  background: var(--white); border-radius: var(--radius);
  padding: 1rem .75rem; text-align: center;
  box-shadow: var(--shadow); border: 1px solid var(--border);
}
.stat-number { font-size: 1.625rem; font-weight: 800; color: var(--blue); line-height: 1; }
.stat-label { font-size: .75rem; color: var(--text-grey); font-weight: 500; margin-top: .25rem; }

/* ============================================
   ABOUT
   ============================================ */
.about { background: var(--white); }
.about-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }

.about-intro { font-size: 1.0625rem; color: var(--text-grey); line-height: 1.8; margin-bottom: 1.75rem; }
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.about-feature { display: flex; gap: .875rem; align-items: flex-start; }
.feature-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: var(--blue-light); border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center; color: var(--blue);
}
.about-feature h4 { font-size: .9375rem; margin-bottom: .2rem; }
.about-feature p { font-size: .8125rem; }

/* About Visual Card */
.about-visual { position: relative; }
.about-card {
  background: linear-gradient(145deg, var(--blue) 0%, var(--blue-dark) 100%);
  border-radius: var(--radius-lg); padding: 2.5rem; color: var(--white);
  box-shadow: var(--shadow-xl);
}
.about-card-heading { color: var(--white); margin-bottom: 1.5rem; }
.about-services-list { display: flex; flex-direction: column; gap: .875rem; }
.about-service-item {
  display: flex; align-items: center; gap: 1rem;
  padding: .875rem 1.125rem;
  background: rgba(255,255,255,.08);
  border-radius: var(--radius); font-weight: 500;
  font-size: .9375rem; transition: var(--transition);
}
.about-service-item:hover { background: rgba(255,255,255,.14); }
.about-service-item svg { color: var(--red); flex-shrink: 0; }

.about-badge {
  position: absolute; bottom: -1.5rem; right: -1.5rem;
  background: var(--red); color: var(--white);
  padding: 1.5rem; border-radius: var(--radius-lg);
  text-align: center; min-width: 130px;
  box-shadow: 0 8px 32px rgba(225,6,0,.4);
}
.about-badge .big-num { font-size: 2.25rem; font-weight: 800; line-height: 1; display: block; }
.about-badge .badge-lbl { font-size: .75rem; font-weight: 600; opacity: .9; margin-top: .25rem; }

/* ============================================
   SERVICES
   ============================================ */
.services { background: var(--off-white); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }

.service-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 2rem; border: 1px solid var(--border);
  transition: var(--transition); position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--red); transform: scaleX(0); transition: var(--transition);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); border-color: transparent; }
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 56px; height: 56px;
  background: var(--blue-light); border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: var(--blue); margin-bottom: 1.25rem; transition: var(--transition);
}
.service-card:hover .service-icon { background: var(--blue); color: var(--white); }
.service-card h3 { font-size: 1.125rem; margin-bottom: .625rem; }
.service-card p { font-size: .9rem; }
.service-more {
  display: inline-flex; align-items: center; gap: .375rem;
  margin-top: 1rem; font-size: .875rem; font-weight: 600;
  color: var(--blue); transition: var(--transition);
}
.service-more:hover { color: var(--red); gap: .625rem; }

/* ============================================
   AREAS WE COVER
   ============================================ */
.areas { background: var(--white); }

.areas-grid {
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 1rem; margin-bottom: 2.5rem;
}
.area-card {
  background: var(--off-white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.25rem 1rem;
  text-align: center; transition: var(--transition); cursor: pointer; text-decoration: none; display: block;
}
.area-card:hover { background: var(--blue); border-color: var(--blue); transform: translateY(-3px); box-shadow: var(--shadow); }
.area-card:hover .area-name { color: var(--white); }
.area-card:hover .area-icon { filter: brightness(10); }
.area-icon { font-size: 1.375rem; margin-bottom: .375rem; display: block; }
.area-name { font-size: .9375rem; font-weight: 600; color: var(--text-dark); transition: var(--transition); }

.areas-seo-block {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  border-radius: var(--radius-lg); padding: 2.5rem 3rem;
  display: flex; align-items: center; gap: 2rem;
  box-shadow: var(--shadow-lg);
}
.seo-block-icon {
  width: 64px; height: 64px; flex-shrink: 0;
  background: rgba(255,255,255,.1); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.seo-block-text h3 { color: var(--white); margin-bottom: .5rem; }
.seo-block-text p { color: rgba(255,255,255,.8); font-size: 1rem; }

/* ============================================
   HOW IT WORKS
   ============================================ */
.process { background: var(--off-white); }
.process-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 2rem; position: relative;
}
.process-connector {
  position: absolute; top: 2rem;
  left: calc(12.5% + 1.5rem); right: calc(12.5% + 1.5rem);
  height: 2px;
  background: linear-gradient(to right, var(--blue) 0%, var(--red) 100%);
  opacity: .2; z-index: 0;
}

.process-step { text-align: center; position: relative; z-index: 1; }
.step-circle {
  width: 64px; height: 64px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem; font-weight: 800; font-size: 1.25rem;
  transition: var(--transition);
}
.process-step:nth-child(1) .step-circle { background: var(--blue); color: var(--white); box-shadow: 0 4px 20px rgba(11,61,145,.3); }
.process-step:nth-child(2) .step-circle { background: var(--white); color: var(--blue); border: 3px solid var(--blue); }
.process-step:nth-child(3) .step-circle { background: var(--white); color: var(--red); border: 3px solid var(--red); }
.process-step:nth-child(4) .step-circle { background: var(--red); color: var(--white); box-shadow: 0 4px 20px rgba(225,6,0,.3); }
.step-icon { font-size: 1.75rem; margin-bottom: .375rem; }
.process-step h3 { font-size: 1.0625rem; margin-bottom: .625rem; }
.process-step p { font-size: .875rem; }

/* ============================================
   QUOTE FORM
   ============================================ */
.quote-section { background: var(--white); }
.quote-section-inner { display: grid; grid-template-columns: 5fr 8fr; gap: 4rem; align-items: start; }

.quote-info-panel { position: sticky; top: 90px; }
.quote-info-panel h2 { margin-bottom: .875rem; }
.quote-info-panel > p { margin-bottom: 2rem; }

.quote-perks { display: flex; flex-direction: column; gap: .875rem; }
.perk-item {
  display: flex; align-items: center; gap: .875rem;
  padding: 1rem; background: var(--off-white);
  border-radius: var(--radius); font-weight: 500; font-size: .9375rem;
}
.perk-item svg { color: var(--blue); flex-shrink: 0; }

/* Form Card */
.form-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 2.5rem; border: 1px solid var(--border); box-shadow: var(--shadow);
}
.form-card-title { font-size: 1.375rem; margin-bottom: 1.75rem; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block; font-size: .875rem; font-weight: 600;
  color: var(--text-dark); margin-bottom: .5rem;
}
.form-group label .req { color: var(--red); margin-left: 2px; }

.form-control {
  width: 100%; padding: .75rem 1rem;
  border: 2px solid var(--border); border-radius: var(--radius);
  font-size: .9375rem; font-family: inherit; color: var(--text-dark);
  background: var(--white); transition: var(--transition); outline: none;
  -webkit-appearance: none; appearance: none;
}
.form-control:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(11,61,145,.1); }
.form-control::placeholder { color: #767676; }
textarea.form-control { resize: vertical; min-height: 100px; }
select.form-control {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right .875rem center;
  padding-right: 2.5rem; cursor: pointer;
}

.btn-submit {
  width: 100%; padding: 1rem;
  background: var(--red); color: var(--white);
  border: none; border-radius: var(--radius);
  font-size: 1.0625rem; font-weight: 700;
  cursor: pointer; transition: var(--transition);
  font-family: inherit;
  display: flex; align-items: center; justify-content: center;
  gap: .75rem; letter-spacing: .02em;
}
.btn-submit:hover {
  background: var(--red-dark); transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(225,6,0,.35);
}
.form-footer-note { text-align: center; font-size: .8125rem; color: var(--text-grey); margin-top: .875rem; }

/* ---- Success State ---- */
.form-success { display: none; text-align: center; padding: 2rem 1rem; }
.form-success.active { display: block; }
.success-check {
  width: 80px; height: 80px; border-radius: 50%;
  background: #dcfce7; display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.5rem; color: #16a34a;
}
.form-success h3 { font-size: 1.5rem; margin-bottom: .75rem; }
.form-success p { font-size: 1rem; }

.quote-ref-box {
  background: var(--off-white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.25rem; margin: 1.5rem 0;
}
.quote-ref-id { font-size: .8125rem; color: var(--text-grey); margin-bottom: .625rem; }
.quote-link-row {
  display: flex; align-items: center; gap: .75rem;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: .75rem 1rem;
}
.quote-link-url { flex: 1; font-size: .875rem; color: var(--blue); word-break: break-all; font-weight: 500; }
.btn-copy {
  flex-shrink: 0; padding: .375rem .875rem;
  background: var(--blue); color: var(--white); border: none;
  border-radius: 6px; font-size: .8125rem; font-weight: 600;
  cursor: pointer; transition: var(--transition); font-family: inherit;
}
.btn-copy:hover { background: var(--blue-dark); }
.quote-save-note { font-size: .8125rem; color: var(--text-grey); }

