/* =========================================
   24x7 SERVICE CENTER — MAIN STYLESHEET
   Light Theme | Outfit + Fraunces Fonts
   ========================================= */

:root {
  --blue: #1a56db;
  --blue-light: #e8f0fe;
  --blue-mid: #3b82f6;
  --orange: #f59e0b;
  --orange-light: #fef3c7;
  --dark: #0f172a;
  --mid: #334155;
  --soft: #64748b;
  --border: #e2e8f0;
  --bg: #f8fafc;
  --white: #ffffff;
  --radius: 14px;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-hover: 0 8px 32px rgba(26,86,219,0.15);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Outfit', sans-serif;
  color: var(--dark);
  background: var(--white);
  line-height: 1.6;
}

a { text-decoration: none; color: inherit; }

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===========================
   TOP BAR
   =========================== */
.topbar {
  background: var(--blue);
  color: white;
  text-align: center;
  padding: 8px 24px;
  font-size: 14px;
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.topbar strong { font-weight: 700; }

/* ===========================
   NAVBAR
   =========================== */
.navbar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.nav-container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.logo-24 {
  background: var(--blue);
  color: white;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 22px;
  padding: 4px 12px;
  border-radius: 8px;
  letter-spacing: -0.5px;
}
.logo-x { color: var(--orange); }
.logo-text {
  font-size: 17px;
  font-weight: 600;
  color: var(--dark);
  letter-spacing: -0.2px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
}
.nav-links a {
  display: block;
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 500;
  color: var(--mid);
  transition: all 0.2s;
}
.nav-links a:hover, .nav-links a.active {
  background: var(--blue-light);
  color: var(--blue);
}
.dropdown { position: relative; }
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: var(--shadow);
  min-width: 200px;
  padding: 8px;
  list-style: none;
  z-index: 200;
}
.dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu li a {
  display: block;
  padding: 10px 14px;
  border-radius: 8px;
  color: var(--mid);
  font-size: 14px;
  font-weight: 500;
}
.dropdown-menu li a:hover { background: var(--blue-light); color: var(--blue); }
.hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 26px;
  cursor: pointer;
  color: var(--dark);
  padding: 4px;
}

/* ===========================
   HERO
   =========================== */
.hero {
  background: linear-gradient(135deg, #eef4ff 0%, #f8fafc 50%, #fef9ec 100%);
  padding: 80px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  max-width: 1160px;
  margin: 0 auto;
  min-height: 520px;
}
.hero-content { flex: 1; max-width: 560px; }
.hero-badge {
  display: inline-block;
  background: var(--orange-light);
  color: #92400e;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
  border: 1px solid #fcd34d;
}
.hero h1 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  line-height: 1.1;
  color: var(--dark);
  margin-bottom: 18px;
  letter-spacing: -1px;
}
.hero h1 em {
  font-style: italic;
  color: var(--blue);
  font-family: 'Fraunces', serif;
  font-weight: 700;
}
.hero-sub {
  font-size: 17px;
  color: var(--soft);
  margin-bottom: 28px;
  line-height: 1.7;
}
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 32px; }
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue);
  color: white;
  padding: 14px 24px;
  border-radius: 10px;
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
}
.btn-primary:hover {
  background: #1344c0;
  transform: translateY(-1px);
  box-shadow: var(--shadow-hover);
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  padding: 14px 24px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  border: 2px solid var(--border);
  color: var(--mid);
  transition: all 0.2s;
}
.btn-secondary:hover {
  border-color: var(--blue);
  color: var(--blue);
  background: var(--blue-light);
}
.hero-brands { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.hero-brands > span { font-size: 14px; color: var(--soft); font-weight: 500; }
.brand-pills { display: flex; gap: 8px; flex-wrap: wrap; }
.brand-pills a {
  background: var(--white);
  border: 1.5px solid var(--border);
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  color: var(--mid);
  transition: all 0.2s;
}
.brand-pills a:hover {
  border-color: var(--blue);
  color: var(--blue);
  background: var(--blue-light);
}
.hero-image { flex: 0 0 auto; }
.hero-card-stack {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  max-width: 320px;
}
.stat-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 18px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform 0.2s;
}
.stat-card:hover { transform: translateY(-3px); }
.stat-card.accent {
  background: var(--blue);
  border-color: var(--blue);
  color: white;
}
.stat-card.accent .stat-label { color: rgba(255,255,255,0.8); }
.stat-num {
  font-size: 24px;
  font-weight: 800;
  color: var(--blue);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-card.accent .stat-num { color: white; }
.stat-label { font-size: 12px; color: var(--soft); font-weight: 500; }

/* ===========================
   SECTIONS COMMON
   =========================== */
.section-header {
  text-align: center;
  margin-bottom: 48px;
}
.section-tag {
  display: inline-block;
  background: var(--blue-light);
  color: var(--blue);
  font-size: 13px;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.section-header h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -0.5px;
  margin-bottom: 12px;
}
.section-sub { font-size: 16px; color: var(--soft); max-width: 500px; margin: 0 auto; }

/* ===========================
   SERVICES GRID
   =========================== */
.services { padding: 80px 24px; background: var(--bg); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: all 0.25s;
}
.service-card:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}
.service-card.featured {
  border-color: var(--blue);
  background: linear-gradient(135deg, #f0f5ff, var(--white));
  box-shadow: var(--shadow);
}
.service-card.cta-card {
  background: var(--blue);
  border-color: var(--blue);
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: center;
}
.service-card.cta-card h3, .service-card.cta-card p { color: white; }
.service-card.cta-card p { opacity: 0.85; margin-bottom: 20px; }
.service-icon { font-size: 36px; margin-bottom: 14px; }
.service-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}
.service-card p {
  font-size: 14px;
  color: var(--soft);
  margin-bottom: 16px;
  line-height: 1.6;
}
.service-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.service-card ul li {
  font-size: 13px;
  color: var(--mid);
  padding-left: 18px;
  position: relative;
}
.service-card ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--blue);
  font-weight: 700;
}

/* ===========================
   WHY US
   =========================== */
.why-us { padding: 80px 24px; background: var(--white); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.why-item {
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg);
  text-align: center;
  transition: all 0.2s;
}
.why-item:hover {
  border-color: var(--blue);
  background: var(--blue-light);
  transform: translateY(-3px);
}
.why-icon { font-size: 32px; margin-bottom: 12px; }
.why-item h4 {
  font-size: 17px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}
.why-item p { font-size: 14px; color: var(--soft); }

/* ===========================
   CONTACT
   =========================== */
.contact { padding: 80px 24px; background: var(--bg); }
.contact-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 48px;
  box-shadow: var(--shadow);
}
.contact-info h2 {
  font-size: 32px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}
.contact-info > p {
  font-size: 15px;
  color: var(--soft);
  margin-bottom: 28px;
  line-height: 1.7;
}
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
}
.contact-icon { font-size: 22px; margin-top: 2px; }
.contact-detail strong {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--soft);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 2px;
}
.contact-detail a {
  font-size: 20px;
  font-weight: 700;
  color: var(--blue);
}
.contact-detail span { font-size: 15px; color: var(--mid); }
.contact-form h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 20px;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  color: var(--dark);
  background: var(--bg);
  margin-bottom: 12px;
  outline: none;
  transition: border-color 0.2s;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--blue);
  background: var(--white);
}
.contact-form textarea { min-height: 90px; resize: vertical; }
.contact-form .btn-primary { width: 100%; justify-content: center; margin-top: 4px; }

/* ===========================
   FOOTER
   =========================== */
.footer {
  background: var(--dark);
  color: var(--white);
  padding: 56px 24px 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand .logo { margin-bottom: 16px; }
.footer-brand .logo-text { color: var(--white); }
.footer-brand p {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  margin-bottom: 16px;
}
.footer-phone {
  display: inline-block;
  font-size: 17px;
  font-weight: 700;
  color: var(--orange);
}
.footer-col h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-col ul li a {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--white); }
.footer-brands-bar {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}
.footer-brands-bar a {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 4px 14px;
  border-radius: 20px;
  transition: all 0.2s;
}
.footer-brands-bar a:hover {
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}
.footer-bottom {
  padding: 20px 0;
  text-align: center;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}

/* ===========================
   BRAND PAGE HERO
   =========================== */
.brand-hero {
  position: relative;
  overflow: hidden;
  background: #0a1628;
  padding: 60px 24px;
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.brand-hero-video-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.30;
  filter: saturate(0.6) brightness(0.65);
}
.brand-hero-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,22,40,0.90) 0%, rgba(26,86,219,0.45) 55%, rgba(10,22,40,0.85) 100%);
  z-index: 1;
}
.brand-hero-inner { position: relative; z-index: 2; }
.brand-hero h1 { color: #fff !important; }
.brand-hero p { color: rgba(255,255,255,0.80) !important; }
.brand-hero .hero-badge { background: rgba(245,158,11,0.18); color: #fbbf24; border-color: rgba(245,158,11,0.4); }
.brand-hero .hero-trust-row span { color: rgba(255,255,255,0.88); }
.brand-hero .brand-logo-big {
  font-size: 56px;
  font-weight: 900;
  color: var(--blue);
  letter-spacing: -3px;
  margin-bottom: 12px;
  font-family: 'Outfit', sans-serif;
}
.brand-hero h1 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 14px;
  letter-spacing: -0.5px;
}
.brand-hero p {
  font-size: 17px;
  color: rgba(255,255,255,0.80);
  max-width: 600px;
  margin: 0 auto 28px;
}
.brand-hero .cta-row {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===========================
   BRAND SERVICES TABLE
   =========================== */
.brand-services { padding: 70px 24px; background: var(--bg); }
.brand-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-top: 36px;
}
.brand-service-chip {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 12px;
  padding: 20px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 600;
  color: var(--dark);
  transition: all 0.2s;
}
.brand-service-chip:hover {
  border-color: var(--blue);
  color: var(--blue);
  background: var(--blue-light);
  transform: translateX(4px);
}
.brand-service-chip span { font-size: 22px; }

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 900px) {
  .hero {
    flex-direction: column;
    padding: 48px 24px;
    text-align: center;
  }
  .hero-cta, .hero-brands { justify-content: center; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .contact-box { grid-template-columns: 1fr; padding: 32px; gap: 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .hero-card-stack { grid-template-columns: repeat(4, 1fr); max-width: 100%; }
}

@media (max-width: 600px) {
  .topbar { gap: 12px; font-size: 13px; }
  .hamburger { display: block; }
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    z-index: 99;
  }
  .nav-links.open { display: flex; }
  .dropdown-menu { position: static; box-shadow: none; border: none; background: var(--bg); }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-card-stack { grid-template-columns: 1fr 1fr; max-width: 280px; }
}

/* ===========================
   COMPANY SVG LOGO
   =========================== */
.logo-svg-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.logo-svg-wrap .logo-text {
  font-size: 17px;
  font-weight: 600;
  color: var(--dark);
  letter-spacing: -0.2px;
}

/* ===========================
   BRAND HERO IMAGE
   =========================== */
.brand-hero-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  max-width: 900px;
  margin: 0 auto;
  flex-wrap: wrap;
}
.brand-hero-text { flex: 1; min-width: 260px; }
.brand-hero-img {
  flex: 0 0 260px;
  width: 260px;
  height: 180px;
  object-fit: contain;
  border-radius: 16px;
  background: rgba(255,255,255,0.10);
  box-shadow: 0 8px 32px rgba(0,0,0,0.35);
  padding: 16px;
  border: 1.5px solid rgba(255,255,255,0.20);
  backdrop-filter: blur(8px);
}
.brand-logo-img {
  width: 120px;
  height: 60px;
  object-fit: contain;
  margin-bottom: 12px;
}

/* ===========================
   WHATSAPP POPUP
   =========================== */
#wa-popup-wrap {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}
#wa-bubble {
  background: #25D366;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  transition: transform 0.2s, box-shadow 0.2s;
  border: none;
}
#wa-bubble:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,0.55);
}
#wa-bubble svg { width: 32px; height: 32px; }
#wa-card {
  background: white;
  border-radius: 16px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.15);
  width: 300px;
  overflow: hidden;
  transform-origin: bottom right;
  animation: waPopIn 0.3s cubic-bezier(0.34,1.56,0.64,1);
  border: 1px solid var(--border);
}
#wa-card.hidden { display: none; }
@keyframes waPopIn {
  from { opacity:0; transform: scale(0.7) translateY(20px); }
  to   { opacity:1; transform: scale(1) translateY(0); }
}
.wa-card-header {
  background: #075E54;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.wa-avatar {
  width: 46px; height: 46px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}
.wa-card-header h4 { color: white; font-size: 15px; font-weight: 700; margin-bottom: 2px; }
.wa-card-header p  { color: rgba(255,255,255,0.75); font-size: 12px; }
.wa-close {
  margin-left: auto; background: none; border: none;
  color: rgba(255,255,255,0.7); font-size: 20px; cursor: pointer; padding: 0 0 0 8px;
}
.wa-card-body { padding: 18px; }
.wa-bubble-msg {
  background: #f0f4f8;
  border-radius: 0 12px 12px 12px;
  padding: 12px 14px;
  font-size: 14px;
  color: var(--dark);
  line-height: 1.6;
  margin-bottom: 14px;
  position: relative;
}
.wa-bubble-msg::before {
  content: '';
  position: absolute;
  top: 0; left: -8px;
  border: 8px solid transparent;
  border-right-color: #f0f4f8;
  border-top-color: #f0f4f8;
}
.wa-card-body a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #25D366;
  color: white;
  font-weight: 700;
  font-size: 15px;
  padding: 12px;
  border-radius: 10px;
  transition: background 0.2s;
  text-decoration: none;
}
.wa-card-body a:hover { background: #1ebe5d; }
.wa-pulse {
  position: absolute;
  top: 0; right: 0;
  width: 16px; height: 16px;
  background: #ff3b3b;
  border-radius: 50%;
  border: 2px solid white;
  animation: pulse 1.8s infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(255,59,59,0.6); }
  70%  { box-shadow: 0 0 0 8px rgba(255,59,59,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,59,59,0); }
}
@media (max-width: 600px) {
  #wa-popup-wrap { bottom: 16px; right: 16px; }
  #wa-card { width: 270px; }
}

/* ===========================
   BTN WHATSAPP
   =========================== */
.btn-wa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25D366;
  color: white;
  padding: 14px 24px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
}
.btn-wa:hover { background: #1ebe5d; transform: translateY(-1px); }
.btn-wa-large { font-size: 18px; padding: 16px 32px; }

/* ===========================
   HERO TRUST ROW
   =========================== */
.hero-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 18px;
}
.hero-trust-row span {
  font-size: 13px;
  font-weight: 600;
  color: var(--mid);
  background: var(--bg);
  border: 1px solid var(--border);
  padding: 5px 12px;
  border-radius: 20px;
}

/* ===========================
   HOW IT WORKS
   =========================== */
.how-section { padding: 80px 24px; background: var(--white); }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 52px;
  left: 10%;
  width: 80%;
  height: 2px;
  background: linear-gradient(90deg, var(--blue-light), var(--blue), var(--blue-light));
  z-index: 0;
}
.step-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 16px;
  text-align: center;
  position: relative;
  z-index: 1;
  transition: all 0.2s;
}
.step-card:hover { border-color: var(--blue); transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.step-num {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--blue);
  color: white;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  border: 2px solid white;
  box-shadow: 0 2px 8px rgba(26,86,219,0.3);
}
.step-icon { font-size: 30px; margin: 8px 0 10px; }
.step-card h4 { font-size: 14px; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.step-card p  { font-size: 13px; color: var(--soft); line-height: 1.6; }

/* ===========================
   IMAGE GALLERY
   =========================== */
.img-gallery-section { padding: 80px 24px; background: var(--bg); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.gallery-card {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1.5px solid var(--border);
  background: var(--white);
  box-shadow: var(--shadow);
  transition: all 0.25s;
  position: relative;
}
.gallery-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); border-color: var(--blue); }
.gallery-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s;
}
.gallery-card:hover img { transform: scale(1.05); }
.gallery-label {
  padding: 12px 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--mid);
  background: var(--white);
}

/* ===========================
   BRAND FACTS
   =========================== */
.brand-facts-section { padding: 80px 24px; background: var(--white); }
.brand-facts-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.brand-facts-img img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 12px 40px rgba(26,86,219,0.12);
  object-fit: cover;
  height: 340px;
}
.brand-facts-text h2 { font-size: 32px; font-weight: 800; color: var(--dark); margin: 12px 0; letter-spacing: -0.5px; }
.brand-facts-text > p { font-size: 15px; color: var(--soft); line-height: 1.7; margin-bottom: 24px; }
.facts-list { display: flex; flex-direction: column; gap: 12px; }
.fact-item { display: flex; align-items: flex-start; gap: 12px; }
.fact-dot { color: var(--blue); font-size: 14px; margin-top: 2px; flex-shrink: 0; }
.fact-item p { font-size: 14px; color: var(--mid); line-height: 1.6; }

/* ===========================
   PRICING TABLE
   =========================== */
.pricing-section { padding: 80px 24px; background: var(--bg); }
.pricing-table-wrap { overflow-x: auto; }
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.pricing-table th {
  background: var(--blue);
  color: white;
  padding: 16px 20px;
  text-align: left;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.3px;
}
.pricing-table td {
  padding: 14px 20px;
  font-size: 14px;
  color: var(--mid);
  border-bottom: 1px solid var(--border);
}
.pricing-table tr:last-child td { border-bottom: none; }
.pricing-table tr:nth-child(even) td { background: var(--bg); }
.pricing-table td:first-child { color: var(--dark); font-weight: 600; }
.pricing-note { font-size: 12px; color: var(--soft); margin-top: 12px; text-align: center; }

/* ===========================
   TESTIMONIALS
   =========================== */
.reviews-section { padding: 80px 24px; background: var(--white); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.review-card {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: all 0.2s;
}
.review-card:hover { border-color: var(--blue); box-shadow: var(--shadow-hover); transform: translateY(-3px); }
.review-stars { font-size: 18px; margin-bottom: 12px; }
.review-text { font-size: 14px; color: var(--mid); line-height: 1.7; margin-bottom: 18px; font-style: italic; }
.reviewer { display: flex; align-items: center; gap: 12px; }
.reviewer-avatar {
  width: 42px; height: 42px;
  background: var(--blue);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  flex-shrink: 0;
}
.reviewer strong { display: block; font-size: 14px; color: var(--dark); font-weight: 700; }
.reviewer span   { font-size: 12px; color: var(--soft); }

/* ===========================
   FAQ
   =========================== */
.faq-section { padding: 80px 24px; background: var(--bg); }
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item.open { border-color: var(--blue); }
.faq-q {
  width: 100%;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--dark);
  text-align: left;
}
.faq-q:hover { background: var(--blue-light); }
.faq-arrow { font-size: 18px; color: var(--blue); flex-shrink: 0; transition: transform 0.2s; }
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-a { display: none; padding: 0 20px 18px; }
.faq-item.open .faq-a { display: block; }
.faq-a p { font-size: 14px; color: var(--soft); line-height: 1.7; }

/* ===========================
   SERVICE AREAS
   =========================== */
.areas-section { padding: 80px 24px; background: var(--white); }
.cities-grid { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-top: 32px; }
.city-pill {
  background: var(--bg);
  border: 1.5px solid var(--border);
  padding: 8px 18px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  color: var(--mid);
  transition: all 0.2s;
  cursor: default;
}
.city-pill:hover { border-color: var(--blue); color: var(--blue); background: var(--blue-light); }

/* ===========================
   FINAL CTA
   =========================== */
.final-cta-section { padding: 60px 24px; background: var(--bg); }
.final-cta-box {
  background: linear-gradient(135deg, var(--blue) 0%, #1344c0 100%);
  border-radius: 24px;
  padding: 60px 40px;
  text-align: center;
  box-shadow: 0 12px 48px rgba(26,86,219,0.25);
}
.final-cta-box h2 { font-size: clamp(24px, 3.5vw, 36px); font-weight: 800; color: white; margin-bottom: 12px; letter-spacing: -0.5px; }
.final-cta-box p  { font-size: 16px; color: rgba(255,255,255,0.85); margin-bottom: 28px; }

/* ===========================
   RESPONSIVE — NEW SECTIONS
   =========================== */
@media (max-width: 900px) {
  .steps-grid { grid-template-columns: repeat(3, 1fr); }
  .steps-grid::before { display: none; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .brand-facts-inner { grid-template-columns: 1fr; }
  .brand-facts-img { order: -1; }
  .brand-facts-img img { height: 240px; }
  .reviews-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .pricing-table th, .pricing-table td { padding: 10px 12px; font-size: 12px; }
  .final-cta-box { padding: 36px 20px; }
  .hero-trust-row { gap: 8px; }
}

/* ===========================
   BRANDS SHOWCASE (index)
   =========================== */
.brands-showcase-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 36px;
}
.brand-showcase-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 24px 16px;
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  text-decoration: none;
  transition: all 0.2s;
  text-align: center;
}
.brand-showcase-card:hover {
  border-color: var(--blue);
  background: var(--blue-light);
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}
.brand-showcase-card span {
  font-size: 13px;
  font-weight: 600;
  color: var(--mid);
}
.brand-showcase-card:hover span { color: var(--blue); }

/* ===========================
   STATS STRIP (index)
   =========================== */
.stats-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  text-align: center;
}
.strip-num {
  font-size: 32px;
  font-weight: 800;
  color: white;
  line-height: 1;
  margin-bottom: 6px;
}
.strip-label { font-size: 13px; color: rgba(255,255,255,0.8); font-weight: 500; }

@media (max-width: 900px) {
  .brands-showcase-grid { grid-template-columns: repeat(3, 1fr); }
  .stats-strip { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 600px) {
  .brands-showcase-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-strip { grid-template-columns: repeat(2, 1fr); }
}


.svc-svg { width:40px; height:40px; color: inherit; display:block; }
.brand-service-chip .svc-svg { width:28px; height:28px; flex-shrink:0; }
.service-icon .svc-svg { width:52px; height:52px; }
