/* ============================================
   AGARWAL BEST PACKERS & MOVERS - MAIN CSS
   Brand Colors: Red #D91F2A, Yellow #F5B301
   ============================================ */

:root {
  --red: #D91F2A;
  --red-dark: #a8141e;
  --yellow: #F5B301;
  --yellow-light: #FFF5CC;
  --dark: #0f172a;
  --dark2: #1e293b;
  --text: #374151;
  --text-light: #6b7280;
  --white: #ffffff;
  --border: #e5e7eb;
  --bg-soft: #fafafa;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.14);
  --radius: 10px;
  --radius-lg: 18px;
  --font: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
}

/* ---- RESET & BASE ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--text);
  background: #fff;
  line-height: 1.7;
  font-size: 16px;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
h1,h2,h3,h4 { line-height: 1.2; color: var(--dark); }

.container { width: min(1160px, 92%); margin: 0 auto; }

/* ---- TOPBAR ---- */
.topbar {
  background: var(--dark);
  color: #fff;
  font-size: 13.5px;
  padding: 8px 0;
  border-bottom: 2px solid var(--red);
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.topbar a { color: var(--yellow); font-weight: 700; }
.topbar a:hover { color: #fff; }
.topbar-right { display: flex; gap: 20px; flex-wrap: wrap; }
.topbar-right span { display: flex; align-items: center; gap: 5px; }

/* ---- HEADER ---- */
.site-header {
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 16px rgba(0,0,0,0.09);
}
.nav-wrap {
  display: flex;
  align-items: center;
  padding: 10px 0;
  gap: 16px;
}
.brand img { width: 220px; max-width: 100%; }
.main-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: auto;
}
.main-nav a {
  font-weight: 600;
  font-size: 14.5px;
  padding: 8px 12px;
  border-radius: 6px;
  color: var(--dark);
  transition: all 0.2s;
}
.main-nav a:hover,
.main-nav a.active { color: var(--red); background: #fef2f2; }
.header-cta {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-left: 10px;
}
.btn-call {
  background: var(--red);
  color: #fff;
  padding: 10px 18px;
  border-radius: 6px;
  font-weight: 800;
  font-size: 14px;
  white-space: nowrap;
  transition: background 0.2s;
}
.btn-call:hover { background: var(--red-dark); }
.btn-wa {
  background: #25D366;
  color: #fff;
  padding: 10px 16px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-toggle {
  display: none;
  background: var(--yellow);
  border: 0;
  font-size: 22px;
  padding: 8px 14px;
  border-radius: 6px;
  cursor: pointer;
  margin-left: auto;
}

/* ---- BUTTONS ---- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--red);
  color: #fff;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-weight: 800;
  font-size: 15px;
  transition: all 0.2s;
  border: 2px solid var(--red);
}
.btn-primary:hover { background: var(--red-dark); border-color: var(--red-dark); transform: translateY(-1px); }
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--dark);
  padding: 13px 26px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 15px;
  border: 2px solid var(--dark);
  transition: all 0.2s;
}
.btn-secondary:hover { background: var(--dark); color: #fff; }
.btn-yellow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--yellow);
  color: var(--dark);
  padding: 14px 28px;
  border-radius: var(--radius);
  font-weight: 800;
  font-size: 15px;
  transition: all 0.2s;
}
.btn-yellow:hover { background: #e0a500; transform: translateY(-1px); }

/* ---- SECTION UTILITIES ---- */
.section-tag {
  display: inline-block;
  background: #fef2f2;
  color: var(--red);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 30px;
  margin-bottom: 12px;
  border: 1px solid #fca5a5;
}
.section-heading {
  font-size: clamp(26px, 3.5vw, 40px);
  color: var(--dark);
  margin-bottom: 14px;
}
.section-sub {
  font-size: 17px;
  color: var(--text-light);
  max-width: 640px;
}
.section-header { text-align: center; margin-bottom: 52px; }
.section-header .section-sub { margin: 0 auto; }

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  background: linear-gradient(108deg, var(--yellow-light) 0%, #fff9e0 55%, #fff 100%);
  padding: 70px 0 60px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(245,179,1,0.18) 0%, transparent 70%);
  pointer-events: none;
}
.hero-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 50px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--red);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 30px;
  margin-bottom: 18px;
}
.hero h1 {
  font-size: clamp(30px, 4.2vw, 52px);
  color: var(--dark);
  margin-bottom: 18px;
  font-weight: 900;
  line-height: 1.1;
}
.hero h1 span { color: var(--red); }
.hero-desc {
  font-size: 17.5px;
  color: var(--text);
  margin-bottom: 28px;
  max-width: 560px;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 32px; }
.hero-trust {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 7px;
  background: #fff;
  border: 1.5px solid var(--border);
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--dark);
  box-shadow: var(--shadow);
}
.trust-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--red); }

/* ---- QUOTE CARD ---- */
.quote-card {
  background: var(--dark);
  border-radius: var(--radius-lg);
  padding: 30px 28px;
  border-top: 5px solid var(--red);
  box-shadow: var(--shadow-lg);
}
.quote-card h2 {
  color: #fff;
  font-size: 22px;
  text-align: center;
  margin-bottom: 6px;
}
.quote-card .card-sub {
  color: #94a3b8;
  text-align: center;
  font-size: 14px;
  margin-bottom: 20px;
}
.quote-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  padding: 12px 14px;
  background: #1e293b;
  border: 1.5px solid #334155;
  border-radius: 7px;
  color: #fff;
  font-size: 14.5px;
  font-family: inherit;
  margin-bottom: 10px;
  transition: border 0.2s;
}
.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  outline: none;
  border-color: var(--yellow);
}
.quote-form input::placeholder,
.quote-form textarea::placeholder { color: #64748b; }
.quote-form select option { background: #1e293b; }
.quote-form textarea { height: 80px; resize: none; }
.quote-form .hp-field { display: none; }
.quote-form .btn-submit {
  width: 100%;
  padding: 15px;
  background: var(--yellow);
  color: var(--dark);
  border: 0;
  border-radius: 8px;
  font-weight: 900;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.2s;
  margin-top: 4px;
}
.quote-form .btn-submit:hover { background: #e0a500; transform: translateY(-1px); }

/* ---- CONTACT STRIP ---- */
.contact-strip {
  background: var(--red);
  padding: 28px 0;
}
.strip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: center;
}
.strip-item {
  background: rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 18px 22px;
  color: #fff;
}
.strip-item strong { display: block; font-size: 12px; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 4px; opacity: .85; }
.strip-item a { display: block; font-size: 22px; font-weight: 900; color: var(--yellow); }
.strip-item span { display: block; font-size: 13.5px; opacity: .85; margin-top: 3px; }

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-section { padding: 90px 0; background: #fff; }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-img-wrap {
  position: relative;
}
.about-img-wrap img {
  width: 100%;
  border-radius: var(--radius-lg);
  object-fit: cover;
  height: 440px;
  box-shadow: var(--shadow-lg);
}
.about-exp-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--red);
  color: #fff;
  padding: 22px 26px;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.about-exp-badge .num { font-size: 42px; font-weight: 900; display: block; line-height: 1; }
.about-exp-badge .label { font-size: 12px; font-weight: 700; letter-spacing: .1em; opacity: .9; }
.about-content { padding-left: 20px; }
.about-content h2 { font-size: clamp(26px, 3vw, 36px); margin-bottom: 18px; }
.about-content p { margin-bottom: 16px; font-size: 16.5px; color: var(--text); }
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 30px 0;
  background: var(--yellow-light);
  border-radius: var(--radius-lg);
  padding: 24px;
}
.stat-box { text-align: center; }
.stat-box .num { font-size: 28px; font-weight: 900; color: var(--red); display: block; }
.stat-box .lbl { font-size: 13px; font-weight: 600; color: var(--text-light); }

/* ============================================
   WHY CHOOSE US
   ============================================ */
.why-section { padding: 90px 0; background: var(--yellow-light); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.why-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  box-shadow: var(--shadow);
  border-top: 4px solid transparent;
  transition: all 0.25s;
}
.why-card:hover { border-top-color: var(--red); transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.why-icon {
  width: 52px; height: 52px;
  background: #fef2f2;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 18px;
}
.why-card h3 { font-size: 18px; margin-bottom: 10px; color: var(--dark); }
.why-card p { font-size: 15px; color: var(--text-light); line-height: 1.65; }

/* ============================================
   SERVICES GRID
   ============================================ */
.services-section { padding: 90px 0; background: #fff; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.25s;
  box-shadow: var(--shadow);
}
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: var(--red); }
.service-card-img {
  height: 195px;
  overflow: hidden;
  background: var(--yellow-light);
}
.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.service-card:hover .service-card-img img { transform: scale(1.05); }
.service-card-body { padding: 22px 22px 24px; }
.service-card-body h3 { font-size: 18px; margin-bottom: 9px; }
.service-card-body p { font-size: 14.5px; color: var(--text-light); margin-bottom: 16px; }
.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--red);
  font-weight: 700;
  font-size: 14px;
}
.service-card-link:hover { gap: 10px; }

/* ============================================
   PROCESS SECTION
   ============================================ */
.process-section { background: var(--dark); padding: 90px 0; }
.process-section .section-heading { color: #fff; }
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.process-step {
  background: #1e293b;
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  border-left: 4px solid var(--yellow);
  position: relative;
}
.process-step .step-num {
  font-size: 42px;
  font-weight: 900;
  color: var(--yellow);
  opacity: .25;
  position: absolute;
  top: 18px;
  right: 20px;
  line-height: 1;
}
.process-step h3 { color: #fff; font-size: 17px; margin-bottom: 10px; }
.process-step p { color: #94a3b8; font-size: 14.5px; line-height: 1.65; }

/* ============================================
   SERVICE AREAS / BRANCHES
   ============================================ */

.branches-section {
  padding: 90px 0;
  background: var(--bg-soft);
  overflow: hidden;
}

.branches-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  width: 100%;
}

.branch-card {
  background: #fff;
  border-radius: 18px;
  padding: 24px;
  text-align: center;
  border-bottom: 3px solid var(--border);
  transition: all 0.25s ease;
  box-shadow: var(--shadow);
  overflow: hidden;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.branch-card:hover {
  border-bottom-color: var(--red);
  transform: translateY(-4px);
}

.branch-card.main {
  border-bottom-color: var(--red);
  background: #fef2f2;
}

.branch-card h3 {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--dark);
  line-height: 1.2;
}

.branch-card p {
  font-size: 15px;
  color: var(--text-light);
  margin-bottom: 16px;
  line-height: 1.5;
}

/* MAP */
.branch-card iframe {
  width: 100%;
  max-width: 100%;
  height: 190px;
  border: 0;
  border-radius: 12px;
  display: block;
  margin-top: 10px;
  overflow: hidden;
}

/* BUTTON AREA */
.branch-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.branch-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: 0.2s ease;
  white-space: nowrap;
}

.branch-call {
  background: #fff1f2;
  color: var(--red);
  border: 1px solid #fecdd3;
}

.branch-call:hover {
  background: var(--red);
  color: #fff;
}

.branch-wa {
  background: #22c55e;
  color: #fff !important;
}

.branch-wa:hover {
  background: #16a34a;
}

/* TABLET */
@media (max-width: 991px) {
  .branches-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
  }

  .branch-card {
    padding: 22px;
  }

  .branch-card h3 {
    font-size: 21px;
  }
}

/* MOBILE */
@media (max-width: 600px) {

  .branches-section {
    padding: 60px 0;
  }

  .branches-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .branch-card {
    padding: 18px;
  }

  .branch-card iframe {
    height: 210px;
  }

  .branch-card h3 {
    font-size: 20px;
  }

  .branch-card p {
    font-size: 14px;
  }

  .branch-actions {
    flex-direction: column;
    gap: 10px;
  }

  .branch-actions a {
    width: 100%;
  }
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-section { padding: 90px 0; background: #fff; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testi-card {
  background: var(--bg-soft);
  border-radius: var(--radius-lg);
  padding: 28px;
  border-top: 4px solid var(--red);
  position: relative;
}
.testi-card::before {
  content: '"';
  position: absolute;
  top: 14px; right: 22px;
  font-size: 56px;
  color: var(--red);
  opacity: .15;
  line-height: 1;
  font-family: Georgia, serif;
}
.testi-stars { color: var(--yellow); font-size: 16px; margin-bottom: 14px; }
.testi-card p { font-size: 15.5px; color: var(--text); line-height: 1.7; margin-bottom: 18px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 900;
  font-size: 16px;
  flex-shrink: 0;
}
.testi-name { font-weight: 800; font-size: 15px; }
.testi-loc { font-size: 13px; color: var(--text-light); }

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-section { padding: 90px 0; background: var(--yellow-light); }
.faq-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 60px;
  align-items: start;
}
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  background: #fff;
  border-radius: var(--radius);
  border: 1.5px solid var(--border);
  overflow: hidden;
}
.faq-q {
  width: 100%;
  background: transparent;
  border: 0;
  padding: 18px 20px;
  text-align: left;
  font-size: 15.5px;
  font-weight: 700;
  color: var(--dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.faq-q .faq-icon {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: #fef2f2;
  color: var(--red);
  font-size: 18px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: transform 0.2s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a {
  display: none;
  padding: 0 20px 18px;
  font-size: 15px;
  color: var(--text);
  line-height: 1.7;
  border-top: 1px solid var(--border);
}
.faq-item.open .faq-a { display: block; }

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
  background: linear-gradient(110deg, var(--red) 0%, #9b1b22 100%);
  padding: 70px 0;
}
.cta-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}
.cta-banner h2 { color: #fff; font-size: clamp(24px, 3vw, 36px); margin-bottom: 10px; }
.cta-banner p { color: rgba(255,255,255,0.85); font-size: 17px; }
.cta-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.cta-btns .btn-white {
  background: #fff;
  color: var(--red);
  padding: 14px 28px;
  border-radius: var(--radius);
  font-weight: 800;
  font-size: 15px;
  transition: all 0.2s;
}
.cta-btns .btn-white:hover { background: var(--yellow); color: var(--dark); }

/* ============================================
   FOOTER
   ============================================ */
.footer { background: #0a0f1e; color: #fff; padding: 70px 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid #1e293b;
}
.footer-brand img { width: 180px; margin-bottom: 16px; filter: brightness(0) invert(1); }
.footer-brand p { color: #94a3b8; font-size: 14.5px; line-height: 1.7; margin-bottom: 20px; }
.footer-contacts { display: flex; flex-direction: column; gap: 8px; }
.footer-contacts a {
  color: var(--yellow);
  font-weight: 700;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-contacts a:hover { color: #fff; }
.footer-col h4 {
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--red);
  display: inline-block;
}
.footer-col ul { display: flex; flex-direction: column; gap: 9px; }
.footer-col ul li a {
  color: #94a3b8;
  font-size: 14px;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-col ul li a:hover { color: var(--yellow); padding-left: 4px; }
.footer-address { color: #94a3b8; font-size: 14px; line-height: 1.8; }
.footer-address strong { color: #fff; display: block; margin-bottom: 6px; }
.footer-bottom {
  padding: 18px 0;
  text-align: center;
  color: #475569;
  font-size: 13.5px;
}
.footer-bottom a { color: var(--yellow); }

/* ---- WHATSAPP FLOAT ---- */
.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 22px;
  z-index: 999;
  background: #25D366;
  color: #fff;
  width: 58px; height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 6px 24px rgba(37,211,102,0.45);
  transition: all 0.2s;
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 8px 32px rgba(37,211,102,0.55); }

/* ---- MOBILE STICKY CALL ---- */
.sticky-call {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 998;
  background: var(--red);
  color: #fff;
  text-align: center;
  padding: 14px;
  font-weight: 800;
  font-size: 16px;
}
.sticky-call span { opacity: .8; font-weight: 500; font-size: 13px; margin-left: 6px; }

/* ============================================
   INNER HERO (Service Pages)
   ============================================ */
.inner-hero {
  background: linear-gradient(110deg, var(--yellow-light) 0%, #fff5cc 55%, #fff 100%);
  padding: 55px 0 50px;
  border-bottom: 3px solid var(--yellow);
}
.breadcrumb {
  font-size: 13px;
  font-weight: 600;
  color: #7a5c00;
  margin-bottom: 14px;
}
.breadcrumb a { color: var(--red); }
.breadcrumb span { color: var(--text-light); }
.inner-hero h1 { font-size: clamp(26px, 3.5vw, 44px); margin-bottom: 16px; }
.inner-hero p { font-size: 17px; color: var(--text); max-width: 650px; margin-bottom: 24px; }
.inner-hero .hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---- SERVICE PAGE LAYOUT ---- */
.service-page-section { padding: 75px 0; }
.sp-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 45px;
  align-items: start;
}
.sp-content h2 { font-size: 26px; margin: 32px 0 14px; }
.sp-content h2:first-child { margin-top: 0; }
.sp-content p { font-size: 16px; color: var(--text); margin-bottom: 16px; line-height: 1.75; }
.sp-content h3 { font-size: 19px; margin: 26px 0 12px; color: var(--dark); }
.checklist {
  margin: 18px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15.5px;
  color: var(--text);
}
.checklist li::before {
  content: '';
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  font-size: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='white'%3E%3Cpath fill-rule='evenodd' d='M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z' clip-rule='evenodd'/%3E%3C/svg%3E");
}
.areas-covered {
  background: var(--yellow-light);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin: 28px 0;
}
.areas-covered h3 { font-size: 18px; margin-bottom: 16px; }
.area-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.area-tag {
  background: #fff;
  border: 1.5px solid var(--yellow);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
}

/* ---- SIDEBAR FORM ---- */
.sidebar-card {
  background: var(--dark);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  border-top: 5px solid var(--red);
  position: sticky;
  top: 110px;
}
.sidebar-card h3 { color: #fff; font-size: 20px; margin-bottom: 6px; }
.sidebar-card .sc-sub { color: #94a3b8; font-size: 14px; margin-bottom: 20px; }
.sidebar-form input,
.sidebar-form select,
.sidebar-form textarea {
  width: 100%;
  padding: 12px 14px;
  background: #1e293b;
  border: 1.5px solid #334155;
  border-radius: 7px;
  color: #fff;
  font-size: 14px;
  font-family: inherit;
  margin-bottom: 10px;
}
.sidebar-form input::placeholder,
.sidebar-form textarea::placeholder { color: #64748b; }
.sidebar-form textarea { height: 75px; resize: none; }
.sidebar-form .hp-field { display: none; }
.sidebar-form .btn-submit {
  width: 100%;
  padding: 14px;
  background: var(--yellow);
  color: var(--dark);
  border: 0;
  border-radius: 8px;
  font-weight: 900;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.2s;
  margin-top: 4px;
}
.sidebar-form .btn-submit:hover { background: #e0a500; }
.sidebar-contact { margin-top: 22px; padding-top: 22px; border-top: 1px solid #1e293b; }
.sidebar-contact a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--yellow);
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 10px;
}
.sidebar-contact a:hover { color: #fff; }

/* ---- IMAGE GALLERY STRIP ---- */
.img-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 32px 0;
}
.img-strip img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: var(--radius);
}

/* ---- CONTENT INFO BOX ---- */
.info-box {
  background: var(--yellow-light);
  border-left: 4px solid var(--yellow);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 18px 20px;
  margin: 20px 0;
}
.info-box p { margin: 0; font-size: 15px; }

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-page { padding: 80px 0; }
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}
.contact-info h2 { font-size: 30px; margin-bottom: 18px; }
.contact-info p { font-size: 16px; color: var(--text); margin-bottom: 24px; }
.contact-detail {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}
.cd-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px;
  background: var(--bg-soft);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.cd-icon {
  width: 44px; height: 44px;
  background: #fef2f2;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.cd-item strong { display: block; font-size: 13px; text-transform: uppercase; letter-spacing: .08em; color: var(--text-light); margin-bottom: 3px; }
.cd-item a, .cd-item span { font-size: 15.5px; font-weight: 600; color: var(--dark); }
.cd-item a:hover { color: var(--red); }
.contact-form-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 36px;
  border: 1.5px solid var(--border);
  box-shadow: var(--shadow-lg);
}
.contact-form-card h3 { font-size: 22px; margin-bottom: 6px; }
.contact-form-card .fc-sub { color: var(--text-light); font-size: 15px; margin-bottom: 24px; }
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 13px 15px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: 15px;
  font-family: inherit;
  color: var(--dark);
  margin-bottom: 12px;
  transition: border 0.2s;
  background: #fafafa;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--red);
  background: #fff;
}
.contact-form .form-row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.contact-form textarea { height: 110px; resize: vertical; }
.contact-form .hp-field { display: none; }
.contact-form .btn-submit {
  width: 100%;
  padding: 15px;
  background: var(--red);
  color: #fff;
  border: 0;
  border-radius: 8px;
  font-weight: 800;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.2s;
}
.contact-form .btn-submit:hover { background: var(--red-dark); }
.map-section { padding: 0 0 80px; }
.map-section iframe { width: 100%; height: 380px; border: 0; border-radius: var(--radius-lg); }

/* ============================================
   THANK YOU PAGE
   ============================================ */
.ty-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--yellow-light) 0%, #fff 100%);
  padding: 40px 20px;
}
.ty-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 60px 50px;
  text-align: center;
  max-width: 560px;
  box-shadow: var(--shadow-lg);
  border-top: 6px solid var(--red);
}
.ty-icon { font-size: 64px; margin-bottom: 20px; }
.ty-card h1 { font-size: 32px; margin-bottom: 12px; }
.ty-card p { font-size: 16.5px; color: var(--text); margin-bottom: 10px; }
.ty-card .ty-num {
  display: inline-block;
  background: var(--red);
  color: #fff;
  padding: 6px 20px;
  border-radius: 30px;
  font-weight: 800;
  margin: 10px 0 24px;
  font-size: 18px;
}
.ty-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 20px; }

/* ============================================
   FORMS - GENERAL UTILITY
   ============================================ */
.form-note { font-size: 12px; color: #94a3b8; margin-top: 8px; text-align: center; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .branches-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px) {
  .main-nav {
    display: none;
    position: absolute;
    top: 72px; left: 0; right: 0;
    background: #fff;
    flex-direction: column;
    padding: 18px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
    z-index: 200;
    gap: 4px;
  }
  .main-nav.show { display: flex; }
  .nav-toggle { display: block; }
  .header-cta .btn-wa { display: none; }
  .hero-layout { grid-template-columns: 1fr; }
  .hero { background: var(--yellow-light); }
  .about-grid { grid-template-columns: 1fr; }
  .about-content { padding-left: 0; }
  .about-exp-badge { right: 0; bottom: 0; }
  .about-img-wrap img { height: 300px; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .faq-layout { grid-template-columns: 1fr; }
  .strip-grid { grid-template-columns: 1fr; }
  .sp-layout { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .branches-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-banner-inner { flex-direction: column; text-align: center; }
  .sticky-call { display: block; }
  .whatsapp-float { bottom: 70px; }
  .img-strip { grid-template-columns: 1fr 1fr; }
  .hero h1 { font-size: 30px; }
  .ty-card { padding: 40px 26px; }
}

@media (max-width: 600px) {
  .why-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .branches-grid { grid-template-columns: 1fr 1fr; }
  .about-stats { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .quote-form .form-row { grid-template-columns: 1fr; }
  .contact-form .form-row2 { grid-template-columns: 1fr; }
  .brand img { width: 170px; }
  .img-strip { grid-template-columns: 1fr; }
}

/* ============================================
   ABOUT PAGE STYLES
   ============================================ */
.two-col-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 60px;
  align-items: start;
}
.two-col-text h2 { font-size: 28px; margin-bottom: 18px; color: var(--dark); }
.two-col-text p { color: var(--gray); line-height: 1.8; margin-bottom: 16px; }
.about-stats-card {
  background: var(--white);
  border: 1px solid #e8e8e8;
  border-radius: 12px;
  padding: 30px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  position: sticky;
  top: 90px;
}
.stat-item {
  text-align: center;
  padding: 20px 10px;
  background: var(--yellow-light);
  border-radius: 8px;
}
.stat-num {
  display: block;
  font-size: 32px;
  font-weight: 800;
  color: var(--red);
  line-height: 1;
}
.stat-label {
  display: block;
  font-size: 12px;
  color: var(--gray);
  margin-top: 6px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.content-block p { color: var(--gray); line-height: 1.9; margin-bottom: 18px; }
.content-block h2 { font-size: 26px; margin-bottom: 16px; color: var(--dark); }
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.team-card {
  background: var(--white);
  border: 1px solid #e8e8e8;
  border-radius: 10px;
  padding: 28px 22px;
  text-align: center;
  transition: box-shadow 0.2s, transform 0.2s;
}
.team-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.1); transform: translateY(-4px); }
.team-icon { font-size: 36px; margin-bottom: 14px; }
.team-card h3 { font-size: 16px; margin-bottom: 10px; color: var(--dark); }
.team-card p { font-size: 14px; color: var(--gray); line-height: 1.7; }
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.value-card {
  background: var(--white);
  border: 1px solid #e8e8e8;
  border-left: 4px solid var(--red);
  border-radius: 8px;
  padding: 26px 22px;
}
.value-card h3 { font-size: 16px; margin-bottom: 10px; color: var(--dark); }
.value-card p { font-size: 14px; color: var(--gray); line-height: 1.7; }

/* ============================================
   SERVICES PAGE STYLES
   ============================================ */
.services-page-grid { display: flex; flex-direction: column; gap: 40px; }
.service-detail-card {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 0;
  background: var(--white);
  border: 1px solid #e8e8e8;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,0.05);
}
.service-detail-card:nth-child(even) {
  grid-template-columns: 1fr 380px;
}
.service-detail-card:nth-child(even) .service-detail-img {
  order: 2;
}
.service-detail-card:nth-child(even) .service-detail-body {
  order: 1;
}
.service-detail-img {
  min-height: 280px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-detail-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.service-detail-body { padding: 36px 36px; }
.service-detail-body h2 { font-size: 22px; margin-bottom: 14px; }
.service-detail-body h2 a { color: var(--dark); text-decoration: none; }
.service-detail-body h2 a:hover { color: var(--red); }
.service-detail-body p { color: var(--gray); line-height: 1.8; margin-bottom: 14px; font-size: 15px; }
.service-detail-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}
.service-detail-list li {
  font-size: 13px;
  color: var(--gray);
  padding-left: 18px;
  position: relative;
}
.service-detail-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--red);
  font-weight: 700;
}

/* ============================================
   CONTACT PAGE STYLES
   ============================================ */
.contact-methods-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.contact-method-card {
  background: var(--white);
  border: 1px solid #e8e8e8;
  border-radius: 10px;
  padding: 28px 22px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.cm-icon { font-size: 36px; }
.contact-method-card h3 { font-size: 16px; color: var(--dark); margin: 0; }
.contact-method-card p { font-size: 14px; color: var(--gray); margin: 0; line-height: 1.6; }
.cm-note { font-size: 12px; color: #aaa; }
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 48px;
  align-items: start;
}
.contact-form-wrap h2 { font-size: 26px; margin-bottom: 8px; }
.contact-form-wrap > p { color: var(--gray); margin-bottom: 28px; }
.contact-form { display: flex; flex-direction: column; gap: 18px; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.form-submit-row { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.form-note { font-size: 12px; color: #aaa; flex: 1; min-width: 200px; }
.btn-large { padding: 16px 40px; font-size: 16px; }
.contact-sidebar {
  position: sticky;
  top: 90px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.contact-info-block {
  background: var(--white);
  border: 1px solid #e8e8e8;
  border-radius: 10px;
  padding: 22px;
}
.contact-info-block h3 { font-size: 14px; text-transform: uppercase; letter-spacing: 0.5px; color: var(--red); margin-bottom: 10px; }
.contact-info-block p { margin: 0; color: var(--gray); font-size: 14px; line-height: 1.7; }
.hours-table { width: 100%; border-collapse: collapse; font-size: 13px; }
.hours-table td { padding: 5px 0; color: var(--gray); }
.hours-table td:last-child { text-align: right; font-weight: 600; color: var(--dark); }
.map-embed { border-radius: 10px; overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,0.08); }

/* ============================================
   THANK YOU PAGE STYLES
   ============================================ */
.thankyou-section { padding: 60px 0 80px; }
.thankyou-card {
  background: var(--white);
  border: 1px solid #e8e8e8;
  border-radius: 16px;
  padding: 56px 48px;
  text-align: center;
  box-shadow: 0 4px 32px rgba(0,0,0,0.06);
  max-width: 720px;
  margin: 0 auto 60px;
}
.thankyou-icon { font-size: 64px; margin-bottom: 20px; }
.thankyou-card h1 { font-size: 30px; color: var(--dark); margin-bottom: 14px; }
.thankyou-lead { font-size: 16px; color: var(--gray); line-height: 1.8; margin-bottom: 36px; max-width: 560px; margin-left: auto; margin-right: auto; }
.thankyou-details { display: flex; flex-direction: column; gap: 18px; text-align: left; margin-bottom: 36px; }
.td-item { display: flex; gap: 16px; align-items: flex-start; background: var(--yellow-light); padding: 18px; border-radius: 8px; }
.td-icon { font-size: 24px; flex-shrink: 0; }
.td-item strong { display: block; font-size: 15px; color: var(--dark); margin-bottom: 4px; }
.td-item p { margin: 0; font-size: 14px; color: var(--gray); }
.thankyou-cta { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.next-steps { margin-bottom: 60px; }
.next-steps h2 { font-size: 26px; text-align: center; margin-bottom: 32px; }
.next-steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.ns-step {
  background: var(--white);
  border: 1px solid #e8e8e8;
  border-radius: 10px;
  padding: 28px 22px;
  text-align: center;
}
.ns-num {
  width: 44px;
  height: 44px;
  background: var(--red);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  margin: 0 auto 16px;
}
.ns-step h3 { font-size: 15px; margin-bottom: 10px; color: var(--dark); }
.ns-step p { font-size: 13px; color: var(--gray); line-height: 1.7; }
.thankyou-services { margin-bottom: 20px; }
.thankyou-services h2 { font-size: 24px; text-align: center; margin-bottom: 24px; }
.service-links-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.service-link-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border: 2px solid #e8e8e8;
  border-radius: 10px;
  padding: 24px 16px;
  text-decoration: none;
  color: var(--dark);
  font-size: 14px;
  font-weight: 600;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.service-link-card:hover { border-color: var(--red); box-shadow: 0 4px 20px rgba(217,31,42,0.1); color: var(--red); }
.slc-icon { font-size: 32px; }

/* ============================================
   PAGE HERO (for inner pages)
   ============================================ */
.page-hero {
  background: linear-gradient(135deg, var(--dark) 0%, #2a2a2a 100%);
  padding: 60px 0 40px;
  text-align: center;
}
.page-hero h1 { color: #fff; font-size: 34px; margin-bottom: 12px; }
.page-hero p { color: rgba(255,255,255,0.75); font-size: 16px; max-width: 600px; margin: 0 auto 16px; }
.breadcrumb { display: flex; gap: 8px; align-items: center; justify-content: center; font-size: 13px; color: rgba(255,255,255,0.55); }
.breadcrumb a { color: var(--yellow); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span { color: rgba(255,255,255,0.4); }

/* ============================================
   RESPONSIVE ADDITIONS
   ============================================ */
@media (max-width: 1024px) {
  .team-grid { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .contact-methods-grid { grid-template-columns: 1fr 1fr; }
  .service-detail-card,
  .service-detail-card:nth-child(even) { grid-template-columns: 1fr; }
  .service-detail-card:nth-child(even) .service-detail-img,
  .service-detail-card:nth-child(even) .service-detail-body { order: unset; }
  .service-detail-img { min-height: 220px; }
  .next-steps-grid { grid-template-columns: 1fr 1fr; }
  .service-links-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .two-col-layout { grid-template-columns: 1fr; }
  .about-stats-card { position: static; }
  .contact-layout { grid-template-columns: 1fr; }
  .contact-sidebar { position: static; }
  .contact-methods-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .team-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .contact-methods-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .service-detail-list { grid-template-columns: 1fr; }
  .thankyou-card { padding: 36px 20px; }
  .thankyou-cta { flex-direction: column; align-items: center; }
  .next-steps-grid { grid-template-columns: 1fr 1fr; }
  .service-links-grid { grid-template-columns: 1fr 1fr; }
  .page-hero h1 { font-size: 24px; }
  .about-stats-card { grid-template-columns: 1fr 1fr; }
}

/* ==========================================================
   PROFESSIONAL POLISH OVERRIDES - spacing, typography, cards
   Added by ChatGPT for final website refinement
   ========================================================== */
:root{
  --gray: var(--text-light);
  --font: Inter, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --heading-font: Poppins, Inter, "Segoe UI", Arial, sans-serif;
  --shadow: 0 8px 28px rgba(15,23,42,.075);
  --shadow-lg: 0 18px 60px rgba(15,23,42,.14);
  --radius: 12px;
  --radius-lg: 20px;
}
html{font-size:16px;overflow-x:hidden;}
body{font-family:var(--font);font-size:16px;line-height:1.76;color:#334155;overflow-x:hidden;text-rendering:optimizeLegibility;-webkit-font-smoothing:antialiased;}
h1,h2,h3,h4,.section-heading{font-family:var(--heading-font);font-weight:800;letter-spacing:-.025em;color:#0f172a;}
p{line-height:1.82;}
.container{width:min(1180px,92%);}

/* Header refinement */
.topbar{font-size:13px;padding:7px 0;}
.site-header{box-shadow:0 4px 20px rgba(15,23,42,.08);}
.nav-wrap{min-height:76px;padding:8px 0;}
.brand img{width:205px;max-height:66px;object-fit:contain;}
.main-nav{gap:8px;}
.main-nav a{font-size:14px;padding:11px 14px;border-radius:10px;}
.header-cta a,.btn-call,.btn-wa{border-radius:10px;}

/* Button polish */
.btn-primary,.btn-secondary,.btn-yellow,.btn-outline,.btn-white,.btn-call,.btn-wa,.btn-submit{min-height:44px;align-items:center;justify-content:center;letter-spacing:.01em;}
.btn-primary,.btn-secondary,.btn-yellow{padding:14px 26px;border-radius:12px;box-shadow:0 6px 16px rgba(217,31,42,.10);}
.btn-outline{display:inline-flex;align-items:center;justify-content:center;border:1.5px solid #cbd5e1;border-radius:12px;padding:12px 22px;font-weight:700;color:#0f172a;background:#fff;transition:.2s ease;}
.btn-outline:hover{border-color:var(--red);color:var(--red);transform:translateY(-1px);}

/* Global section rhythm */
.section,.about-section,.why-section,.services-section,.process-section,.branches-section,.testimonials-section,.faq-section,.service-page-section,.thankyou-section{padding-top:86px!important;padding-bottom:86px!important;}
.section-alt{background:#f8fafc;}
.section-header{max-width:790px;margin:0 auto 48px;text-align:center;}
.section-tag{margin-bottom:14px;font-size:11px;letter-spacing:.14em;padding:7px 14px;}
.section-heading,.section-header h2{font-size:clamp(28px,3.2vw,42px);line-height:1.16;margin-bottom:14px;}
.section-sub,.section-header p{font-size:16.5px;line-height:1.75;color:#64748b;margin-left:auto;margin-right:auto;}
.content-block{max-width:920px;margin-left:auto;margin-right:auto;}
.content-block p,.two-col-text p,.sp-content p,.service-detail-body p{font-size:16px;line-height:1.86;color:#475569;margin-bottom:18px;}

/* Hero improvements */
.hero{padding:86px 0 78px;background:linear-gradient(110deg,#fff5cc 0%,#fff8df 45%,#ffffff 100%);}
.hero-layout{grid-template-columns:minmax(0,1.08fr) minmax(360px,.92fr);gap:64px;}
.hero-badge{margin-bottom:20px;box-shadow:0 8px 20px rgba(217,31,42,.15);}
.hero h1{font-size:clamp(38px,4.2vw,58px);line-height:1.05;margin-bottom:22px;letter-spacing:-.045em;}
.hero-desc{font-size:18px;line-height:1.82;color:#475569;margin-bottom:30px;}
.hero-btns{gap:16px;margin-bottom:30px;}
.hero-trust{gap:10px;}
.trust-badge{padding:10px 14px;border-radius:999px;font-size:13px;background:#fff;}
.quote-card{padding:34px 30px;border-radius:22px;box-shadow:0 22px 70px rgba(15,23,42,.25);}
.quote-card h2{font-size:25px;margin-bottom:8px;}
.quote-card .card-sub{margin-bottom:22px;}
.quote-form input,.quote-form select,.quote-form textarea,.sidebar-form input,.sidebar-form select,.sidebar-form textarea{min-height:46px;border-radius:10px;font-size:14.5px;margin-bottom:12px;}
.quote-form textarea,.sidebar-form textarea{min-height:92px;}
.quote-form .btn-submit,.sidebar-form .btn-submit{min-height:48px;border-radius:12px;}

/* Contact strip */
.contact-strip{padding:30px 0;}
.strip-grid{gap:22px;}
.strip-item{padding:22px 24px;border-radius:16px;}
.strip-item a{font-size:20px;line-height:1.2;}

/* Page heroes */
.page-hero,.inner-hero{padding:76px 0 62px!important;text-align:center;position:relative;overflow:hidden;}
.page-hero{background:linear-gradient(135deg,#111827 0%,#1f2937 55%,#101827 100%);}
.inner-hero{background:linear-gradient(110deg,#fff5cc 0%,#fff9e6 56%,#fff 100%);border-bottom:1px solid #f2d77a;}
.page-hero h1,.inner-hero h1{font-size:clamp(32px,4vw,50px);line-height:1.12;max-width:920px;margin-left:auto;margin-right:auto;margin-bottom:16px;}
.page-hero p,.inner-hero p{font-size:17px;line-height:1.75;max-width:760px;margin-left:auto;margin-right:auto;margin-bottom:22px;}
.inner-hero .hero-btns,.page-hero .hero-btns{justify-content:center;}
.breadcrumb{justify-content:center;gap:9px;margin-bottom:14px;flex-wrap:wrap;}
.inner-hero .breadcrumb{color:#7c5b00;}

/* About and content blocks */
.about-grid,.two-col-layout{gap:72px;align-items:center;}
.about-content h2,.two-col-text h2,.content-block h2,.contact-form-wrap h2{font-size:clamp(28px,3vw,38px);line-height:1.2;margin-bottom:18px;}
.about-img-wrap img{border-radius:24px;}
.about-stats,.about-stats-card{border-radius:22px;box-shadow:var(--shadow);}
.stat-item,.stat-box{border-radius:16px;}
.stat-num,.stat-box .num{letter-spacing:-.04em;}

/* Cards and grids */
.why-grid,.services-grid,.process-grid,.testimonials-grid,.team-grid,.values-grid,.contact-methods-grid,.branches-grid,.next-steps-grid,.service-links-grid{gap:26px;}
.why-card,.service-card,.process-step,.testi-card,.team-card,.value-card,.contact-method-card,.branch-card,.contact-info-block,.ns-step,.service-link-card{border-radius:18px;box-shadow:var(--shadow);}
.why-card,.team-card,.value-card,.contact-method-card,.ns-step{padding:30px 26px;}
.service-card{display:flex;flex-direction:column;height:100%;}
.service-card-img{height:215px;background:linear-gradient(135deg,#fff5cc,#fef2f2);}
.service-card-body{padding:26px;display:flex;flex-direction:column;flex:1;}
.service-card-body h3,.why-card h3,.team-card h3,.value-card h3,.process-step h3{font-size:20px;line-height:1.3;margin-bottom:12px;}
.service-card-body p,.why-card p,.team-card p,.value-card p,.process-step p,.branch-card p,.contact-method-card p{font-size:15.2px;line-height:1.78;color:#64748b;}
.service-card-link{margin-top:auto;font-size:15px;}
.process-step{min-height:205px;padding:32px 26px;}
.process-step .step-num{top:20px;right:22px;font-size:46px;}
.testi-card{padding:32px;}
.branch-card{padding:22px 18px;}
.branch-card h3,.branch-card strong{font-size:17px;display:block;margin-bottom:4px;}

/* Services page cards */
.services-page-grid{gap:34px;}
.service-detail-card{grid-template-columns:minmax(330px,400px) 1fr;border-radius:22px;box-shadow:var(--shadow);border:1px solid #e2e8f0;}
.service-detail-card:nth-child(even){grid-template-columns:1fr minmax(330px,400px);}
.service-detail-img{min-height:330px;}
.service-detail-body{padding:42px;}
.service-detail-body h2{font-size:28px;line-height:1.2;margin-bottom:16px;}
.service-detail-list{gap:10px 18px;margin-top:18px;margin-bottom:24px;}
.service-detail-list li{font-size:14.5px;line-height:1.55;}

/* Service inner pages */
.sp-layout{grid-template-columns:minmax(0,1fr) 370px;gap:58px;}
.sp-content{max-width:780px;}
.sp-content h2{font-size:30px;line-height:1.25;margin:42px 0 15px;}
.sp-content h3{font-size:22px;margin:30px 0 14px;}
.checklist{gap:12px;margin:22px 0;}
.checklist li{font-size:15.8px;line-height:1.65;}
.info-box{padding:22px 24px;margin:28px 0;border-radius:0 16px 16px 0;background:#fffbeb;}
.areas-covered{padding:32px;border-radius:20px;margin:36px 0;background:#fffbeb;}
.area-tags{gap:10px;}
.area-tag{padding:8px 15px;border-radius:999px;}
.sidebar-card{top:104px;padding:30px 26px;border-radius:22px;box-shadow:0 18px 50px rgba(15,23,42,.20);}
.sidebar-card h3{font-size:23px;}
.sidebar-contact{margin-top:24px;padding-top:24px;}

/* Contact page */
.contact-method-card{min-height:265px;justify-content:flex-start;}
.cm-icon{font-size:42px;margin-bottom:4px;}
.contact-method-card h3{font-size:19px;}
.contact-layout{grid-template-columns:minmax(0,1fr) 360px;gap:58px;}
.contact-form-wrap{background:#fff;border:1px solid #e2e8f0;border-radius:22px;padding:36px;box-shadow:var(--shadow);}
.contact-form{gap:16px;}
.form-row{gap:18px;}
.form-group label{display:block;font-weight:700;font-size:14px;margin-bottom:8px;color:#334155;}
.contact-form input,.contact-form select,.contact-form textarea{min-height:48px;border-radius:12px;margin-bottom:0;background:#f8fafc;font-size:15px;}
.contact-form textarea{min-height:132px;}
.form-submit-row{margin-top:4px;}
.contact-sidebar{gap:20px;top:104px;}
.contact-info-block{padding:24px;}
.map-embed{border-radius:22px;box-shadow:var(--shadow-lg);}
.map-embed iframe{min-height:430px;border-radius:22px!important;}

/* FAQ */
.faq-list{gap:14px;}
.faq-item{border-radius:14px;box-shadow:0 4px 16px rgba(15,23,42,.04);}
.faq-q{padding:20px 22px;font-size:16px;line-height:1.35;}
.faq-a{padding:0 22px 20px;font-size:15.5px;line-height:1.8;}

/* CTA & Footer */
.cta-section,.cta-banner{padding:64px 0!important;}
.cta-section{background:#fff;}
.cta-inner,.cta-banner-inner{gap:32px;}
.cta-inner h2,.cta-banner h2{font-size:clamp(26px,3vw,38px);}
.footer{padding-top:78px;}
.footer-grid{gap:52px;align-items:start;}
.footer-brand img{filter:none!important;background:#fff;border-radius:8px;padding:8px;width:175px;margin-bottom:22px;}
.footer-brand p,.footer-address,.footer-col ul li a{font-size:14.5px;line-height:1.85;}
.footer-col h4{font-size:17px;margin-bottom:22px;}
.footer-bottom{padding:22px 0;}
.whatsapp-float{right:24px;bottom:26px;}

/* Thank you */
.thankyou-card{border-radius:24px;padding:60px 52px;}
.thankyou-card h1{font-size:clamp(30px,3vw,42px);}
.thankyou-lead{font-size:17px;}
.td-item{border-radius:16px;padding:20px;background:#fffbeb;}
.next-steps h2,.thankyou-services h2{font-size:32px;}

/* Responsive refinements */
@media (max-width:1024px){
  .hero-layout{grid-template-columns:1fr;gap:44px;}
  .quote-card{max-width:720px;width:100%;}
  .sp-layout,.contact-layout{grid-template-columns:1fr;gap:42px;}
  .sp-content{max-width:none;}
  .sidebar-card,.contact-sidebar,.about-stats-card{position:static;}
  .service-detail-card,.service-detail-card:nth-child(even){grid-template-columns:1fr;}
  .service-detail-card:nth-child(even) .service-detail-img,.service-detail-card:nth-child(even) .service-detail-body{order:unset;}
  .service-detail-img{min-height:260px;}
  .footer-grid{grid-template-columns:1fr 1fr;}
}
@media (max-width:900px){
  .section,.about-section,.why-section,.services-section,.process-section,.branches-section,.testimonials-section,.faq-section,.service-page-section,.thankyou-section{padding-top:64px!important;padding-bottom:64px!important;}
  .topbar-inner{justify-content:center;text-align:center;}
  .topbar-right{justify-content:center;gap:12px;}
  .nav-wrap{min-height:70px;position:relative;}
  .main-nav{top:70px;border-top:1px solid #e2e8f0;}
  .header-cta{margin-left:0;}
  .header-cta .btn-call{display:inline-flex;padding:10px 14px;font-size:13px;}
  .page-hero,.inner-hero{padding:58px 0 50px!important;}
  .contact-form-wrap{padding:28px;}
}
@media (max-width:640px){
  body{font-size:15.5px;}
  .container{width:min(100% - 30px,1180px);}
  .topbar{font-size:12px;}
  .topbar-right span:nth-child(2),.topbar-right span:nth-child(3){display:none;}
  .brand img{width:158px;max-height:56px;}
  .nav-toggle{padding:7px 11px;font-size:20px;}
  .header-cta .btn-call{display:none;}
  .hero{padding:58px 0 54px;}
  .hero h1{font-size:34px;}
  .hero-desc{font-size:16px;}
  .hero-btns,.cta-btns,.thankyou-cta{flex-direction:column;align-items:stretch;width:100%;}
  .hero-btns a,.cta-btns a,.thankyou-cta a,.btn-primary,.btn-secondary,.btn-yellow,.btn-outline{width:100%;}
  .quote-card{padding:26px 20px;border-radius:18px;}
  .section,.about-section,.why-section,.services-section,.process-section,.branches-section,.testimonials-section,.faq-section,.service-page-section,.thankyou-section{padding-top:48px!important;padding-bottom:48px!important;}
  .section-header{margin-bottom:34px;}
  .section-heading,.section-header h2{font-size:28px;}
  .page-hero h1,.inner-hero h1{font-size:30px;}
  .page-hero p,.inner-hero p{font-size:15.5px;}
  .about-grid,.two-col-layout{gap:36px;}
  .about-img-wrap img{height:260px;}
  .about-exp-badge{right:10px;bottom:10px;padding:16px 18px;}
  .about-exp-badge .num{font-size:30px;}
  .services-grid,.why-grid,.process-grid,.team-grid,.values-grid,.testimonials-grid,.contact-methods-grid{grid-template-columns:1fr!important;}
  .branches-grid,.next-steps-grid,.service-links-grid,.about-stats,.about-stats-card{grid-template-columns:1fr 1fr!important;gap:14px;}
  .service-card-img{height:190px;}
  .service-detail-body{padding:28px 22px;}
  .service-detail-body h2,.sp-content h2{font-size:25px;}
  .service-detail-list{grid-template-columns:1fr;}
  .sp-content h3{font-size:20px;}
  .areas-covered,.info-box{padding:22px;margin:26px 0;}
  .contact-form-wrap{padding:24px 18px;}
  .form-row{grid-template-columns:1fr!important;gap:14px;}
  .form-submit-row{flex-direction:column;align-items:stretch;}
  .contact-method-card{min-height:auto;}
  .map-embed iframe{min-height:320px;}
  .footer{padding-top:52px;padding-bottom:70px;}
  .footer-grid{grid-template-columns:1fr;gap:34px;}
  .whatsapp-float{width:54px;height:54px;right:18px;bottom:18px;}
  .thankyou-card{padding:38px 22px;}
  .next-steps-grid,.service-links-grid{grid-template-columns:1fr!important;}
}
