/* ===================================================
   ASR Moving Services — Main Stylesheet
   Domain: asrmovers.com
   =================================================== */

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

/* --- CSS Variables --- */
:root {
  --navy:    #1a2b4a;
  --navy-dk: #111e35;
  --orange:  #f47920;
  --orange-dk: #d9661a;
  --gold:    #c9a84c;
  --gold-lt: #e8c96a;
  --white:   #ffffff;
  --off-white: #f8f9fb;
  --gray-lt: #eef0f4;
  --gray:    #8a94a6;
  --text:    #1a2b4a;
  --text-lt: #5a6478;
  --shadow:  0 4px 24px rgba(26,43,74,0.10);
  --shadow-lg: 0 12px 48px rgba(26,43,74,0.15);
  --radius:  10px;
  --radius-lg: 18px;
  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Open Sans', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color var(--transition); }
ul { list-style: none; }
h1,h2,h3,h4,h5 { font-family: 'Montserrat', sans-serif; line-height: 1.25; }

/* --- Utility --- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section-sm { padding: 48px 0; }
.section-title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--navy);
  text-align: center;
  margin-bottom: 12px;
}
.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-lt);
  text-align: center;
  max-width: 580px;
  margin: 0 auto 48px;
  line-height: 1.7;
}
.section-label {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--orange);
  background: rgba(244,121,32,0.1);
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
}
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.text-orange { color: var(--orange); }
.highlight { color: var(--orange); }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 8px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  letter-spacing: 0.03em;
  white-space: nowrap;
}
.btn-primary {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
  box-shadow: 0 4px 16px rgba(244,121,32,0.35);
}
.btn-primary:hover {
  background: var(--orange-dk);
  border-color: var(--orange-dk);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(244,121,32,0.45);
  color: var(--white);
}
.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-lg { padding: 17px 36px; font-size: 1rem; }
.btn-sm { padding: 10px 20px; font-size: 0.82rem; }

/* ============================================
   HEADER / NAVIGATION
   ============================================ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 20px rgba(26,43,74,0.10);
  transition: all var(--transition);
}
.header.scrolled {
  box-shadow: 0 4px 30px rgba(26,43,74,0.15);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
}
.nav-logo img {
  height: 58px;
  width: auto;
  object-fit: contain;
  display: block;
}
.nav-logo .logo-text {
  display: flex;
  flex-direction: column;
}
.nav-logo .logo-brand {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--navy);
  line-height: 1;
}
.nav-logo .logo-sub {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-transform: uppercase;
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-link {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text);
  padding: 8px 14px;
  border-radius: 6px;
  transition: all var(--transition);
}
.nav-link:hover, .nav-link.active {
  color: var(--orange);
  background: rgba(244,121,32,0.07);
}
.nav-right { display: flex; align-items: center; gap: 14px; }
.nav-phone {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--navy);
  transition: color var(--transition);
}
.nav-phone:hover { color: var(--orange); }
.nav-phone svg { color: var(--orange); }
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--navy);
  border-radius: 4px;
  transition: all var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* Top bar */
.topbar {
  background: var(--navy);
  color: rgba(255,255,255,0.85);
  font-size: 0.8rem;
  padding: 7px 0;
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.topbar-items { display: flex; align-items: center; gap: 20px; }
.topbar-item { display: flex; align-items: center; gap: 6px; }
.topbar-item a { color: rgba(255,255,255,0.85); transition: color var(--transition); }
.topbar-item a:hover { color: var(--orange); }
.topbar-social { display: flex; align-items: center; gap: 10px; }
.topbar-social a {
  color: rgba(255,255,255,0.7);
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all var(--transition);
}
.topbar-social a:hover { color: var(--white); background: rgba(255,255,255,0.15); }

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  padding-top: 108px;
  min-height: 100vh;
  background: linear-gradient(135deg, #0f1d35 0%, #1a2b4a 55%, #1e3560 100%);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(244,121,32,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -15%;
  left: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(201,168,76,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 60px 0 80px;
  position: relative;
  z-index: 1;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(244,121,32,0.15);
  border: 1px solid rgba(244,121,32,0.3);
  color: var(--orange);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 50px;
  margin-bottom: 20px;
}
.hero-tag::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--orange);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.4); }
}
.hero h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
}
.hero h1 span { color: var(--orange); }
.hero-desc {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 36px;
  line-height: 1.8;
  max-width: 520px;
}
.hero-actions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.hero-trust {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 44px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.trust-item { display: flex; flex-direction: column; }
.trust-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.75rem;
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
}
.trust-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.6);
  margin-top: 3px;
}
.trust-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.15);
}
.hero-visual {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  gap: 0;
  position: relative;
}

/* Hero logo card — white card so logo sits on its natural bg, looks intentional on dark hero */
.hero-logo-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 24px 28px 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.35);
  margin-bottom: 20px;
  text-align: center;
  animation: float 6s ease-in-out infinite;
  border-bottom: 4px solid var(--orange);
}
@keyframes float {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-10px); }
}
.hero-logo-card img {
  width: 100%;
  max-width: 320px;
  height: auto;
  display: block;
  margin: 0 auto;
}
.hero-logo-badges {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 14px;
  flex-wrap: wrap;
}
.hero-logo-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(26,43,74,0.07);
  color: var(--navy);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 50px;
  letter-spacing: 0.04em;
}
.hero-logo-badge svg { color: var(--orange); }

.hero-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
  width: 100%;
  border-top: 4px solid var(--orange);
}
.hero-form-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 16px;
  text-align: center;
}

/* Quick Quote Form in Hero */
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 12px; }
.form-group { display: flex; flex-direction: column; gap: 5px; }
.form-group label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-lt);
  font-family: 'Montserrat', sans-serif;
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid #dde2ea;
  border-radius: 7px;
  font-family: 'Open Sans', sans-serif;
  font-size: 0.875rem;
  color: var(--text);
  background: #fafbfc;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(244,121,32,0.12);
  background: var(--white);
}
.form-full { grid-column: 1 / -1; }

/* ============================================
   TRUST BADGES BAR
   ============================================ */
.trust-bar {
  background: var(--navy-dk);
  padding: 20px 0;
}
.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 24px;
  flex-wrap: wrap;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.8);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
}
.trust-badge svg { color: var(--gold); flex-shrink: 0; }

/* ============================================
   SERVICES SECTION
   ============================================ */
.services { background: var(--off-white); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  box-shadow: var(--shadow);
  transition: all var(--transition);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(244,121,32,0.2);
}
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, rgba(244,121,32,0.12), rgba(244,121,32,0.06));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--orange);
  transition: all var(--transition);
}
.service-card:hover .service-icon {
  background: var(--orange);
  color: var(--white);
}
.service-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.service-card p {
  font-size: 0.875rem;
  color: var(--text-lt);
  line-height: 1.7;
  margin-bottom: 16px;
}
.service-link {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--orange);
  display: flex;
  align-items: center;
  gap: 5px;
  transition: gap var(--transition);
}
.service-card:hover .service-link { gap: 10px; }

/* ============================================
   WHY CHOOSE US
   ============================================ */
.why-us { background: var(--white); }
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.why-visual { position: relative; }
.why-img-wrap {
  display: none; /* replaced by why-feature-panel */
}

/* Why Feature Panel */
.why-feature-panel {
  background: linear-gradient(150deg, var(--navy) 0%, var(--navy-dk) 100%);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  box-shadow: var(--shadow-lg);
  color: var(--white);
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.why-feature-top {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.why-feature-icon-wrap {
  width: 80px;
  height: 80px;
  background: rgba(244,121,32,0.15);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  flex-shrink: 0;
}
.why-feature-heading {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.3;
}
.why-feature-sub {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
  margin-top: 4px;
}
.why-feature-stats {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.why-fstat { text-align: center; }
.why-fstat-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
}
.why-fstat-lbl {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.6);
  margin-top: 4px;
  white-space: nowrap;
}
.why-fstat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.12);
}
.why-feature-badges {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.why-fbadge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 10px 14px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
}
.why-fbadge svg { color: var(--orange); flex-shrink: 0; }
.why-stat-card {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius);
  padding: 16px 20px;
  box-shadow: var(--shadow-lg);
  text-align: center;
}
.why-stat-card.c1 { bottom: -20px; left: -20px; }
.why-stat-card.c2 { top: -20px; right: -20px; }
.why-stat-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
}
.why-stat-lbl { font-size: 0.72rem; color: var(--text-lt); font-weight: 600; margin-top: 2px; }
.why-list { display: flex; flex-direction: column; gap: 20px; }
.why-item { display: flex; gap: 16px; align-items: flex-start; }
.why-item-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--orange), var(--gold));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  flex-shrink: 0;
  margin-top: 2px;
}
.why-item-body h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}
.why-item-body p { font-size: 0.875rem; color: var(--text-lt); line-height: 1.65; }

/* ============================================
   PROCESS / HOW IT WORKS
   ============================================ */
.process { background: var(--off-white); }
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: linear-gradient(90deg, var(--orange), var(--gold), var(--orange));
  opacity: 0.3;
}
.process-step {
  text-align: center;
  position: relative;
  padding: 0 10px;
}
.step-num {
  width: 64px;
  height: 64px;
  background: var(--navy);
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-size: 1.4rem;
  font-weight: 900;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
  border: 4px solid var(--off-white);
  box-shadow: 0 0 0 2px var(--orange);
  transition: all var(--transition);
}
.process-step:hover .step-num {
  background: var(--orange);
  transform: scale(1.1);
}
.process-step h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.process-step p { font-size: 0.85rem; color: var(--text-lt); line-height: 1.65; }

/* ============================================
   STATS SECTION
   ============================================ */
.stats-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dk) 100%);
  padding: 60px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stat-item { padding: 20px 10px; }
.stat-num {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
  font-weight: 500;
}
.stat-divider {
  border-left: 1px solid rgba(255,255,255,0.12);
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials { background: var(--white); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  border: 1px solid var(--gray-lt);
  transition: all var(--transition);
  position: relative;
}
.testimonial-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: rgba(244,121,32,0.2);
  transform: translateY(-4px);
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 16px;
  right: 20px;
  font-size: 5rem;
  color: rgba(244,121,32,0.12);
  font-family: Georgia, serif;
  line-height: 1;
}
.stars { display: flex; gap: 3px; margin-bottom: 14px; }
.star { color: #FFB800; font-size: 1rem; }
.testimonial-text {
  font-size: 0.9rem;
  color: var(--text-lt);
  line-height: 1.75;
  margin-bottom: 20px;
  font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--navy), var(--orange));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  flex-shrink: 0;
}
.author-name { font-weight: 700; font-size: 0.9rem; color: var(--navy); }
.author-loc { font-size: 0.78rem; color: var(--text-lt); margin-top: 2px; }

/* ============================================
   SERVICE AREAS
   ============================================ */
.areas { background: var(--navy); padding: 60px 0; }
.areas-title {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--white);
  text-align: center;
  margin-bottom: 8px;
}
.areas-subtitle {
  color: rgba(255,255,255,0.65);
  text-align: center;
  margin-bottom: 40px;
}
.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 12px;
  max-width: 900px;
  margin: 0 auto;
}
.area-tag {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.85);
  text-align: center;
  padding: 10px 16px;
  border-radius: 8px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.area-tag:hover {
  background: rgba(244,121,32,0.2);
  border-color: var(--orange);
  color: var(--white);
}
.area-tag svg { color: var(--orange); flex-shrink: 0; }

/* ============================================
   FAQ
   ============================================ */
.faq { background: var(--off-white); }
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-width: 960px;
  margin: 0 auto;
}
.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--gray-lt);
  overflow: hidden;
  transition: box-shadow var(--transition);
}
.faq-item.open { box-shadow: var(--shadow); }
.faq-question {
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--navy);
  user-select: none;
}
.faq-icon {
  width: 28px;
  height: 28px;
  background: rgba(244,121,32,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  flex-shrink: 0;
  transition: transform var(--transition), background var(--transition);
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--orange);
  color: var(--white);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding var(--transition);
}
.faq-item.open .faq-answer { max-height: 200px; }
.faq-answer p {
  padding: 0 22px 18px;
  font-size: 0.875rem;
  color: var(--text-lt);
  line-height: 1.75;
  border-top: 1px solid var(--gray-lt);
  padding-top: 12px;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dk) 100%);
  padding: 72px 0;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: rgba(255,255,255,0.06);
  border-radius: 50%;
}
.cta-inner {
  text-align: center;
  position: relative;
  z-index: 1;
}
.cta-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 12px;
}
.cta-sub { color: rgba(255,255,255,0.85); font-size: 1.05rem; margin-bottom: 32px; }
.cta-actions { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }
.btn-white {
  background: var(--white);
  color: var(--orange);
  border: 2px solid var(--white);
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
}
.btn-white:hover { background: rgba(255,255,255,0.9); transform: translateY(-2px); color: var(--orange-dk); }

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact { background: var(--white); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}
.contact-info h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 12px;
}
.contact-info > p {
  color: var(--text-lt);
  line-height: 1.75;
  margin-bottom: 32px;
  font-size: 0.95rem;
}
.contact-details { display: flex; flex-direction: column; gap: 20px; margin-bottom: 32px; }
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.contact-detail-icon {
  width: 42px;
  height: 42px;
  background: rgba(244,121,32,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  flex-shrink: 0;
}
.contact-detail-body strong {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-lt);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 2px;
}
.contact-detail-body span {
  font-size: 0.95rem;
  color: var(--navy);
  font-weight: 600;
}
.contact-detail-body a { color: var(--navy); }
.contact-detail-body a:hover { color: var(--orange); }
.contact-form-wrap {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow);
}
.contact-form-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 20px;
}
.contact-form .form-row { margin-bottom: 14px; }
.contact-form .form-full { margin-bottom: 14px; }
.contact-form textarea { min-height: 110px; resize: vertical; }

/* ============================================
   FOOTER
   ============================================ */
.footer { background: var(--navy-dk); color: rgba(255,255,255,0.75); }
.footer-top { padding: 60px 0 40px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
}
.footer-brand img {
  width: 220px;
  height: auto;
  max-width: 100%;
  margin-bottom: 20px;
  background: #ffffff;
  border-radius: 12px;
  padding: 12px 16px;
  display: block;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.footer-brand p { font-size: 0.875rem; line-height: 1.8; margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  transition: all var(--transition);
}
.footer-social a:hover { background: var(--orange); color: var(--white); }
.footer-col h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-links a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
  transition: color var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-links a::before {
  content: '›';
  color: var(--orange);
  font-weight: 700;
}
.footer-links a:hover { color: var(--orange); padding-left: 4px; }
.footer-contact-list { display: flex; flex-direction: column; gap: 12px; }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
}
.footer-contact-item svg { color: var(--orange); flex-shrink: 0; margin-top: 2px; }
.footer-contact-item a { color: rgba(255,255,255,0.65); }
.footer-contact-item a:hover { color: var(--orange); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
}
.footer-bottom a { color: rgba(255,255,255,0.5); }
.footer-bottom a:hover { color: var(--orange); }
.footer-bottom-links { display: flex; gap: 20px; flex-wrap: wrap; }

/* ============================================
   INNER PAGE HERO
   ============================================ */
.page-hero {
  background: linear-gradient(135deg, var(--navy-dk), var(--navy));
  padding: 140px 0 60px;
  text-align: center;
}
.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  font-weight: 900;
  margin-bottom: 12px;
}
.page-hero p { color: rgba(255,255,255,0.7); font-size: 1.05rem; margin-bottom: 16px; }
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
}
.breadcrumb a { color: var(--orange); }
.breadcrumb span { color: rgba(255,255,255,0.35); }

/* ============================================
   SUCCESS MESSAGE
   ============================================ */
.form-success {
  display: none;
  text-align: center;
  padding: 20px;
  background: rgba(34,197,94,0.1);
  border: 1px solid rgba(34,197,94,0.3);
  border-radius: var(--radius);
  color: #16a34a;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
}

/* ============================================
   SCROLL TO TOP
   ============================================ */
.scroll-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 900;
  width: 44px;
  height: 44px;
  background: var(--orange);
  color: var(--white);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(244,121,32,0.45);
  opacity: 0;
  transform: translateY(20px);
  transition: all var(--transition);
  border: none;
}
.scroll-top.visible { opacity: 1; transform: translateY(0); }
.scroll-top:hover { background: var(--orange-dk); transform: translateY(-3px); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .hero-actions { justify-content: center; }
  .hero-trust { justify-content: center; }
  .hero-desc { margin: 0 auto 36px; }
  .why-grid { grid-template-columns: 1fr; gap: 40px; }
  .why-visual { order: -1; }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .process-steps::before { display: none; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .topbar { display: none; }
  .header { top: 0; }
  .hero { padding-top: 80px; }
  .nav-menu { display: none; position: fixed; top: 72px; left: 0; right: 0; background: var(--white); flex-direction: column; padding: 20px; gap: 4px; box-shadow: 0 12px 40px rgba(0,0,0,0.1); }
  .nav-menu.open { display: flex; }
  .nav-link { padding: 12px 16px; width: 100%; }
  .nav-phone { display: none; }
  .hamburger { display: flex; }
  .section { padding: 56px 0; }
  .services-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-divider { border-left: none; border-top: 1px solid rgba(255,255,255,0.12); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .areas-grid { grid-template-columns: repeat(auto-fill, minmax(120px, 1fr)); }
  .trust-bar-inner { flex-direction: column; gap: 14px; align-items: flex-start; }
  .hero-trust { flex-wrap: wrap; gap: 16px; }
  .trust-divider { display: none; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .contact-form-wrap { padding: 24px 20px; }
  .topbar-items .topbar-item:not(:first-child) { display: none; }
}
@media (max-width: 480px) {
  .hero h1 { font-size: 2rem; }
  .btn-lg { padding: 14px 24px; font-size: 0.9rem; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { text-align: center; justify-content: center; }
  .cta-actions { flex-direction: column; align-items: center; }
}

/* ============================================
   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; }
