/* ============================================================
   A2B Packers & Movers – Global Stylesheet
   Brand: Orange #FF6B00 | Navy #0D1B2A | White #FFFFFF
   ============================================================ */

:root {
  --orange: #FF6B00;
  --orange-dark: #e05e00;
  --orange-light: #fff3e8;
  --navy: #0D1B2A;
  --navy-light: #142233;
  --white: #ffffff;
  --gray-100: #f8f9fa;
  --gray-200: #e9ecef;
  --gray-500: #6c757d;
  --text-dark: #1a1a2e;
  --shadow-sm: 0 2px 12px rgba(0,0,0,.08);
  --shadow-md: 0 8px 32px rgba(0,0,0,.12);
  --shadow-lg: 0 16px 48px rgba(0,0,0,.18);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: all .3s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.7;
}

h1,h2,h3,h4,h5,h6 { font-family: 'Poppins', sans-serif; font-weight: 700; }

a { text-decoration: none; transition: var(--transition); }

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

.text-orange { color: var(--orange) !important; }
.bg-orange   { background-color: var(--orange) !important; }
.bg-navy     { background-color: var(--navy) !important; }

/* ── Section Utilities ─────────────────────────────────────── */
.section-pad { padding: 80px 0; }
.section-pad-sm { padding: 50px 0; }

.section-badge {
  display: inline-block;
  background: var(--orange-light);
  color: var(--orange);
  font-family: 'Poppins', sans-serif;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: var(--navy);
  line-height: 1.2;
}

.section-title span { color: var(--orange); }
.section-subtitle { color: var(--gray-500); max-width: 600px; }

.divider-orange {
  width: 60px; height: 4px;
  background: var(--orange);
  border-radius: 4px;
  margin: 14px 0 20px;
}

.divider-orange.mx-auto { margin-left: auto; margin-right: auto; }

/* ── Top Bar ───────────────────────────────────────────────── */
.top-bar {
  background: var(--navy);
  color: rgba(255,255,255,.85);
  font-size: .82rem;
  padding: 8px 0;
}

.top-bar-link {
  color: rgba(255,255,255,.85);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color .2s;
}

.top-bar-link:hover { color: var(--orange); }
.top-bar-link i { color: var(--orange); font-size: .85rem; }
.top-bar-divider { color: rgba(255,255,255,.3); }

.badge-rating {
  background: rgba(255,107,0,.18);
  color: var(--orange);
  font-size: .75rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 50px;
  border: 1px solid rgba(255,107,0,.35);
}

.btn-whatsapp {
  background: #25d366 !important;
  color: white !important;
  border-radius: 50px !important;
  font-size: .78rem !important;
  font-weight: 600 !important;
  padding: 4px 12px !important;
}

.btn-whatsapp:hover { background: #1da851 !important; }

/* ── Sticky Navbar ─────────────────────────────────────────── */
.sticky-nav {
  background: var(--navy);
  padding: 14px 0;
  position: sticky;
  top: 0;
  z-index: 1030;
  transition: var(--transition);
  box-shadow: 0 2px 20px rgba(0,0,0,.25);
}

.sticky-nav.scrolled {
  background: rgba(13,27,42,.97);
  backdrop-filter: blur(12px);
  padding: 10px 0;
}

/* Logo */
.logo-icon {
  width: 48px; height: 48px;
  background: var(--orange);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Poppins', sans-serif;
  font-weight: 900;
  font-size: 1rem;
  color: white;
  letter-spacing: -.5px;
  flex-shrink: 0;
}

.logo-icon-sm {
  width: 38px; height: 38px;
  font-size: .85rem;
  border-radius: 8px;
}

.logo-name {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: white;
  line-height: 1.1;
}

.logo-sub {
  font-family: 'Poppins', sans-serif;
  font-size: .72rem;
  color: var(--orange);
  font-weight: 500;
  letter-spacing: .5px;
}

/* Nav Links */
.sticky-nav .nav-link {
  color: rgba(255,255,255,.85) !important;
  font-family: 'Poppins', sans-serif;
  font-size: .88rem;
  font-weight: 500;
  padding: 8px 14px !important;
  border-radius: 8px;
  transition: var(--transition);
  position: relative;
}

.sticky-nav .nav-link:hover,
.sticky-nav .nav-link.active {
  color: var(--orange) !important;
  background: rgba(255,107,0,.1);
}

.sticky-nav .nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 50%;
  transform: translateX(-50%);
  width: 20px; height: 2px;
  background: var(--orange);
  border-radius: 2px;
}

/* Dropdown */
.dropdown-menu-custom {
  background: var(--white);
  border: none;
  border-radius: var(--radius);
  padding: 10px;
  box-shadow: var(--shadow-lg);
  min-width: 240px;
  border-top: 3px solid var(--orange);
  animation: fadeInDown .2s ease;
}

@keyframes fadeInDown { from { opacity:0; transform:translateY(-8px); } to { opacity:1; transform:translateY(0); } }

.dropdown-menu-custom .dropdown-item {
  font-family: 'Poppins', sans-serif;
  font-size: .85rem;
  color: var(--navy);
  border-radius: 8px;
  padding: 9px 14px;
  transition: var(--transition);
  font-weight: 500;
}

.dropdown-menu-custom .dropdown-item:hover {
  background: var(--orange-light);
  color: var(--orange);
  padding-left: 20px;
}

/* CTA Button */
.btn-get-quote {
  background: var(--orange);
  color: white !important;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-size: .85rem;
  font-weight: 600;
  padding: 10px 22px;
  border: 2px solid var(--orange);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.btn-get-quote:hover {
  background: transparent;
  color: var(--orange) !important;
  border-color: var(--orange);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255,107,0,.35);
}

/* ── Hero Section ──────────────────────────────────────────── */
.hero-section {
  background: linear-gradient(135deg, var(--navy) 0%, #1a2e45 50%, #0d1b2a 100%);
  min-height: 90vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(255,107,0,.12) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 20%, rgba(255,107,0,.08) 0%, transparent 45%);
}

.hero-section .container { position: relative; z-index: 2; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,107,0,.15);
  border: 1px solid rgba(255,107,0,.4);
  color: var(--orange);
  font-size: .82rem;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 50px;
  margin-bottom: 20px;
  animation: pulse-border 2.5s infinite;
}

@keyframes pulse-border {
  0%,100% { box-shadow: 0 0 0 0 rgba(255,107,0,.4); }
  50%      { box-shadow: 0 0 0 8px rgba(255,107,0,.0); }
}

.hero-title {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  color: white;
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero-title span { color: var(--orange); }

.hero-subtitle {
  color: rgba(255,255,255,.75);
  font-size: 1.05rem;
  max-width: 540px;
  margin-bottom: 32px;
}

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

.btn-primary-hero {
  background: var(--orange);
  color: white;
  border: 2px solid var(--orange);
  padding: 14px 32px;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: .95rem;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-primary-hero:hover {
  background: var(--orange-dark);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255,107,0,.4);
  color: white;
}

.btn-secondary-hero {
  background: transparent;
  color: white;
  border: 2px solid rgba(255,255,255,.4);
  padding: 14px 32px;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: .95rem;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-secondary-hero:hover {
  background: rgba(255,255,255,.1);
  border-color: white;
  color: white;
}

/* Hero Stats */
.hero-stats {
  display: flex;
  gap: 28px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.hero-stat { text-align: left; }
.hero-stat-num {
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
}
.hero-stat-label { font-size: .8rem; color: rgba(255,255,255,.65); margin-top: 4px; }

/* Hero Image / Visual */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-visual-card {
  background: rgba(255,255,255,.07);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
  padding: 30px;
  text-align: center;
  color: white;
  animation: floatAnim 4s ease-in-out infinite;
}

@keyframes floatAnim {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-15px); }
}

.hero-truck-icon { font-size: 5rem; color: var(--orange); margin-bottom: 16px; }

.hero-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 20px;
}

.hero-feature-item {
  background: rgba(255,107,0,.12);
  border: 1px solid rgba(255,107,0,.25);
  border-radius: 10px;
  padding: 12px;
  text-align: center;
  font-size: .8rem;
  color: rgba(255,255,255,.85);
}

.hero-feature-item i { display: block; color: var(--orange); font-size: 1.2rem; margin-bottom: 4px; }

/* ── Stats Bar ─────────────────────────────────────────────── */
.stats-bar {
  background: var(--orange);
  padding: 28px 0;
}

.stat-item { text-align: center; }
.stat-number {
  font-family: 'Poppins', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: white;
  line-height: 1;
}
.stat-label { color: rgba(255,255,255,.85); font-size: .85rem; margin-top: 4px; }
.stat-divider { width: 1px; background: rgba(255,255,255,.3); height: 50px; }

/* ── Service Cards ─────────────────────────────────────────── */
.service-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: var(--orange);
  transform: scaleX(0);
  transition: transform .3s ease;
}

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

.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 72px; height: 72px;
  background: var(--orange-light);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.8rem;
  color: var(--orange);
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background: var(--orange);
  color: white;
  transform: scale(1.1) rotate(5deg);
}

.service-card h5 {
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 10px;
}

.service-card p { font-size: .875rem; color: var(--gray-500); margin-bottom: 16px; }

.service-card .btn-link-orange {
  color: var(--orange);
  font-family: 'Poppins', sans-serif;
  font-size: .82rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap .2s;
}

.service-card:hover .btn-link-orange { gap: 10px; }

/* ── Why Choose Us ─────────────────────────────────────────── */
.why-card {
  display: flex;
  gap: 18px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  transition: var(--transition);
}

.why-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--orange-light);
  transform: translateX(4px);
}

.why-icon {
  width: 52px; height: 52px;
  background: var(--orange-light);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--orange);
  font-size: 1.3rem;
  flex-shrink: 0;
}

.why-card h6 { font-size: .95rem; color: var(--navy); margin-bottom: 4px; }
.why-card p  { font-size: .83rem; color: var(--gray-500); margin: 0; }

/* ── Process Steps ─────────────────────────────────────────── */
.process-step {
  text-align: center;
  position: relative;
}

.process-step-num {
  width: 64px; height: 64px;
  background: var(--orange);
  color: white;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Poppins', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  margin: 0 auto 16px;
  position: relative;
  z-index: 1;
}

.process-step-num::after {
  content: '';
  position: absolute;
  width: 80px; height: 80px;
  border-radius: 50%;
  background: rgba(255,107,0,.12);
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  z-index: -1;
}

.process-connector {
  position: absolute;
  top: 32px;
  right: -50%;
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, var(--orange), rgba(255,107,0,.2));
  z-index: 0;
}

/* ── Testimonials ──────────────────────────────────────────── */
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 30px;
  transition: var(--transition);
  height: 100%;
}

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

.testimonial-stars i { color: #ffc107; font-size: .85rem; }

.testimonial-text { font-size: .9rem; color: var(--gray-500); font-style: italic; margin: 14px 0; }

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

.testimonial-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--orange);
  color: white;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: .95rem;
  flex-shrink: 0;
}

.testimonial-name { font-family: 'Poppins', sans-serif; font-size: .9rem; font-weight: 600; color: var(--navy); }
.testimonial-city { font-size: .78rem; color: var(--gray-500); }

/* ── CTA Section ───────────────────────────────────────────── */
.cta-section {
  background: linear-gradient(135deg, var(--orange) 0%, #ff8533 100%);
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}

.cta-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' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%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");
}

.cta-section .container { position: relative; z-index: 1; }
.cta-section h2 { color: white; font-size: clamp(1.8rem, 4vw, 2.6rem); }
.cta-section p  { color: rgba(255,255,255,.85); }

.btn-cta-white {
  background: white;
  color: var(--orange);
  border: 2px solid white;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: .95rem;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-cta-white:hover {
  background: transparent;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0,0,0,.2);
}

.btn-cta-outline {
  background: transparent;
  color: white;
  border: 2px solid rgba(255,255,255,.5);
  padding: 14px 32px;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: .95rem;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

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

/* ── Page Hero (Inner Pages) ───────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, #1a2e45 100%);
  padding: 80px 0 70px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(255,107,0,.1) 0%, transparent 60%);
}

.page-hero .container { position: relative; z-index: 1; }

.page-hero-title {
  font-size: clamp(2rem, 5vw, 3rem);
  color: white;
  margin-bottom: 12px;
}

.page-hero-sub { color: rgba(255,255,255,.7); margin-bottom: 20px; }

.breadcrumb-hero { background: none; padding: 0; margin: 0; }
.breadcrumb-hero .breadcrumb-item { color: rgba(255,255,255,.6); font-size: .85rem; }
.breadcrumb-hero .breadcrumb-item a { color: var(--orange); }
.breadcrumb-hero .breadcrumb-item.active { color: rgba(255,255,255,.9); }
.breadcrumb-hero .breadcrumb-item+.breadcrumb-item::before { color: rgba(255,255,255,.4); }

/* ── Service Detail Page ───────────────────────────────────── */
.service-detail-icon {
  width: 88px; height: 88px;
  background: var(--orange);
  border-radius: 20px;
  display: flex; align-items: center; justify-content: center;
  font-size: 2.5rem;
  color: white;
  flex-shrink: 0;
}

.include-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--gray-200);
}

.include-item:last-child { border-bottom: none; }

.include-item i { color: var(--orange); font-size: 1rem; margin-top: 3px; flex-shrink: 0; }
.include-item span { font-size: .9rem; color: var(--text-dark); }

.sidebar-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: sticky;
  top: 90px;
}

.sidebar-card h5 { font-size: 1.1rem; color: var(--navy); margin-bottom: 20px; }

/* ── FAQ Page ──────────────────────────────────────────────── */
.accordion-item {
  border: 1px solid var(--gray-200) !important;
  border-radius: var(--radius) !important;
  margin-bottom: 12px;
  overflow: hidden;
}

.accordion-button {
  font-family: 'Poppins', sans-serif;
  font-size: .95rem;
  font-weight: 600;
  color: var(--navy) !important;
  background: var(--white) !important;
  padding: 18px 24px;
}

.accordion-button:not(.collapsed) {
  color: var(--orange) !important;
  background: var(--orange-light) !important;
  box-shadow: none !important;
}

.accordion-button::after {
  filter: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23FF6B00'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e") !important;
}

.accordion-body { padding: 18px 24px; color: var(--gray-500); font-size: .9rem; }

/* ── Contact Page ──────────────────────────────────────────── */
.contact-form-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-sm);
}

.form-control, .form-select {
  border: 1.5px solid var(--gray-200);
  border-radius: 10px;
  padding: 12px 16px;
  font-size: .9rem;
  transition: var(--transition);
}

.form-control:focus, .form-select:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255,107,0,.12);
}

.btn-submit {
  background: var(--orange);
  color: white;
  border: none;
  padding: 14px 36px;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: .95rem;
  cursor: pointer;
  transition: var(--transition);
  width: 100%;
}

.btn-submit:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255,107,0,.35);
}

.contact-info-card {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  color: white;
  height: 100%;
}

.contact-info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  align-items: flex-start;
}

.contact-info-icon {
  width: 46px; height: 46px;
  background: rgba(255,107,0,.15);
  border: 1px solid rgba(255,107,0,.3);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--orange);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-info-item h6 { color: rgba(255,255,255,.65); font-size: .78rem; margin-bottom: 4px; font-weight: 500; }
.contact-info-item p  { color: white; margin: 0; font-size: .9rem; }
.contact-info-item a  { color: var(--orange); }

/* ── Blog Page ─────────────────────────────────────────────── */
.blog-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  height: 100%;
}

.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.blog-card-img {
  height: 200px;
  background: linear-gradient(135deg, var(--navy) 0%, #1a3050 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 3.5rem;
  color: var(--orange);
  position: relative;
  overflow: hidden;
}

.blog-card-img .blog-icon-bg {
  position: absolute;
  font-size: 8rem;
  color: rgba(255,107,0,.06);
}

.blog-card-body { padding: 24px; }
.blog-meta { font-size: .78rem; color: var(--gray-500); margin-bottom: 10px; }
.blog-meta span { margin-right: 12px; }
.blog-card h5 { font-size: 1rem; color: var(--navy); margin-bottom: 10px; line-height: 1.4; }
.blog-card p  { font-size: .875rem; color: var(--gray-500); margin-bottom: 16px; }

/* ── Estimation Page ───────────────────────────────────────── */
.estimation-section { background: var(--gray-100); }

.step-indicator {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: 40px;
}

.step-dot {
  width: 40px; height: 40px;
  background: var(--gray-200);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: .9rem;
  color: var(--gray-500);
  position: relative;
  z-index: 1;
}

.step-dot.active  { background: var(--orange); color: white; }
.step-dot.done    { background: #28a745; color: white; }

.step-line {
  flex: 1;
  height: 2px;
  background: var(--gray-200);
  align-self: center;
  max-width: 80px;
}

.step-line.active { background: var(--orange); }

.est-form-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-sm);
}

/* ── Footer ────────────────────────────────────────────────── */
.site-footer { background: var(--navy); }

.footer-top { padding: 70px 0 50px; }

.footer-desc { color: rgba(255,255,255,.6); font-size: .875rem; line-height: 1.7; }

.footer-contact-info { display: flex; flex-direction: column; gap: 10px; }

.footer-contact-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: rgba(255,255,255,.7);
  font-size: .85rem;
}

.footer-contact-item i { color: var(--orange); margin-top: 3px; flex-shrink: 0; width: 14px; }
.footer-contact-item a { color: rgba(255,255,255,.7); }
.footer-contact-item a:hover { color: var(--orange); }

.footer-social { display: flex; gap: 10px; }

.footer-social a {
  width: 38px; height: 38px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.7);
  font-size: .9rem;
  transition: var(--transition);
}

.footer-social a:hover { background: var(--orange); color: white; border-color: var(--orange); transform: translateY(-3px); }

.footer-heading {
  font-family: 'Poppins', sans-serif;
  font-size: .88rem;
  font-weight: 700;
  color: white;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 30px; height: 2px;
  background: var(--orange);
}

.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: rgba(255,255,255,.65); font-size: .875rem; transition: var(--transition); }
.footer-links a:hover { color: var(--orange); padding-left: 4px; }
.footer-links a i { font-size: .7rem; margin-right: 2px; }

.footer-hours { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-hours li { display: flex; justify-content: space-between; align-items: center; color: rgba(255,255,255,.65); font-size: .85rem; }

.footer-badge { }
.badge-box {
  background: rgba(255,107,0,.12);
  border: 1px solid rgba(255,107,0,.3);
  border-radius: var(--radius);
  padding: 16px;
  text-align: center;
}
.badge-stars i { color: #ffc107; font-size: .9rem; }
.badge-text { color: white; font-family: 'Poppins', sans-serif; font-weight: 600; font-size: .9rem; margin-top: 6px; }
.badge-sub { color: rgba(255,255,255,.6); font-size: .78rem; }

.footer-bottom {
  background: rgba(0,0,0,.2);
  padding: 18px 0;
  color: rgba(255,255,255,.55);
  font-size: .82rem;
}

/* ── WhatsApp Float ────────────────────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 30px; right: 28px;
  width: 58px; height: 58px;
  background: #25d366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.7rem;
  color: white;
  z-index: 9999;
  box-shadow: 0 4px 20px rgba(37,211,102,.5);
  transition: var(--transition);
}

.whatsapp-float:hover {
  transform: scale(1.12);
  background: #1da851;
  color: white;
}

.whatsapp-tooltip {
  position: absolute;
  right: 70px;
  background: var(--navy);
  color: white;
  font-size: .78rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 8px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}

.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; }

/* ── Back to Top ───────────────────────────────────────────── */
.back-to-top {
  position: fixed;
  bottom: 30px; left: 28px;
  width: 46px; height: 46px;
  background: var(--orange);
  border: none;
  border-radius: 12px;
  color: white;
  font-size: 1rem;
  cursor: pointer;
  z-index: 9999;
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition);
  display: flex; align-items: center; justify-content: center;
}

.back-to-top.visible { opacity: 1; transform: translateY(0); }
.back-to-top:hover { background: var(--orange-dark); transform: translateY(-3px); }

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 767px) {
  .top-bar { font-size: .75rem; }
  .hero-section { min-height: 70vh; padding: 40px 0 30px; }
  .hero-stats { gap: 16px; }
  .hero-stat-num { font-size: 1.6rem; }
  .section-pad { padding: 50px 0; }
  .contact-form-card { padding: 24px; }
  .est-form-card { padding: 24px; }
  .stat-divider { display: none; }
  .footer-top { padding: 44px 0 30px; }
  .hero-visual { margin-top: 40px; }
}

@media (max-width: 575px) {
  .hero-btns { flex-direction: column; }
  .hero-btns .btn-primary-hero,
  .hero-btns .btn-secondary-hero { width: 100%; justify-content: center; }
}

/* ── Animations ────────────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .6s ease, transform .6s ease;
}

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

.fade-in { animation: fadeIn .8s ease forwards; }
@keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
