/* ==========================================================
   OverWrite Relocation Company — Main Stylesheet
   Mobile-first. Breakpoints: 576 / 768 / 992 / 1200 / 1400
   ========================================================== */

:root {
  --navy: #003B67;
  --navy-dark: #062E52;
  --orange: #FF6B00;
  --orange-accent: #FF7A00;
  --white: #FFFFFF;
  --bg-light: #F5F9FC;
  --text: #17324D;
  --text-muted: #5A7086;
  --green: #20B15A;
  --border-light: #E3EBF2;

  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-sm: 10px;
  --shadow-soft: 0 10px 30px rgba(0, 59, 103, 0.10);
  --shadow-card: 0 6px 20px rgba(0, 59, 103, 0.08);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--white);
  padding-bottom: 64px; /* room for mobile bottom bar */
  overflow-x: hidden;
}

h1, h2, h3, h4, .brand-name, .brand-sub {
  font-family: 'Poppins', 'Inter', sans-serif;
}

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

.container { max-width: 1260px; }

/* -------- Buttons -------- */
.btn {
  border-radius: 50px;
  font-weight: 600;
  padding: 0.65rem 1.5rem;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  justify-content: center;
  border: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
}
.btn:active { transform: translateY(1px); }

.btn-cta {
  background: var(--orange);
  color: var(--white);
}
.btn-cta:hover { background: var(--orange-accent); color: var(--white); }

.btn-navy {
  background: var(--navy);
  color: var(--white);
}
.btn-navy:hover { background: var(--navy-dark); color: var(--white); }

.btn-whatsapp {
  background: var(--green);
  color: var(--white);
}
.btn-whatsapp:hover { background: #1a9b4c; color: var(--white); }

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

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.6);
}
.btn-outline-light:hover { background: var(--white); color: var(--navy); }

/* ==========================================================
   TOP BAR
   ========================================================== */
.top-bar {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.9);
  font-size: 0.82rem;
  padding: 7px 0;
}
.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
}
.top-bar-left {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  flex-wrap: nowrap;
  overflow-x: auto;
  scrollbar-width: none;
}
.top-bar-left::-webkit-scrollbar { display: none; }
.top-bar-item {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: rgba(255,255,255,0.9);
  white-space: nowrap;
}
.top-bar-item i { color: var(--orange-accent); font-size: 0.85rem; }
.top-bar-item:hover { color: var(--white); }

/* ==========================================================
   NAVBAR
   ========================================================== */
.main-nav {
  background: var(--white);
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  z-index: 1030;
  transition: box-shadow 0.2s ease;
}
.main-nav.scrolled { box-shadow: 0 4px 18px rgba(0,59,103,0.14); }
.navbar { padding: 0.6rem 0; }

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--navy), var(--navy-dark));
  color: var(--orange-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name { font-weight: 800; font-size: 1.15rem; color: var(--navy); }
.brand-sub { font-size: 0.68rem; font-weight: 500; color: var(--orange); letter-spacing: 0.3px; }

.navbar-nav .nav-link {
  color: var(--text);
  font-weight: 500;
  font-size: 0.93rem;
  padding: 0.55rem 0.85rem !important;
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--orange);
}
.navbar-nav .dropdown-menu {
  border: none;
  box-shadow: var(--shadow-soft);
  border-radius: var(--radius-sm);
  padding: 0.5rem;
}
.dropdown-item {
  font-size: 0.9rem;
  border-radius: 8px;
  padding: 0.5rem 0.8rem;
}
.dropdown-item:hover { background: var(--bg-light); color: var(--orange); }
.dropdown-header { font-size: 0.75rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px; }

.nav-cta { margin-left: 0.5rem; }

/* ==========================================================
   MOBILE MENU — OFFCANVAS POPUP PANEL
   ========================================================== */
.mobile-quick-call {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-light);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  border: 1px solid var(--border-light);
}
.mobile-quick-call:hover { background: var(--navy); color: var(--white); }

.navbar-toggler {
  border: none;
  padding: 0.4rem 0.55rem;
  border-radius: 10px;
  background: var(--bg-light);
  box-shadow: none !important;
}
.navbar-toggler-icon {
  width: 1.3em;
  height: 1.3em;
}

.mobile-menu-panel {
  width: min(340px, 86vw);
  border: none;
  box-shadow: -12px 0 40px rgba(0, 59, 103, 0.22);
}
.mobile-menu-panel .offcanvas-header {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  padding: 1.25rem 1.25rem;
}
.mobile-menu-panel .offcanvas-header .navbar-brand .brand-name { color: var(--white); }
.mobile-menu-panel .offcanvas-header .brand-sub { color: var(--orange-accent); }
.mobile-menu-panel .btn-close {
  filter: invert(1) grayscale(100%) brightness(200%);
  opacity: 0.9;
}
.mobile-menu-panel .offcanvas-body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
}

.mobile-nav-list { width: 100%; }
.mobile-nav-list .nav-item { border-bottom: 1px solid var(--border-light); }
.mobile-nav-list .nav-link {
  padding: 0.85rem 0.25rem !important;
  font-weight: 600;
  font-size: 0.98rem;
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mobile-nav-list .dropdown-toggle::after { margin-left: auto; }
.mobile-nav-list .dropdown-menu {
  position: static !important;
  box-shadow: none;
  background: var(--bg-light);
  border-radius: var(--radius-sm);
  margin: 0.25rem 0 0.5rem;
  width: 100%;
  transform: none !important;
}
.mobile-nav-list .dropdown-item { font-size: 0.86rem; padding: 0.55rem 0.9rem; }

.mobile-menu-cta {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin: 1.25rem 0;
}

.mobile-menu-footer {
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--border-light);
}
.mobile-menu-footer p {
  font-size: 0.82rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}
.mobile-menu-footer i { color: var(--orange); }

/* Dim/blur the page behind the popup */
.offcanvas-backdrop.show { opacity: 0.55; }

@media (min-width: 992px) {
  .mobile-menu-panel { display: none !important; }
}

/* ==========================================================
   HERO
   ========================================================== */
.hero-section {
  position: relative;
  background: linear-gradient(180deg, var(--bg-light) 0%, var(--white) 100%);
  padding: 2.5rem 0 3rem;
  overflow: hidden;
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.16;
  pointer-events: none;
  z-index: 0;
}
.hero-blob-1 {
  width: 340px; height: 340px;
  background: var(--orange);
  top: -120px; right: -80px;
}
.hero-blob-2 {
  width: 280px; height: 280px;
  background: var(--navy);
  bottom: -100px; left: -60px;
}

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

.hero-trust-chips { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-bottom: 1.4rem; }
.hero-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--white);
  border: 1px solid var(--border-light);
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.4rem 0.85rem;
  border-radius: 50px;
  box-shadow: var(--shadow-card);
}
.hero-chip i { color: #FFB020; }
.hero-chip i.bi-patch-check-fill { color: var(--green); }

.hero-eyebrow {
  color: var(--orange);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}
.hero-title {
  font-weight: 800;
  font-size: clamp(1.75rem, 4.4vw, 2.75rem);
  line-height: 1.2;
  color: var(--navy);
  margin-bottom: 1rem;
}
.hero-title .text-accent { color: var(--orange); }
.hero-subtext {
  font-size: 1.02rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  max-width: 520px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.hero-actions .btn { flex: 1 1 auto; }

.hero-image img { border-radius: var(--radius-lg); box-shadow: var(--shadow-soft); }

/* Quote card */
.quote-card-wrap { position: relative; }
.quote-card-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--green);
  color: var(--white);
  font-size: 0.74rem;
  font-weight: 700;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  box-shadow: 0 6px 16px rgba(32,177,90,0.35);
  z-index: 2;
  white-space: nowrap;
}
.quote-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: 1.75rem;
  border: 1px solid var(--border-light);
}
.quote-card-title { color: var(--navy); font-weight: 700; font-size: 1.3rem; margin-bottom: 0.25rem; }
.quote-card-subtitle { color: var(--text-muted); font-size: 0.88rem; margin-bottom: 1.25rem; }

.enquiry-form .form-label { font-size: 0.82rem; font-weight: 600; color: var(--text); margin-bottom: 0.3rem; }
.enquiry-form .form-control,
.enquiry-form .form-select {
  border-radius: 10px;
  border: 1.5px solid var(--border-light);
  padding: 0.6rem 0.85rem;
  font-size: 0.92rem;
}
.enquiry-form .form-control:focus,
.enquiry-form .form-select:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255,107,0,0.12);
}
.form-privacy-note { font-size: 0.76rem; color: var(--text-muted); text-align: center; }

/* Decorative desktop-only background truck image (behind hero, subtle) */
.hero-bg { display: none; }

@media (min-width: 992px) {
  .hero-section { padding: 4rem 0 5rem; }
}

/* ==========================================================
   STATS COUNTER BAND
   ========================================================== */
.stats-band {
  background: linear-gradient(90deg, var(--navy) 0%, var(--navy-dark) 100%);
  padding: 1.75rem 0;
  position: relative;
}
.stat-item { color: var(--white); }
.stat-number {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: clamp(1.6rem, 4vw, 2.3rem);
  color: var(--white);
  line-height: 1.1;
}
.stat-number small {
  font-size: 0.55em;
  font-weight: 700;
  color: var(--orange-accent);
  margin-left: 2px;
}
.stat-label {
  display: block;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.7);
  margin-top: 0.2rem;
}

/* ==========================================================
   TRUST STRIP
   ========================================================== */
.trust-strip {
  background: var(--navy);
  padding: 1.75rem 0;
}
.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--white);
}
.trust-icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  color: var(--orange-accent);
}
.trust-text { display: flex; flex-direction: column; line-height: 1.3; }
.trust-text strong { font-size: 0.88rem; font-weight: 600; }
.trust-text small { font-size: 0.74rem; color: rgba(255,255,255,0.65); }

/* ==========================================================
   SECTION HEADING (shared)
   ========================================================== */
.section-heading { text-align: center; margin-bottom: 2.25rem; }
.section-heading::before {
  content: "";
  display: block;
  width: 56px;
  height: 4px;
  background: var(--orange);
  border-radius: 2px;
  margin: 0 auto 1rem;
}
.text-lg-start.section-heading::before { margin: 0 0 1rem; }
@media (max-width: 991.98px) {
  .section-heading.text-lg-start::before { margin: 0 auto 1rem; }
}
.section-heading h2 {
  font-weight: 800;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  color: var(--navy);
  margin-bottom: 0.35rem;
}
.section-heading p { color: var(--text-muted); font-size: 0.98rem; margin: 0; }
.text-lg-start.section-heading { text-align: left; }
@media (max-width: 991.98px) {
  .section-heading.text-lg-start { text-align: center; }
}

/* ==========================================================
   SERVICES
   ========================================================== */
.services-section { padding: 3.5rem 0; background: var(--white); }

.service-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-light);
  height: 100%;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(0,59,103,0.14);
}
.service-card-img { aspect-ratio: 4 / 3; overflow: hidden; }
.service-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.45s ease; }
.service-card:hover .service-card-img img { transform: scale(1.09); }
.service-card-body { padding: 1.1rem; position: relative; }
.service-icon {
  position: absolute;
  top: -22px;
  left: 1.1rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--orange-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: 0 4px 10px rgba(0,59,103,0.3);
}
.service-card-body h3 {
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0.9rem 0 0.4rem;
}
.service-card-body p {
  font-size: 0.84rem;
  color: var(--text-muted);
  margin-bottom: 0.6rem;
  min-height: 2.6em;
}
.service-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--orange);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}
.service-link:hover { color: var(--orange-accent); gap: 0.5rem; }

/* ==========================================================
   AREAS: GURGAON / SERVICE-AREAS / DELHI NCR
   ========================================================== */
.areas-section { padding: 1.5rem 0 3.5rem; background: var(--bg-light); }

.area-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  height: 100%;
}
.area-card-img { width: 100%; height: 180px; object-fit: cover; }
.area-card-body { padding: 1.5rem; }
.area-card-body h3 { font-size: 1.15rem; font-weight: 700; color: var(--navy); margin-bottom: 0.6rem; }
.area-card-body p { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 1rem; }
.area-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.4rem 0.6rem;
  margin-bottom: 1.3rem;
}
.area-list li { font-size: 0.83rem; color: var(--text); display: flex; align-items: center; gap: 0.35rem; }
.area-list li i { color: var(--green); font-size: 0.8rem; }

.area-center-card {
  background: linear-gradient(150deg, var(--navy) 0%, var(--navy-dark) 100%);
  border-radius: var(--radius-lg);
  padding: 2.25rem 1.75rem;
  color: var(--white);
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.area-center-icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--orange-accent);
  margin-bottom: 1.1rem;
}
.area-center-card h3 { font-size: 1.3rem; font-weight: 700; margin-bottom: 0.75rem; }
.area-center-card p { font-size: 0.9rem; color: rgba(255,255,255,0.8); margin-bottom: 1.4rem; }

/* ==========================================================
   HOW IT WORKS
   ========================================================== */
.process-section { padding: 3.5rem 0; background: var(--white); }
.process-steps {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}
.process-step {
  text-align: center;
  max-width: 260px;
  margin: 0 auto;
}
.process-step-icon {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: var(--bg-light);
  border: 2px solid var(--orange);
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin: 0 auto 1rem;
}
.process-step h3 { font-size: 1.02rem; font-weight: 700; color: var(--navy); margin-bottom: 0.4rem; }
.process-step p { font-size: 0.86rem; color: var(--text-muted); margin: 0; }
.process-arrow { display: none; }

@media (min-width: 992px) {
  .process-steps {
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
  }
  .process-step { flex: 1; max-width: 240px; }
  .process-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--orange);
    font-size: 1.3rem;
    padding-top: 30px;
    flex: 0 0 40px;
  }
}

/* ==========================================================
   TESTIMONIALS
   ========================================================== */
.testimonials-section { padding: 3.5rem 0; background: var(--bg-light); }
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: 2rem;
  max-width: 640px;
  text-align: center;
}
.testimonial-stars { color: #FFB020; font-size: 0.95rem; margin-bottom: 0.9rem; letter-spacing: 2px; }
.testimonial-text { font-size: 1rem; color: var(--text); font-style: italic; margin-bottom: 1.3rem; }
.testimonial-author { display: flex; align-items: center; justify-content: center; gap: 0.7rem; }
.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.testimonial-author strong { display: block; font-size: 0.92rem; color: var(--navy); }
.testimonial-author small { color: var(--text-muted); font-size: 0.8rem; }

.carousel-control-prev, .carousel-control-next { width: 5%; opacity: 1; }
.carousel-btn-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--white);
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-card);
}
.carousel-indicators-custom { display: flex; justify-content: center; gap: 0.4rem; margin-top: 1.2rem; }
.carousel-indicators-custom button {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: none;
  background: var(--border-light);
  padding: 0;
}
.carousel-indicators-custom button.active { background: var(--orange); width: 22px; border-radius: 5px; transition: 0.2s; }

/* ==========================================================
   FAQ
   ========================================================== */
.faq-section { padding: 3.5rem 0; background: var(--white); }
.faq-section .section-heading { margin-bottom: 1.5rem; }
.accordion-item { border: 1px solid var(--border-light); border-radius: var(--radius-sm) !important; margin-bottom: 0.75rem; overflow: hidden; }
.accordion-button {
  font-weight: 600;
  font-size: 0.94rem;
  color: var(--navy);
  background: var(--bg-light);
  padding: 1rem 1.1rem;
}
.accordion-button:not(.collapsed) { background: var(--navy); color: var(--white); box-shadow: none; }
.accordion-button:focus { box-shadow: none; border-color: var(--border-light); }
.accordion-button::after { filter: none; }
.accordion-body { font-size: 0.88rem; color: var(--text-muted); padding: 1rem 1.1rem; }

/* ==========================================================
   FINAL CTA
   ========================================================== */
.final-cta { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%); padding: 3.25rem 0; color: var(--white); }
.final-cta-image { position: relative; }
.final-cta-image img { border-radius: var(--radius-lg); }
.final-cta-badge {
  position: absolute;
  bottom: -14px;
  right: -10px;
  background: var(--orange);
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.82rem;
  line-height: 1.3;
  padding: 0.6rem 1rem;
  border-radius: var(--radius-sm);
  transform: rotate(-3deg);
  box-shadow: var(--shadow-soft);
}
.final-cta-heading { font-size: clamp(1.4rem, 3vw, 2rem); font-weight: 800; margin-bottom: 0.8rem; }
.final-cta-text { color: rgba(255,255,255,0.82); font-size: 0.98rem; max-width: 500px; }

/* ==========================================================
   FOOTER
   ========================================================== */
.site-footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.85);
  padding-top: 3.5rem;
  position: relative;
  overflow: hidden;
}
.footer-skyline {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 90px;
  background-image: repeating-linear-gradient(
    90deg,
    rgba(255,255,255,0.05) 0 40px,
    transparent 40px 70px
  );
  clip-path: polygon(0 100%, 0 40%, 3% 40%, 3% 20%, 6% 20%, 6% 55%, 10% 55%, 10% 10%, 14% 10%, 14% 45%, 18% 45%, 18% 25%, 22% 25%, 22% 60%, 27% 60%, 27% 5%, 31% 5%, 31% 50%, 36% 50%, 36% 30%, 41% 30%, 41% 65%, 46% 65%, 46% 15%, 51% 15%, 51% 55%, 56% 55%, 56% 35%, 61% 35%, 61% 60%, 66% 60%, 66% 20%, 71% 20%, 71% 50%, 76% 50%, 76% 10%, 81% 10%, 81% 45%, 86% 45%, 86% 25%, 91% 25%, 91% 55%, 96% 55%, 96% 15%, 100% 15%, 100% 100%);
  opacity: 0.5;
}
.footer-brand { display: inline-flex; align-items: center; gap: 0.6rem; margin-bottom: 1rem; }
.footer-brand .brand-name { color: var(--white); }
.footer-about { font-size: 0.87rem; line-height: 1.6; color: rgba(255,255,255,0.65); margin-bottom: 1.25rem; }
.footer-social { display: flex; gap: 0.6rem; }
.footer-social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.25);
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: 0.95rem;
  transition: 0.2s;
}
.footer-social a:hover { background: var(--orange); border-color: var(--orange); }

.footer-heading { color: var(--orange-accent); font-weight: 700; font-size: 0.95rem; margin-bottom: 1.1rem; }
.footer-links li { margin-bottom: 0.6rem; }
.footer-links a { font-size: 0.87rem; color: rgba(255,255,255,0.72); }
.footer-links a:hover { color: var(--orange-accent); }
.footer-links-grid { column-count: 1; }

.footer-divider { border-color: rgba(255,255,255,0.15); margin: 2.25rem 0 1.5rem; }

.footer-contact-row { font-size: 0.86rem; }
.footer-contact-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.78);
}
.footer-contact-item i { color: var(--orange-accent); font-size: 0.95rem; }
.footer-contact-item:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  margin-top: 2rem;
  padding: 1.1rem 0;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
  position: relative;
}
.footer-bottom a { color: rgba(255,255,255,0.75); }
.footer-bottom a:hover { color: var(--orange-accent); }

/* ==========================================================
   FLOATING BUTTONS (desktop)
   ========================================================== */
.floating-actions {
  position: fixed;
  right: 22px;
  bottom: 30px;
  z-index: 1040;
  flex-direction: column;
  gap: 0.75rem;
}
.fab {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  color: var(--white);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  border: none;
  transition: transform 0.15s ease;
}
.fab:hover { transform: scale(1.08); color: var(--white); }
.fab-whatsapp { background: var(--green); }
.fab-call { background: var(--navy); }
.fab-top { background: var(--orange); }

/* ==========================================================
   MOBILE BOTTOM BAR
   ========================================================== */
.mobile-bottom-bar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 1045;
  display: flex;
  background: var(--white);
  box-shadow: 0 -4px 16px rgba(0,0,0,0.12);
}
.mobile-bar-btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.15rem;
  padding: 0.55rem 0.25rem;
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--navy);
  border-right: 1px solid var(--border-light);
}
.mobile-bar-btn:last-child { border-right: none; }
.mobile-bar-btn i { font-size: 1.1rem; }
.mobile-bar-whatsapp { color: var(--green); }
.mobile-bar-quote { background: var(--orange); color: var(--white); }

/* ==========================================================
   MOBILE POPUP MODAL
   ========================================================== */
.mobile-popup-content {
  border-radius: var(--radius-lg);
  border: none;
  padding: 1.5rem;
  position: relative;
}
.modal-header-custom { text-align: center; margin-bottom: 1rem; padding-right: 1.5rem; }
.modal-header-custom h5 { color: var(--navy); font-weight: 700; font-size: 1.15rem; margin-bottom: 0.4rem; }
.modal-header-custom p { color: var(--text-muted); font-size: 0.86rem; margin: 0; }
.mobile-popup-content .btn-close { position: absolute; top: 1rem; right: 1rem; z-index: 2; }

/* ==========================================================
   BREADCRUMBS (inner pages)
   ========================================================== */
.breadcrumb-nav { background: var(--bg-light); padding: 0.75rem 0; font-size: 0.85rem; }
.breadcrumb-item a { color: var(--navy); }
.breadcrumb-item.active { color: var(--text-muted); }

/* ==========================================================
   INNER PAGE TEMPLATE (service / location pages)
   ========================================================== */
.shadow-soft { box-shadow: var(--shadow-soft); }

.inner-hero {
  background: linear-gradient(180deg, var(--bg-light) 0%, var(--white) 100%);
  padding: 2.5rem 0;
}
.inner-hero-title {
  font-weight: 800;
  font-size: clamp(1.5rem, 3.6vw, 2.25rem);
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: 0.9rem;
}
.inner-hero-text { color: var(--text-muted); font-size: 0.96rem; margin-bottom: 0.9rem; }

.inner-section { padding: 3rem 0; }
.bg-light-section { background: var(--bg-light); }
.inner-section-heading {
  font-weight: 800;
  font-size: clamp(1.35rem, 2.6vw, 1.85rem);
  color: var(--navy);
  margin-bottom: 1rem;
  text-align: center;
}
.inner-section-text { color: var(--text-muted); font-size: 0.97rem; line-height: 1.75; text-align: center; }
.inner-section-heading.text-start { text-align: left; }

.benefit-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1.5rem 1.1rem;
  text-align: center;
  height: 100%;
  box-shadow: var(--shadow-card);
}
.benefit-icon {
  width: 50px; height: 50px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--orange-accent);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem;
  margin: 0 auto 0.85rem;
}
.benefit-card h3 { font-size: 0.98rem; font-weight: 700; color: var(--navy); margin-bottom: 0.4rem; }
.benefit-card p { font-size: 0.82rem; color: var(--text-muted); margin: 0; }

.provide-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.94rem;
  color: var(--text);
  padding: 0.55rem 0;
  border-bottom: 1px dashed var(--border-light);
}
.provide-list li:last-child { border-bottom: none; }
.provide-list li i { color: var(--green); font-size: 1rem; margin-top: 0.15rem; flex-shrink: 0; }

.area-chip-list { display: flex; flex-wrap: wrap; gap: 0.6rem; justify-content: center; }
.area-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--bg-light);
  border: 1px solid var(--border-light);
  color: var(--text);
  font-size: 0.85rem;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 50px;
}
.area-chip i { color: var(--orange); }

.location-service-chip {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 0.9rem 1rem;
  height: 100%;
  box-shadow: var(--shadow-card);
  color: var(--text);
  font-weight: 600;
  font-size: 0.88rem;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.location-service-chip .benefit-icon { width: 40px; height: 40px; font-size: 1.05rem; margin: 0; flex-shrink: 0; }
.location-service-chip:hover { transform: translateY(-3px); box-shadow: var(--shadow-soft); color: var(--orange); }

.page-cta {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  color: var(--white);
  padding: 2.75rem 0;
  text-align: center;
}
.page-cta h2 { font-weight: 800; font-size: clamp(1.3rem, 2.8vw, 1.8rem); margin-bottom: 0.6rem; }
.page-cta p { color: rgba(255,255,255,0.82); font-size: 0.95rem; margin: 0; }
@media (min-width: 992px) {
  .page-cta { text-align: left; }
}

/* ==========================================================
   ABOUT US PAGE
   ========================================================== */
.about-story-img { border-radius: var(--radius-lg); box-shadow: var(--shadow-soft); }
.value-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  height: 100%;
  box-shadow: var(--shadow-card);
}
.value-card .benefit-icon { margin: 0 0 0.85rem; }

/* ==========================================================
   CONTACT PAGE
   ========================================================== */
.contact-info-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  height: 100%;
  box-shadow: var(--shadow-card);
}
.contact-info-card .benefit-icon { margin: 0; flex-shrink: 0; }
.contact-info-card h3 { font-size: 0.95rem; font-weight: 700; color: var(--navy); margin-bottom: 0.25rem; }
.contact-info-card p, .contact-info-card a { font-size: 0.86rem; color: var(--text-muted); margin: 0; }
.contact-map iframe, .contact-map { border-radius: var(--radius-lg); overflow: hidden; width: 100%; min-height: 320px; border: 0; }

/* ==========================================================
   LEGAL PAGES (Privacy / Terms)
   ========================================================== */
.legal-content h2 { font-size: 1.2rem; font-weight: 700; color: var(--navy); margin-top: 1.75rem; margin-bottom: 0.7rem; }
.legal-content h2:first-child { margin-top: 0; }
.legal-content p, .legal-content li { font-size: 0.93rem; color: var(--text-muted); line-height: 1.75; }
.legal-content ul { list-style: disc; padding-left: 1.2rem; margin-bottom: 1rem; }
.legal-updated { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 1.75rem; }

/* ==========================================================
   RESPONSIVE FINE-TUNING
   ========================================================== */

/* Small phones */
@media (max-width: 375px) {
  .hero-title { font-size: 1.55rem; }
  .quote-card { padding: 1.25rem; }
  .btn { font-size: 0.88rem; padding: 0.6rem 1.1rem; }
}

/* Extra-small phones: stack hero CTAs full-width for easy tapping */
@media (max-width: 575.98px) {
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .area-list { grid-template-columns: 1fr; }
}

/* Tablets */
@media (min-width: 576px) and (max-width: 767.98px) {
  .area-list { grid-template-columns: 1fr 1fr; }
}

/* iPad / medium */
@media (min-width: 768px) {
  .hero-actions .btn { flex: 0 1 auto; }
  .footer-links-grid { column-count: 2; }
}

/* Desktop */
@media (min-width: 992px) {
  body { padding-bottom: 0; }
  .mobile-bottom-bar { display: none !important; }
}

/* Large desktop hero background flourish */
@media (min-width: 1200px) {
  .hero-bg {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    width: 42%;
    height: 100%;
    opacity: 0.05;
    pointer-events: none;
  }
  .hero-bg img { width: 100%; height: 100%; object-fit: cover; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; transition: none !important; }
}

/* Focus visibility for accessibility */
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 2px;
}

/* ==========================================================
   SCROLL-REVEAL ANIMATION
   ========================================================== */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}
