/* ============================================================
   ToShift Moving Inc. — Main Stylesheet
   Colors: Green #2E7D32, Black #111111, White #FFFFFF, Red #D32F2F
   ============================================================ */

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

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

:root {
  --green:       #2E7D32;
  --green-light: #43A047;
  --green-dark:  #1B5E20;
  --black:       #111111;
  --gray-dark:   #333333;
  --gray-mid:    #666666;
  --gray-light:  #F4F4F4;
  --white:       #FFFFFF;
  --red:         #D32F2F;
  --shadow-sm:   0 2px 8px rgba(0,0,0,.08);
  --shadow-md:   0 6px 24px rgba(0,0,0,.12);
  --shadow-lg:   0 16px 48px rgba(0,0,0,.16);
  --radius:      10px;
  --radius-lg:   18px;
  --transition:  .25s ease;
}

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

body {
  font-family: 'Inter', sans-serif;
  color: var(--gray-dark);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

h1,h2,h3,h4,h5 {
  font-family: 'Poppins', sans-serif;
  color: var(--black);
  line-height: 1.25;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ── UTILITY ──────────────────────────────────────────────── */
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.section { padding: 90px 0; }
.section-sm { padding: 60px 0; }
.text-center { text-align: center; }
.text-green { color: var(--green); }
.text-red   { color: var(--red); }

.section-label {
  display: inline-block;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--green);
  background: #E8F5E9;
  padding: 4px 14px;
  border-radius: 30px;
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  margin-bottom: 14px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--gray-mid);
  max-width: 620px;
  margin: 0 auto 50px;
}

/* ── BUTTONS ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: .95rem;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(46,125,50,.35);
}
.btn-primary:hover { background: var(--green-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(46,125,50,.4); }

.btn-secondary {
  background: var(--white);
  color: var(--green);
  border: 2px solid var(--green);
}
.btn-secondary:hover { background: var(--green); color: var(--white); }

.btn-wa {
  background: #25D366;
  color: var(--white);
  box-shadow: 0 4px 16px rgba(37,211,102,.35);
}
.btn-wa:hover { background: #1DA851; transform: translateY(-2px); }

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}
.btn-outline-white:hover { background: var(--white); color: var(--green); }

/* ── HEADER / NAV ────────────────────────────────────────── */
#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition);
}
#header.scrolled { box-shadow: var(--shadow-md); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Poppins', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--black);
}
.logo img { height: 44px; width: auto; }
.logo span { color: var(--green); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  font-weight: 500;
  font-size: .93rem;
  padding: 8px 14px;
  border-radius: var(--radius);
  transition: var(--transition);
  color: var(--gray-dark);
}
.nav-links a:hover { color: var(--green); background: #E8F5E9; }
.nav-links a.active { color: var(--green); }

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown > a::after { content: ' ▾'; font-size: .7rem; }
.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  min-width: 220px;
  padding: 8px 0;
  z-index: 100;
}
.dropdown-menu a {
  display: block;
  padding: 10px 18px;
  font-size: .9rem;
  border-radius: 0;
}
.dropdown-menu a:hover { background: #F1F8F1; color: var(--green); }
.nav-dropdown:hover .dropdown-menu { display: block; }

.nav-cta { margin-left: 12px; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
}
.hamburger span { display: block; width: 24px; height: 2px; background: var(--black); border-radius: 2px; transition: var(--transition); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 74px; left: 0; right: 0; bottom: 0;
  background: var(--white);
  padding: 30px 24px;
  overflow-y: auto;
  z-index: 999;
  flex-direction: column;
  gap: 6px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  display: block;
  padding: 14px 16px;
  font-size: 1rem;
  font-weight: 500;
  border-radius: var(--radius);
  transition: var(--transition);
}
.mobile-nav a:hover { background: #E8F5E9; color: var(--green); }
.mobile-nav .mobile-cta { margin-top: 18px; width: 100%; justify-content: center; }

/* ── HERO ─────────────────────────────────────────────────── */
.hero {
  min-height: 70vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #1B5E20 0%, #2E7D32 40%, #388E3C 100%);
  position: relative;
  overflow: hidden;
  padding-top: 74px;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/hero-bg.jpg') center/cover no-repeat;
  opacity: .18;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
  padding: 80px 0;
}

.hero-content { color: var(--white); }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,0,0,.2);
  border: 1px solid rgba(255,255,255,.3);
  color: #ffffff;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 30px;
  margin-bottom: 24px;
}

.hero-title {
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 22px;
  line-height: 1.15;
}

/* ── CHANGED: accent word (e.g. "Packing") now white with shadow ── */
.hero-title .accent {
  color: #ffffff;
  text-shadow: 0 2px 12px rgba(0,0,0,.25);
}

.hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,.88);
  margin-bottom: 38px;
  max-width: 500px;
  line-height: 1.7;
}

.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* ── CHANGED: "Get a Free Quote" button — white bg, dark green text ── */
.btn-outline-hero {
  background: #ffffff;
  color: #1B5E20;
  border: 2px solid #ffffff;
  font-weight: 700;
}
.btn-outline-hero:hover {
  background: #f0f0f0;
  border-color: #f0f0f0;
  color: #1B5E20;
  transform: translateY(-2px);
}

.hero-trust {
  margin-top: 44px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.85);
  font-size: .88rem;
}
.hero-trust-item svg { color: #ffffff; flex-shrink: 0; }

.hero-image-box {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero-image-box img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}
.hero-image-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 14px 20px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-image-badge .badge-icon { font-size: 1.8rem; }
.hero-image-badge .badge-text { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: .95rem; color: var(--black); }
.hero-image-badge .badge-sub { font-size: .78rem; color: var(--gray-mid); }

/* ── BENEFITS STRIP ─────────────────────────────────────── */
/* ── CHANGED: dark charcoal background to contrast with green hero ── */
.benefits-strip {
  background: #1a1a1a;
  padding: 50px 0;
}
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}
.benefit-item { color: var(--white); }
.benefit-icon {
  width: 62px; height: 62px;
  background: rgba(46,125,50,.35);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px;
  font-size: 1.6rem;
}
.benefit-item h4 { font-size: 1rem; font-weight: 600; margin-bottom: 6px; color: #ffffff; }
.benefit-item p { font-size: .86rem; opacity: .75; color: #cccccc; }

/* ── SERVICE CARDS ──────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  margin-top: 0;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  box-shadow: var(--shadow-sm);
  border: 1px solid #E8F5E9;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--green);
  transform: scaleX(0);
  transition: var(--transition);
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.service-card:hover::before { transform: scaleX(1); }

.card-icon {
  width: 68px; height: 68px;
  background: #E8F5E9;
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem;
  margin-bottom: 22px;
}
.service-card h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 10px; }
.service-card p { font-size: .92rem; color: var(--gray-mid); margin-bottom: 20px; line-height: 1.65; }
.service-card .learn-more {
  color: var(--green);
  font-weight: 600;
  font-size: .9rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}
.service-card .learn-more:hover { gap: 10px; }

/* ── HOW IT WORKS ───────────────────────────────────────── */
.hiw-bg { background: var(--gray-light); }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 44px;
  left: calc(16.66% + 20px);
  right: calc(16.66% + 20px);
  height: 2px;
  background: linear-gradient(90deg, var(--green), var(--green-light));
}

.step-card {
  text-align: center;
  position: relative;
}
.step-number {
  width: 88px; height: 88px;
  background: var(--white);
  border: 3px solid var(--green);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
  font-family: 'Poppins', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--green);
  position: relative;
  z-index: 1;
}
.step-card h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 10px; }
.step-card p { font-size: .93rem; color: var(--gray-mid); }

/* ── TESTIMONIALS ───────────────────────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid #eee;
  transition: var(--transition);
}
.testimonial-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.stars { color: #FBC02D; font-size: 1.1rem; margin-bottom: 16px; }
.testimonial-card blockquote {
  font-size: .97rem;
  color: var(--gray-dark);
  line-height: 1.7;
  margin-bottom: 22px;
  font-style: italic;
}
.testimonial-card blockquote::before { content: '"'; font-size: 2rem; color: var(--green); line-height: 0; vertical-align: -.5rem; margin-right: 4px; }
.reviewer { display: flex; align-items: center; gap: 12px; }
.reviewer-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--green);
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}
.reviewer-name { font-weight: 600; font-size: .95rem; }
.reviewer-loc { font-size: .82rem; color: var(--gray-mid); }

/* ── CTA BAND ───────────────────────────────────────────── */
.cta-band {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 100%);
  padding: 80px 0;
  text-align: center;
  color: var(--white);
}
.cta-band h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 700; color: var(--white); margin-bottom: 14px; }
.cta-band p { font-size: 1.05rem; opacity: .88; margin-bottom: 36px; max-width: 540px; margin-left: auto; margin-right: auto; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── SERVICES PAGE DETAIL ───────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--black) 0%, #1a2a1a 100%);
  padding: 140px 0 80px;
  text-align: center;
  color: var(--white);
}
.page-hero h1 { color: var(--white); font-size: clamp(2rem, 4vw, 3rem); }
.page-hero p { color: rgba(255,255,255,.8); font-size: 1.1rem; margin-top: 12px; }
.breadcrumb { display: flex; justify-content: center; gap: 8px; font-size: .88rem; color: rgba(255,255,255,.6); margin-top: 16px; }
.breadcrumb a { color: #A5D6A7; }

.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 70px 0;
  border-bottom: 1px solid #eee;
}
.service-detail:last-of-type { border-bottom: none; }
.service-detail.reverse .detail-image { order: 2; }
.service-detail.reverse .detail-content { order: 1; }

.detail-image img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.detail-content h2 { font-size: 1.9rem; margin-bottom: 14px; }
.detail-content p { color: var(--gray-mid); margin-bottom: 24px; }
.detail-list { margin-bottom: 28px; }
.detail-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  font-size: .94rem;
  color: var(--gray-dark);
  border-bottom: 1px solid #F0F0F0;
}
.detail-list li:last-child { border: none; }
.detail-list li .check { color: var(--green); font-size: 1rem; margin-top: 2px; flex-shrink: 0; }

/* ── FAQ ACCORDION ──────────────────────────────────────── */
.faq-section { background: var(--gray-light); }
.faq-wrap { max-width: 780px; margin: 0 auto; }

.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  margin-bottom: 12px;
  border: 1px solid #E8E8E8;
  overflow: hidden;
}
.faq-question {
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: .97rem;
  transition: var(--transition);
}
.faq-question:hover { color: var(--green); }
.faq-icon {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: #E8F5E9;
  display: flex; align-items: center; justify-content: center;
  color: var(--green);
  font-size: 1.2rem;
  flex-shrink: 0;
  transition: var(--transition);
}
.faq-item.open .faq-icon { background: var(--green); color: var(--white); transform: rotate(45deg); }
.faq-answer {
  display: none;
  padding: 0 24px 20px;
  font-size: .93rem;
  color: var(--gray-mid);
  line-height: 1.7;
}
.faq-item.open .faq-answer { display: block; }

/* ── HOW IT WORKS PAGE ──────────────────────────────────── */
.step-card-lg {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  box-shadow: var(--shadow-sm);
  border-left: 5px solid var(--green);
  display: flex;
  gap: 28px;
  align-items: flex-start;
  transition: var(--transition);
  margin-bottom: 24px;
}
.step-card-lg:hover { box-shadow: var(--shadow-md); transform: translateX(6px); }
.step-num-lg {
  min-width: 70px; height: 70px;
  background: var(--green);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
}
.step-card-lg h3 { font-size: 1.3rem; margin-bottom: 10px; }
.step-card-lg p { color: var(--gray-mid); font-size: .95rem; line-height: 1.7; }

/* Checklist */
.checklist-section { background: var(--gray-light); }
.checklist-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-width: 680px;
  margin: 0 auto;
}
.checklist-item {
  background: var(--white);
  border-radius: var(--radius);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.checklist-item:hover { border-color: var(--green); }
.checklist-item.checked { border-color: var(--green); background: #F1F8F1; }
.check-box {
  width: 28px; height: 28px;
  border: 2px solid #ccc;
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
  font-size: 1rem;
  color: transparent;
}
.checklist-item.checked .check-box { background: var(--green); border-color: var(--green); color: var(--white); }
.checklist-item span { font-size: .93rem; font-weight: 500; }

/* ── CONTACT PAGE ───────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: 60px;
  align-items: start;
}

.contact-info-block { position: sticky; top: 100px; }
.contact-info-block h2 { font-size: 1.8rem; margin-bottom: 10px; }
.contact-info-block > p { color: var(--gray-mid); margin-bottom: 32px; }

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}
.contact-icon {
  width: 52px; height: 52px;
  background: #E8F5E9;
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: var(--green);
  font-size: 1.3rem;
  flex-shrink: 0;
}
.contact-item h4 { font-size: .88rem; text-transform: uppercase; letter-spacing: 1px; color: var(--gray-mid); margin-bottom: 4px; }
.contact-item a, .contact-item p { font-size: 1rem; font-weight: 500; color: var(--black); }
.contact-item a:hover { color: var(--green); }

.map-embed {
  margin-top: 28px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid #eee;
}
.map-embed iframe { display: block; width: 100%; height: 220px; border: none; }

/* ── QUOTE FORM ─────────────────────────────────────────── */
.quote-form-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  box-shadow: var(--shadow-md);
  border: 1px solid #E8F5E9;
}
.quote-form-box h2 { font-size: 1.6rem; margin-bottom: 6px; }
.quote-form-box .form-intro { color: var(--gray-mid); font-size: .93rem; margin-bottom: 28px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 18px; }
.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-group label { font-size: .87rem; font-weight: 600; color: var(--gray-dark); }
.form-group label .req { color: var(--red); }

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 2px solid #E0E0E0;
  border-radius: var(--radius);
  font-family: 'Inter', sans-serif;
  font-size: .95rem;
  color: var(--black);
  transition: var(--transition);
  background: var(--white);
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { outline: none; border-color: var(--green); box-shadow: 0 0 0 3px rgba(46,125,50,.12); }
.form-group input.error,
.form-group select.error,
.form-group textarea.error { border-color: var(--red); }

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

.address-block {
  background: var(--gray-light);
  border-radius: var(--radius);
  padding: 20px;
  margin-bottom: 18px;
}
.address-block-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: .95rem;
  color: var(--black);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.address-block-title svg { color: var(--green); }

.address-row { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 14px; margin-top: 14px; }

.section-divider { border: none; border-top: 1px solid #E8E8E8; margin: 22px 0; }

.form-section-label {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: .95rem;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Checkboxes */
.checkbox-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 18px;
}
.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .88rem;
  cursor: pointer;
  padding: 10px 12px;
  border: 1px solid #E0E0E0;
  border-radius: 8px;
  transition: var(--transition);
}
.checkbox-label:hover { border-color: var(--green); background: #F9FFF9; }
.checkbox-label input[type="checkbox"] { accent-color: var(--green); width: 16px; height: 16px; margin-top: 2px; flex-shrink: 0; }

/* Upload zone */
.upload-zone {
  border: 2px dashed #C8E6C9;
  border-radius: var(--radius);
  padding: 28px;
  text-align: center;
  background: #FAFFFE;
  cursor: pointer;
  transition: var(--transition);
  margin-bottom: 18px;
}
.upload-zone:hover, .upload-zone.dragover { border-color: var(--green); background: #F1F8F1; }
.upload-zone .upload-icon { font-size: 2.4rem; margin-bottom: 10px; }
.upload-zone p { font-size: .88rem; color: var(--gray-mid); }
.upload-zone strong { color: var(--green); }
#fileInput { display: none; }
.file-list { margin-top: 10px; font-size: .83rem; color: var(--gray-mid); }
.file-list li { display: flex; justify-content: space-between; padding: 4px 0; }

/* Honeypot */
.honeypot { display: none !important; }

/* Submit */
.btn-submit {
  width: 100%;
  justify-content: center;
  padding: 16px;
  font-size: 1.05rem;
  border-radius: var(--radius);
  margin-top: 8px;
}

/* Form messages */
.form-message {
  display: none;
  padding: 16px 20px;
  border-radius: var(--radius);
  margin-bottom: 20px;
  font-size: .95rem;
  font-weight: 500;
}
.form-message.success { background: #E8F5E9; color: var(--green-dark); border: 1px solid #A5D6A7; display: block; }
.form-message.error   { background: #FFEBEE; color: var(--red); border: 1px solid #EF9A9A; display: block; }

/* ── FOOTER ─────────────────────────────────────────────── */
footer {
  background: #0d0d0d;
  color: rgba(255,255,255,.75);
  padding: 70px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}
.footer-brand .logo { margin-bottom: 16px; color: var(--white); }
.footer-brand p { font-size: .9rem; line-height: 1.7; max-width: 280px; }
.footer-col h4 {
  font-family: 'Poppins', sans-serif;
  font-size: .9rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: .9rem; transition: var(--transition); }
.footer-col ul li a:hover { color: #66BB6A; padding-left: 4px; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 14px; font-size: .9rem; }
.footer-contact-item a:hover { color: #66BB6A; }
.footer-bar {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .85rem;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bar a { color: #66BB6A; }
.footer-bar a:hover { text-decoration: underline; }

/* ── WHATSAPP FLOAT ─────────────────────────────────────── */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}
.wa-tooltip {
  background: var(--white);
  border-radius: 10px;
  padding: 10px 14px;
  font-size: .82rem;
  font-weight: 600;
  color: var(--black);
  box-shadow: var(--shadow-md);
  display: none;
  max-width: 200px;
  text-align: right;
}
.wa-float:hover .wa-tooltip { display: block; }
.wa-btn {
  width: 62px; height: 62px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,.5);
  transition: var(--transition);
  animation: pulse 2.5s infinite;
}
.wa-btn:hover { transform: scale(1.1); }
.wa-btn svg { width: 30px; height: 30px; fill: var(--white); }
@keyframes pulse {
  0%, 100% { box-shadow: 0 6px 24px rgba(37,211,102,.5); }
  50%       { box-shadow: 0 6px 32px rgba(37,211,102,.75), 0 0 0 10px rgba(37,211,102,.1); }
}

/* ── PLACEHOLDER IMAGES ─────────────────────────────────── */
.img-placeholder {
  background: linear-gradient(135deg, #C8E6C9 0%, #A5D6A7 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--green-dark);
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: .9rem;
  text-align: center;
  gap: 8px;
}
.img-placeholder .ph-icon { font-size: 2.5rem; opacity: .6; }

/* ── MISC ────────────────────────────────────────────────── */
.green-bar { width: 60px; height: 4px; background: var(--green); border-radius: 4px; margin: 0 auto 20px; }
.green-bar.left { margin-left: 0; }

/* ── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-info-block { position: static; }
}

@media (max-width: 880px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-image-box { display: none; }
  .steps-grid { grid-template-columns: 1fr; }
  .steps-grid::before { display: none; }
  .service-detail { grid-template-columns: 1fr; }
  .service-detail.reverse .detail-image { order: 0; }
  .service-detail.reverse .detail-content { order: 0; }
  .benefits-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .checklist-grid { grid-template-columns: 1fr; }
  .checkbox-grid { grid-template-columns: 1fr; }
  .address-row { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 60px 0; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bar { flex-direction: column; text-align: center; }
  .quote-form-box { padding: 28px 20px; }
}

@media (max-width: 480px) {
  .hero-btns { flex-direction: column; }
  .cta-btns { flex-direction: column; align-items: center; }
  .benefits-grid { grid-template-columns: 1fr; }
  .wa-float { bottom: 20px; right: 20px; }
  .wa-btn { width: 54px; height: 54px; }
}

/* ── Show truck animation on mobile ── */
@media (max-width: 880px) {
  .hero-image-box {
    display: block !important;
    margin-top: 36px;
  }
  .hero-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero-image-box > div {
    height: 280px !important;
  }
  .hero-image-box iframe {
    height: 280px !important;
  }
}

/* ── Scale down hero badge on mobile ── */
@media (max-width: 480px) {
  .hero-image-badge {
    padding: 4px 8px;
    gap: 5px;
    bottom: 10px;
    left: 10px;
    max-width: 190px;
    max-height: 98px;
    border-radius: 8px;
    align-items: center;
  }
  .hero-image-badge .badge-icon { font-size: 0.9rem; }
  .hero-image-badge .badge-text { font-size: 0.65rem; font-weight: 700; line-height: 1.2; }
  .hero-image-badge .badge-sub { font-size: 0.55rem; line-height: 1.2; }
}

/* ── Truck container ── */
.truck-container {
  width: 100%;
  height: 480px;
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  background: transparent;
}
.truck-container iframe {
  width: 940px;
  height: 480px;
  border: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform-origin: center center;
}
@media (max-width: 880px) {
  .truck-container { height: 340px; }
}
@media (max-width: 480px) {
  .truck-container { height: 220px; }
}
