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

:root {
  --primary: #e51d22;
  --primary-dark: #c0151a;
  --primary-light: rgba(229, 29, 34, 0.1);
  --dark: #1a1a18;
  --dark-2: #231f21;
  --dark-3: #0d0d0b;
  --light: #f9f7f5;
  --text-muted: #6c757d;
  --border: #e8e8e8;
  --white: #ffffff;
  --shadow-sm: 0 2px 12px rgba(0,0,0,0.08);
  --shadow-md: 0 6px 24px rgba(0,0,0,0.12);
  --shadow-lg: 0 16px 48px rgba(0,0,0,0.16);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--dark);
  background: #fff;
  overflow-x: hidden;
  line-height: 1.6;
}

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

a { transition: all 0.3s ease; }

img { max-width: 100%; }

/* =========================================
   NAV INFO BAR (integrated ribbon)
========================================= */
.nav-info-bar {
  background: var(--primary);
  padding: 7px 0;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.92);
  font-weight: 500;
  width: 100%;
}
.nav-info-bar a { color: #fff; font-weight: 700; text-decoration: none; }
.nav-info-bar a:hover { text-decoration: underline; }

/* =========================================
   NAVBAR
========================================= */
.navbar {
  background: #fff !important;
  padding: 0;
  transition: all 0.35s ease;
  border-bottom: 1px solid #e8e8e8;
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
  flex-direction: column;
  align-items: stretch;
}
.navbar.scrolled {
  box-shadow: 0 4px 24px rgba(0,0,0,0.12);
}
.navbar.scrolled .nav-info-bar { display: none; }
.navbar.scrolled .nav-main-bar { padding: 8px 0; }

.nav-main-bar { padding: 12px 0; width: 100%; }

.navbar-brand img { height: 54px; width: auto; }
.navbar-toggler { border: 1.5px solid rgba(0,0,0,0.2); padding: 6px 10px; }

#mainNav .nav-link {
  color: var(--dark) !important;
  font-weight: 600;
  font-size: 0.93rem;
  padding: 8px 14px !important;
  letter-spacing: 0.2px;
  position: relative;
  text-decoration: none;
}
#mainNav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 14px; right: 14px;
  height: 2px;
  background: var(--primary);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
#mainNav .nav-link:hover { color: var(--primary) !important; }
#mainNav .nav-link:hover::after,
#mainNav .nav-link.active::after { transform: scaleX(1); }
#mainNav .nav-link.active { color: var(--primary) !important; }

.navbar .dropdown-menu {
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 10px;
  padding: 8px;
  margin-top: 8px;
  min-width: 220px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}
.navbar .dropdown-item {
  color: var(--dark);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 9px 14px;
  border-radius: 6px;
  transition: all 0.2s;
}
.navbar .dropdown-item:hover {
  background: var(--primary-light);
  color: var(--primary);
}
.navbar .dropdown-item i { margin-right: 8px; color: var(--primary); }

/* Nav phone in header (desktop) */
.nav-phone-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--dark) !important;
  font-weight: 700 !important;
  font-size: 0.95rem !important;
  text-decoration: none;
  padding: 8px 12px !important;
  border: 2px solid var(--border);
  border-radius: 8px;
  transition: all 0.3s;
}
.nav-phone-link i { color: var(--primary); }
.nav-phone-link::after { display: none !important; }
.nav-phone-link:hover {
  border-color: var(--primary) !important;
  color: var(--primary) !important;
  background: var(--primary-light);
}

.btn-nav-cta {
  background: var(--primary) !important;
  color: #fff !important;
  font-weight: 700 !important;
  padding: 10px 22px !important;
  border-radius: 6px !important;
  border: none;
  font-size: 0.9rem !important;
  letter-spacing: 0.3px;
  text-decoration: none !important;
}
.btn-nav-cta::after { display: none !important; }
.btn-nav-cta:hover {
  background: var(--primary-dark) !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(229,29,34,0.45) !important;
  color: #fff !important;
}

/* =========================================
   HERO SECTION
========================================= */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--dark);
  padding: 120px 0 80px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(229,29,34,0.12) 0%, transparent 70%),
    linear-gradient(135deg, #0d0d0b 0%, #1a1a18 40%, #2a0a0b 100%);
}
.hero-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 40px 40px;
}
.hero-content { position: relative; z-index: 3; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary-light);
  border: 1px solid rgba(229,29,34,0.3);
  color: #ff6b6b;
  padding: 7px 18px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.hero-badge .dot {
  width: 7px; height: 7px;
  background: var(--primary);
  border-radius: 50%;
  animation: pulse-dot 1.5s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.3); }
}

.hero-section h1,
.hero-slide h1,
.hero-video-section h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 900;
  color: #fff;
  margin-bottom: 22px;
  line-height: 1.12;
}
.hero-section h1 span,
.hero-slide h1 span,
.hero-video-section h1 span { color: var(--primary); }
.hero-section .lead,
.hero-slide .lead,
.hero-video-section .lead {
  color: rgba(255,255,255,0.78);
  font-size: 1.08rem;
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 560px;
}

.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--primary);
  color: #fff;
  padding: 15px 32px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  border: 2px solid var(--primary);
  transition: all 0.3s ease;
  font-family: 'Poppins', sans-serif;
}
.btn-hero-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(229,29,34,0.5);
}

.btn-hero-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: rgba(255,255,255,0.85);
  padding: 15px 32px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  border: 2px solid rgba(255,255,255,0.25);
  transition: all 0.3s ease;
  font-family: 'Poppins', sans-serif;
}
.btn-hero-outline:hover {
  border-color: rgba(255,255,255,0.7);
  color: #fff;
  background: rgba(255,255,255,0.06);
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 36px;
}
.trust-avatars {
  display: flex;
}
.trust-avatars span {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--primary);
  border: 2px solid var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  margin-left: -10px;
}
.trust-avatars span:first-child { margin-left: 0; }
.hero-trust p { color: rgba(255,255,255,0.7); font-size: 0.85rem; margin: 0; }
.hero-trust p strong { color: #fff; }

/* Hero Visual Right Side */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 500px;
}
.hero-circle {
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(229,29,34,0.15), rgba(229,29,34,0.05));
  border: 1px solid rgba(229,29,34,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.hero-circle::before {
  content: '';
  position: absolute;
  inset: -20px;
  border-radius: 50%;
  border: 1px dashed rgba(229,29,34,0.15);
  animation: rotate 20s linear infinite;
}
@keyframes rotate { to { transform: rotate(360deg); } }

.hero-icon-main {
  font-size: 7rem;
  filter: drop-shadow(0 0 40px rgba(229,29,34,0.4));
  animation: float 3s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.hero-float-card {
  position: absolute;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-float-card .num {
  font-family: 'Poppins', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--primary);
}
.hero-float-card .lbl {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.3;
}
.hero-float-card .ico {
  width: 40px; height: 40px;
  background: var(--primary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.1rem;
}
.hero-float-1 { top: 60px; right: -20px; }
.hero-float-2 { bottom: 100px; left: -30px; }
.hero-float-3 { top: 180px; right: -50px; }

/* Stars */
.stars { color: #ffc107; font-size: 0.85rem; }

/* =========================================
   STATS BAR
========================================= */
.stats-bar {
  background: var(--dark-2);
  padding: 0;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.stat-item {
  text-align: center;
  padding: 28px 20px;
  position: relative;
}
.stat-item + .stat-item::before {
  content: '';
  position: absolute;
  left: 0; top: 20%; bottom: 20%;
  width: 1px;
  background: rgba(255,255,255,0.08);
}
.stat-number {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
}
.stat-icon {
  font-size: 1.6rem;
  color: var(--primary);
  margin-bottom: 4px;
  display: block;
}
.stat-label {
  color: rgba(255,255,255,0.6);
  font-size: 0.82rem;
  font-weight: 500;
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* =========================================
   COMMON SECTION STYLES
========================================= */
.section-pad { padding: 90px 0; }
.section-pad-sm { padding: 60px 0; }

.section-label {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary);
  padding: 5px 16px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 16px;
}
.section-title span { color: var(--primary); }

.section-subtitle {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 600px;
}
.section-header-center .section-subtitle { margin: 0 auto; }

.section-header-center { text-align: center; margin-bottom: 60px; }

/* =========================================
   SERVICE CARDS
========================================= */
.bg-light-section { background: var(--light); }

.service-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.35s ease;
  height: 100%;
  border: 1px solid var(--border);
}
.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(229,29,34,0.15);
}
.service-card:hover .service-card-icon { background: var(--primary); color: #fff; }

.service-card-img {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  position: relative;
  overflow: hidden;
}
.service-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(0,0,0,0.45));
}
.svc-img-overlay {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 30% 40%, rgba(229,29,34,0.12) 0%, transparent 60%),
                    radial-gradient(circle at 70% 70%, rgba(255,255,255,0.04) 0%, transparent 50%);
  z-index: 1;
}

.sc-termite { background: linear-gradient(135deg, #2c1810, #4a2920); }
.sc-ant { background: linear-gradient(135deg, #1a1008, #3a2010); }
.sc-rodent { background: linear-gradient(135deg, #101828, #1e3a5f); }
.sc-spider { background: linear-gradient(135deg, #1a0828, #3a1050); }
.sc-cockroach { background: linear-gradient(135deg, #0a1a08, #1a3a10); }
.sc-mosquito { background: linear-gradient(135deg, #08101a, #103050); }

.service-card-body { padding: 24px; }
.service-card-icon {
  width: 48px; height: 48px;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 14px;
  transition: all 0.3s;
}
.service-card-body h4,
.service-card-body h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--dark);
}
.service-card-body p {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.65;
  margin-bottom: 18px;
}
.link-red {
  color: var(--primary);
  font-weight: 600;
  font-size: 0.88rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.link-red:hover { color: var(--primary-dark); gap: 10px; }

/* =========================================
   WHY CHOOSE US
========================================= */
.advantage-item {
  display: flex;
  gap: 18px;
  margin-bottom: 28px;
  align-items: flex-start;
}
.advantage-icon {
  width: 54px; height: 54px;
  border-radius: 14px;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
  box-shadow: 0 6px 18px rgba(229,29,34,0.35);
}
.advantage-content h5 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 5px;
  color: var(--dark);
}
.advantage-content p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.6;
}

/* Right visual for why us */
.why-visual {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  height: 480px;
  background: linear-gradient(135deg, var(--dark) 0%, #2a0a0b 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.why-visual-content {
  text-align: center;
  color: #fff;
  position: relative;
  z-index: 2;
}
.why-visual-icon { font-size: 8rem; margin-bottom: 20px; }
.why-visual h3 { font-size: 1.5rem; color: #fff; margin-bottom: 8px; }
.why-visual p { color: rgba(255,255,255,0.65); font-size: 0.9rem; }

.why-badge {
  position: absolute;
  bottom: 30px;
  left: 30px;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  z-index: 3;
}
.why-badge .rating-num {
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
}
.why-badge .rating-label { font-size: 0.78rem; color: rgba(255,255,255,0.65); }

/* =========================================
   PROCESS SECTION
========================================= */
.process-section { background: var(--light); }

.process-step {
  text-align: center;
  padding: 0 10px;
  position: relative;
}
.process-connector {
  position: absolute;
  top: 40px;
  left: 55%;
  right: -55%;
  height: 2px;
  background: linear-gradient(to right, var(--primary), rgba(229,29,34,0.2));
}
.process-step:last-child .process-connector { display: none; }

.process-num {
  width: 80px; height: 80px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  position: relative;
  z-index: 2;
  box-shadow: 0 8px 25px rgba(229,29,34,0.4);
}
.process-num span {
  font-family: 'Poppins', sans-serif;
  font-size: 1.6rem;
  font-weight: 900;
  color: #fff;
}
.process-step h5 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--dark);
}
.process-step p {
  font-size: 0.87rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* =========================================
   SERVICE AREAS
========================================= */
.areas-section {
  background: var(--dark-2);
  position: relative;
  overflow: hidden;
}
.areas-section::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(229,29,34,0.1), transparent 70%);
}
.area-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.8);
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.3s;
  text-decoration: none;
}
.area-pill:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  transform: translateY(-2px);
}
.area-pill i { color: var(--primary); }
.area-pill:hover i { color: #fff; }

.areas-map-placeholder {
  background: rgba(0,0,0,0.3);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  color: rgba(255,255,255,0.4);
}
.areas-map-placeholder i { font-size: 3rem; color: var(--primary); opacity: 0.5; }

/* =========================================
   TESTIMONIALS
========================================= */
.testimonial-card {
  background: #fff;
  border-radius: 18px;
  padding: 32px;
  box-shadow: var(--shadow-md);
  height: 100%;
  border: 1px solid var(--border);
  transition: all 0.3s;
}
.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(229,29,34,0.15);
}
.t-stars { color: #ffc107; font-size: 1rem; margin-bottom: 16px; }
.t-quote {
  font-size: 2.5rem;
  color: var(--primary);
  opacity: 0.2;
  line-height: 1;
  margin-bottom: 8px;
}
.t-text {
  color: #555;
  font-size: 0.92rem;
  line-height: 1.75;
  margin-bottom: 24px;
  font-style: italic;
}
.t-author { display: flex; align-items: center; gap: 14px; }
.t-avatar {
  width: 50px; height: 50px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.t-avatar.av2 { background: #2563eb; }
.t-avatar.av3 { background: #059669; }
.t-name { font-weight: 700; font-size: 0.95rem; color: var(--dark); margin: 0; }
.t-role { font-size: 0.8rem; color: var(--text-muted); }

/* =========================================
   CTA / CONTACT SECTION
========================================= */
.cta-section {
  background: linear-gradient(135deg, var(--dark) 0%, #2a0a0b 100%);
  position: relative;
  overflow: hidden;
  padding: 90px 0;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(229,29,34,0.08), transparent 70%);
}
.cta-section::after {
  content: '';
  position: absolute;
  bottom: -100px; left: -50px;
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(229,29,34,0.06), transparent 70%);
}
.cta-content { position: relative; z-index: 2; }
.cta-section .section-label { background: rgba(229,29,34,0.2); border: 1px solid rgba(229,29,34,0.3); }
.cta-section h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 900;
  color: #fff;
  margin-bottom: 18px;
}
.cta-section h2 span { color: var(--primary); }
.cta-section p { color: rgba(255,255,255,0.68); font-size: 1rem; line-height: 1.7; margin-bottom: 28px; }

.cta-phone {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  padding: 18px 24px;
  margin-bottom: 10px;
}
.cta-phone .phone-ico {
  width: 50px; height: 50px;
  background: var(--primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.3rem;
  animation: ring 2s ease-in-out infinite;
}
@keyframes ring {
  0%, 100% { transform: rotate(0); }
  10%, 30% { transform: rotate(-10deg); }
  20%, 40% { transform: rotate(10deg); }
  50% { transform: rotate(0); }
}
.cta-phone .phone-text small { color: rgba(255,255,255,0.5); font-size: 0.78rem; display: block; }
.cta-phone .phone-text a {
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  text-decoration: none;
}
.cta-phone .phone-text a:hover { color: var(--primary); }

/* Contact/Quote Form Card */
.form-card {
  background: #fff;
  border-radius: 20px;
  padding: 42px 38px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
  position: relative;
  z-index: 2;
}
.form-card h4 {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 6px;
}
.form-card p { color: var(--text-muted); font-size: 0.88rem; margin-bottom: 28px; }

.form-label {
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--dark);
  margin-bottom: 6px;
}
.form-control, .form-select {
  border: 2px solid var(--border);
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 0.9rem;
  color: var(--dark);
  transition: all 0.3s;
  background: #fafafa;
}
.form-control:focus, .form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(229,29,34,0.1);
  background: #fff;
}
textarea.form-control { min-height: 110px; resize: vertical; }

.btn-submit {
  display: block;
  width: 100%;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 14px;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
  letter-spacing: 0.3px;
}
.btn-submit:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(229,29,34,0.45);
}

/* =========================================
   FOOTER
========================================= */
.footer {
  background: var(--dark-3);
  color: rgba(255,255,255,0.65);
}
.footer-main { padding: 72px 0 40px; }
.footer-logo { height: 55px; margin-bottom: 20px; }
.footer-about p {
  font-size: 0.88rem;
  line-height: 1.75;
  max-width: 280px;
  margin-bottom: 24px;
}
.footer-socials { display: flex; gap: 10px; }
.social-btn {
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  font-size: 1rem;
  transition: all 0.3s;
}
.social-btn:hover { background: var(--primary); border-color: var(--primary); color: #fff; }

.footer-heading {
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 22px;
  padding-bottom: 12px;
  border-bottom: 2px solid rgba(229,29,34,0.4);
  display: inline-block;
}
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 0.88rem;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s;
}
.footer-links a i { color: var(--primary); font-size: 0.7rem; }
.footer-links a:hover { color: var(--primary); padding-left: 4px; }

.footer-contact-list { list-style: none; padding: 0; margin: 0; }
.footer-contact-list li {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  align-items: flex-start;
}
.footer-contact-list li i {
  color: var(--primary);
  font-size: 1rem;
  margin-top: 2px;
  flex-shrink: 0;
}
.footer-contact-list li span { font-size: 0.88rem; line-height: 1.5; }
.footer-contact-list li a { color: rgba(255,255,255,0.65); text-decoration: none; }
.footer-contact-list li a:hover { color: var(--primary); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 20px 0;
  text-align: center;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
}
.footer-bottom a { color: rgba(255,255,255,0.5); text-decoration: none; }
.footer-bottom a:hover { color: var(--primary); }

/* =========================================
   PAGE HEADER
========================================= */
.page-header {
  background: linear-gradient(135deg, var(--dark) 0%, #2a0a0b 100%);
  padding: 160px 0 70px;
  text-align: center;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 270px;
}
.page-header .container {
  position: relative;
  z-index: 2;
  width: 100%;
}
.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 40px 40px;
}
.page-header h1 {
  color: #fff;
  font-size: clamp(1.8rem, 5vw, 3rem);
  font-weight: 900;
  margin-bottom: 14px;
}
.page-header .breadcrumb {
  justify-content: center;
  background: none;
  margin: 0;
}
.page-header .breadcrumb-item { color: rgba(255,255,255,0.55); font-size: 0.88rem; }
.page-header .breadcrumb-item a { color: rgba(255,255,255,0.55); text-decoration: none; }
.page-header .breadcrumb-item a:hover { color: var(--primary); }
.page-header .breadcrumb-item.active { color: var(--primary); }
.page-header .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.3); }

/* =========================================
   ABOUT PAGE
========================================= */
.about-img-wrap {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  height: 440px;
  background: linear-gradient(135deg, var(--dark), #2a0a0b);
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-img-wrap .icon { font-size: 9rem; }
.about-exp-badge {
  position: absolute;
  bottom: 24px; right: 24px;
  background: var(--primary);
  border-radius: 16px;
  padding: 16px 20px;
  text-align: center;
}
.about-exp-badge .num {
  font-family: 'Poppins', sans-serif;
  font-size: 2.2rem;
  font-weight: 900;
  color: #fff;
  display: block;
  line-height: 1;
}
.about-exp-badge .lbl { color: rgba(255,255,255,0.8); font-size: 0.78rem; font-weight: 600; }

.about-stats-row { margin: 40px 0; }
.about-stat {
  text-align: center;
  padding: 24px;
  background: var(--light);
  border-radius: 14px;
  border: 1px solid var(--border);
}
.about-stat .num {
  font-family: 'Poppins', sans-serif;
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--primary);
  display: block;
}
.about-stat .lbl { color: var(--text-muted); font-size: 0.82rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }

.value-card {
  background: #fff;
  border-radius: 16px;
  padding: 32px 26px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  height: 100%;
  transition: all 0.3s;
  border-bottom: 4px solid transparent;
  text-align: center;
}
.value-card:hover {
  border-bottom-color: var(--primary);
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.value-card .v-icon {
  width: 64px; height: 64px;
  background: var(--primary-light);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  color: var(--primary);
  margin: 0 auto 20px;
}
.value-card h5 { font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; }
.value-card p { color: var(--text-muted); font-size: 0.88rem; line-height: 1.6; margin: 0; }

.team-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: all 0.3s;
  text-align: center;
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.team-img {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
}
.team-info { padding: 20px; }
.team-info h5 { font-weight: 700; font-size: 1rem; margin-bottom: 4px; }
.team-info span { color: var(--primary); font-size: 0.82rem; font-weight: 600; }

/* =========================================
   SERVICES PAGE
========================================= */
.service-detail-card {
  background: #fff;
  border-radius: 18px;
  padding: 38px 34px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  height: 100%;
  transition: all 0.3s;
  border-left: 5px solid transparent;
}
.service-detail-card:hover {
  border-left-color: var(--primary);
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}
.sdc-icon {
  width: 72px; height: 72px;
  background: var(--primary-light);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 22px;
  transition: all 0.3s;
}
.service-detail-card:hover .sdc-icon { background: var(--primary); color: #fff; }
.service-detail-card h4 { font-size: 1.25rem; font-weight: 800; margin-bottom: 12px; }
.service-detail-card p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.7; margin-bottom: 16px; }
.service-features { list-style: none; padding: 0; margin: 0 0 20px; }
.service-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--dark);
  margin-bottom: 8px;
  font-weight: 500;
}
.service-features li i { color: var(--primary); flex-shrink: 0; }

.faq-item {
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 12px;
}
.faq-question {
  padding: 18px 22px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  transition: background 0.2s;
  color: var(--dark);
}
.faq-question:hover { background: var(--light); }
.faq-question.open { background: var(--primary); color: #fff; }
.faq-answer {
  padding: 0 22px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.35s ease;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  background: #fafafa;
}
.faq-answer.open {
  max-height: 200px;
  padding: 18px 22px;
}

/* =========================================
   BLOG PAGE
========================================= */
.blog-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: all 0.3s;
  height: 100%;
}
.blog-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-lg); }
.blog-card:hover .blog-card-img { transform: scale(1.04); }

.blog-card-img-wrap {
  height: 210px;
  overflow: hidden;
}
.blog-card-img {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  transition: transform 0.4s ease;
}
.bi-1 { background: linear-gradient(135deg, #1a0828, #4a1f6e); }
.bi-2 { background: linear-gradient(135deg, #0a2218, #1a6040); }
.bi-3 { background: linear-gradient(135deg, #1a1008, #5a3a10); }
.bi-4 { background: linear-gradient(135deg, #08101a, #1a3a5f); }
.bi-5 { background: linear-gradient(135deg, #1a0a08, #5a1a14); }
.bi-6 { background: linear-gradient(135deg, #0a1a08, #2a5010); }

.blog-card-body { padding: 26px; }
.blog-cat {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  margin-bottom: 12px;
}
.blog-card-body h4 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.4;
  color: var(--dark);
}
.blog-card-body h4 a { text-decoration: none; color: inherit; transition: color 0.3s; }
.blog-card-body h4 a:hover { color: var(--primary); }
.blog-card-body p { color: var(--text-muted); font-size: 0.87rem; line-height: 1.65; margin-bottom: 16px; }
.blog-meta { display: flex; gap: 16px; font-size: 0.78rem; color: var(--text-muted); flex-wrap: wrap; }
.blog-meta i { color: var(--primary); margin-right: 4px; }

.sidebar-widget {
  background: #fff;
  border-radius: 16px;
  padding: 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  margin-bottom: 28px;
}
.sidebar-widget h5 {
  font-weight: 700;
  font-size: 1rem;
  color: var(--dark);
  padding-bottom: 12px;
  border-bottom: 2px solid var(--primary);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.sidebar-widget h5 i { color: var(--primary); }

.sidebar-search { position: relative; }
.sidebar-search input { padding-right: 48px; }
.sidebar-search button {
  position: absolute;
  right: 0; top: 0; bottom: 0;
  background: var(--primary);
  border: none;
  padding: 0 14px;
  color: #fff;
  border-radius: 0 10px 10px 0;
  cursor: pointer;
  transition: background 0.3s;
}
.sidebar-search button:hover { background: var(--primary-dark); }

.cat-list { list-style: none; padding: 0; margin: 0; }
.cat-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.88rem;
}
.cat-list li:last-child { border-bottom: none; }
.cat-list a { color: var(--dark); text-decoration: none; transition: color 0.3s; }
.cat-list a:hover { color: var(--primary); }
.cat-count {
  background: var(--primary-light);
  color: var(--primary);
  padding: 2px 10px;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 700;
}

.recent-post {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}
.recent-post:last-child { border-bottom: none; }
.recent-post-icon {
  width: 48px; height: 48px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}
.recent-post p { font-size: 0.85rem; font-weight: 600; color: var(--dark); margin: 0 0 4px; }
.recent-post span { font-size: 0.78rem; color: var(--text-muted); }

/* =========================================
   CONTACT PAGE
========================================= */
.contact-info-card {
  background: #fff;
  border-radius: 16px;
  padding: 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  display: flex;
  gap: 20px;
  align-items: flex-start;
  height: 100%;
  transition: all 0.3s;
}
.contact-info-card:hover { box-shadow: var(--shadow-md); border-color: rgba(229,29,34,0.15); }
.ci-icon {
  width: 56px; height: 56px;
  background: var(--primary);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.4rem;
  flex-shrink: 0;
  box-shadow: 0 6px 18px rgba(229,29,34,0.3);
}
.ci-content h5 { font-size: 0.95rem; font-weight: 700; margin-bottom: 5px; color: var(--dark); }
.ci-content p { color: var(--text-muted); font-size: 0.88rem; margin: 0; line-height: 1.55; }
.ci-content a { color: var(--dark); text-decoration: none; }
.ci-content a:hover { color: var(--primary); }

.map-placeholder {
  background: var(--light);
  border-radius: 20px;
  height: 360px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--text-muted);
  border: 2px dashed var(--border);
}
.map-placeholder i { font-size: 3.5rem; color: var(--primary); opacity: 0.5; }
.map-placeholder p { font-size: 0.9rem; margin: 0; }

/* =========================================
   UTILITIES & MISC
========================================= */
.bg-red { background: var(--primary); }
.text-red { color: var(--primary) !important; }
.border-red { border-color: var(--primary) !important; }

.btn-primary-red {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: #fff;
  padding: 13px 28px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  font-family: 'Poppins', sans-serif;
}
.btn-primary-red:hover {
  background: var(--primary-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(229,29,34,0.4);
}
.btn-outline-red {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--primary);
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  border: 2px solid var(--primary);
  cursor: pointer;
  transition: all 0.3s;
  font-family: 'Poppins', sans-serif;
}
.btn-outline-red:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-2px);
}

/* Back to top */
#backToTop {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 46px; height: 46px;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 1.1rem;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(229,29,34,0.45);
  z-index: 999;
  transition: all 0.3s;
}
#backToTop:hover { transform: translateY(-4px); box-shadow: 0 10px 28px rgba(229,29,34,0.5); }

/* WhatsApp Float */
.wa-float {
  position: fixed;
  bottom: 82px; right: 28px;
  width: 50px; height: 50px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(37,211,102,0.45);
  z-index: 999;
  transition: all 0.3s;
  animation: wa-pulse 2.5s ease-in-out infinite;
}
.wa-float:hover { transform: scale(1.1); color: #fff; box-shadow: 0 10px 28px rgba(37,211,102,0.55); }
@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 6px 20px rgba(37,211,102,0.45); }
  50% { box-shadow: 0 6px 30px rgba(37,211,102,0.7), 0 0 0 8px rgba(37,211,102,0.1); }
}

/* AOS fallback */
[data-aos] { opacity: 0; transform: translateY(25px); transition: opacity 0.6s ease, transform 0.6s ease; }
[data-aos].aos-animate { opacity: 1; transform: translateY(0); }

/* =========================================
   RESPONSIVE
========================================= */
@media (max-width: 991.98px) {
  .navbar-collapse { padding: 16px 0; }
  .navbar-nav .nav-link::after { display: none; }
  .btn-nav-cta { margin-top: 8px; display: block; text-align: center; }
  .hero-visual { display: none; }
  .hero-section { min-height: auto; padding: 130px 0 70px; }
  .why-visual { height: 320px; }
  .form-card { padding: 30px 24px; }
  .service-detail-card { padding: 28px 22px; }
  .nav-info-bar { font-size: 0.76rem; text-align: center; }
}

@media (max-width: 767.98px) {
  .section-pad { padding: 65px 0; }
  .stat-item + .stat-item::before { display: none; }
  .stat-item { border-bottom: 1px solid rgba(255,255,255,0.06); }
  .stat-item:last-child { border-bottom: none; }
  .process-connector { display: none; }
  .hero-section h1 { font-size: 2rem; }
  .cta-section { padding: 65px 0; }
  .footer-about p { max-width: 100%; }
  .why-visual { display: none; }
  .about-img-wrap { height: 300px; }
  .hero-float-1, .hero-float-2, .hero-float-3 { display: none; }
  .top-ribbon { font-size: 0.78rem; }
}

@media (max-width: 575.98px) {
  .hero-cta { flex-direction: column; align-items: flex-start; }
  .btn-hero-primary, .btn-hero-outline { width: 100%; justify-content: center; }
  .form-card { padding: 24px 18px; }
  .page-header { padding: 140px 0 55px; min-height: 230px; }
}

/* =========================================
   HERO SWIPER SLIDER
========================================= */
/* ── Hero Video Section ── */
.hero-video-section {
  position: relative;
  height: 100vh;
  min-height: 580px;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hero-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  z-index: 0;
  pointer-events: none;
}
.hero-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,10,8,0.90) 0%, rgba(22,22,20,0.75) 55%, rgba(38,8,9,0.65) 100%);
  z-index: 1;
}
.hero-video-section .hero-pattern { z-index: 1; }
.hero-video-section .container { position: relative; z-index: 2; }
.hero-video-section .hero-content { padding: 140px 0 80px; }

/* =========================================
   DESKTOP SERVICES DROPDOWN
========================================= */
.nav-dropdown-wrap {
  position: relative;
}
.nav-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 12px;
  padding: 10px;
  min-width: 240px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.14);
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(6px);
  transition: all 0.22s ease;
  z-index: 1100;
}
.nav-dropdown.open {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 14px;
  color: var(--dark);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  border-radius: 8px;
  transition: all 0.2s;
}
.nav-dropdown a i { color: var(--primary); font-size: 0.85rem; }
.nav-dropdown a:hover {
  background: var(--primary-light);
  color: var(--primary);
}

/* =========================================
   MOBILE HAMBURGER
========================================= */
.mobile-hamburger {
  background: transparent;
  border: 1.5px solid rgba(0,0,0,0.18);
  border-radius: 8px;
  padding: 8px 10px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 44px;
}
.mobile-hamburger span {
  display: block;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: all 0.3s;
}

/* =========================================
   MOBILE OFFCANVAS
========================================= */
.mobile-offcanvas {
  background: var(--dark-3) !important;
  width: 300px !important;
  border-left: 1px solid rgba(255,255,255,0.06) !important;
}
.mobile-offcanvas .offcanvas-header {
  padding: 20px 22px 14px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.offcanvas-close-btn {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  color: rgba(255,255,255,0.7);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1rem;
  transition: all 0.2s;
}
.offcanvas-close-btn:hover { background: var(--primary); color: #fff; border-color: var(--primary); }

.mobile-offcanvas .offcanvas-body { padding: 16px 0; }

.mobile-nav { display: flex; flex-direction: column; }

.mobile-nav-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 22px;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
  border-left: 3px solid transparent;
  transition: all 0.2s;
}
.mobile-nav-link:hover,
.mobile-nav-link.active {
  color: #fff;
  background: rgba(229,29,34,0.08);
  border-left-color: var(--primary);
}
.mobile-nav-link i { color: var(--primary); font-size: 0.95rem; }

/* Services accordion toggle */
.mobile-nav-group { display: flex; flex-direction: column; }
.mobile-nav-toggle {
  justify-content: space-between;
  cursor: pointer;
  user-select: none;
}
.mobile-nav-toggle > span { display: flex; align-items: center; gap: 12px; }
.mobile-toggle-icon {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  transition: transform 0.3s ease;
}

.mobile-sub-nav {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  background: rgba(0,0,0,0.2);
}
.mobile-sub-nav.open { max-height: 600px; }

.mobile-sub-link {
  display: block;
  padding: 10px 22px 10px 48px;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 0.85rem;
  border-left: 3px solid transparent;
  transition: all 0.2s;
}
.mobile-sub-link:hover { color: var(--primary); background: rgba(229,29,34,0.06); border-left-color: var(--primary); }

/* Mobile contact info */
.mobile-contact-info {
  padding: 20px 22px;
  border-top: 1px solid rgba(255,255,255,0.06);
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.mobile-phone-link {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.05rem;
  font-family: 'Poppins', sans-serif;
}
.mobile-phone-link i { color: var(--primary); }
.mobile-phone-link:hover { color: var(--primary); }

.mobile-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--primary);
  color: #fff;
  padding: 13px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.92rem;
  transition: all 0.3s;
}
.mobile-cta-btn:hover { background: var(--primary-dark); color: #fff; }

/* Mobile social icons */
.mobile-socials {
  display: flex;
  gap: 12px;
  padding: 16px 22px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.mobile-socials a {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s;
}
.mobile-socials a:hover { background: var(--primary); border-color: var(--primary); color: #fff; }

/* =========================================
   STICKY MOBILE CTA BAR
========================================= */
.mobile-cta-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1050;
  display: flex;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
}
.cta-bar-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 10px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  font-family: 'Poppins', sans-serif;
  transition: all 0.2s;
}
.cta-bar-call {
  background: var(--dark);
  color: #fff;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.cta-bar-call:hover { background: #222; color: #fff; }
.cta-bar-quote {
  background: var(--primary);
  color: #fff;
}
.cta-bar-quote:hover { background: var(--primary-dark); color: #fff; }
.cta-bar-btn i { font-size: 1rem; }

/* =========================================
   SERVICE CARD — EMOJI + TITLE VARIANTS
========================================= */
.service-emoji {
  position: relative;
  z-index: 2;
  font-size: 4rem;
  line-height: 1;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.4));
}
.service-card-title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--dark);
}
.service-card-title a { color: inherit; text-decoration: none; }
.service-card-title a:hover { color: var(--primary); }

/* =========================================
   SERVICE DETAIL PAGE
========================================= */
.service-hero-img {
  height: 380px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.service-hero-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(0,0,0,0.5));
}

.service-hero-gradient {
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.service-hero-gradient::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 30px 30px;
}
.service-hero-emoji {
  font-size: 7rem;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 0 30px rgba(229,29,34,0.4));
  animation: float 3s ease-in-out infinite;
}

/* Service prose content */
.service-content h2 { font-size: 1.6rem; font-weight: 800; margin-bottom: 14px; color: var(--dark); }
.service-content h3 { font-size: 1.25rem; font-weight: 700; margin: 28px 0 12px; color: var(--dark); }
.service-content p { color: #555; line-height: 1.8; margin-bottom: 16px; }
.service-content ul { padding-left: 20px; margin-bottom: 16px; }
.service-content ul li { color: #555; line-height: 1.75; margin-bottom: 8px; }
.service-content strong { color: var(--dark); }

/* Benefits grid */
.service-benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.benefit-card {
  background: var(--light);
  border-radius: 14px;
  padding: 22px 20px;
  border: 1px solid var(--border);
  transition: all 0.3s;
}
.benefit-card:hover { border-color: rgba(229,29,34,0.2); box-shadow: var(--shadow-sm); }
.benefit-icon {
  width: 46px;
  height: 46px;
  background: var(--primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.15rem;
  margin-bottom: 12px;
}
.benefit-card h5 { font-size: 0.95rem; font-weight: 700; margin-bottom: 6px; color: var(--dark); }
.benefit-card p { font-size: 0.84rem; color: var(--text-muted); margin: 0; line-height: 1.6; }

/* Sidebar quote form */
.sidebar-quote-form {
  background: #fff;
  border-radius: 18px;
  position: static;
  padding: 28px 24px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}
.sqf-header {
  text-align: center;
  margin-bottom: 22px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border);
}
.sqf-header i {
  display: block;
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 8px;
}
.sqf-header h4 { font-size: 1.15rem; font-weight: 800; margin-bottom: 4px; color: var(--dark); }
.sqf-header p { color: var(--text-muted); font-size: 0.82rem; margin: 0; }

/* Sidebar emergency call */
.sidebar-emergency {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--dark-2);
  border-radius: 14px;
  padding: 18px 20px;
  color: #fff;
}
.sidebar-emergency i {
  font-size: 1.6rem;
  color: var(--primary);
  animation: ring 2s ease-in-out infinite;
}
.sidebar-emergency small { color: rgba(255,255,255,0.55); font-size: 0.78rem; display: block; margin-bottom: 2px; }
.sidebar-emergency a {
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  text-decoration: none;
}
.sidebar-emergency a:hover { color: var(--primary); }

/* Sidebar other services */
.sidebar-services {
  background: var(--light);
  border-radius: 14px;
  padding: 22px 20px;
  border: 1px solid var(--border);
}
.sidebar-services h5 { font-size: 0.95rem; font-weight: 700; margin-bottom: 14px; padding-bottom: 10px; border-bottom: 2px solid var(--primary); display: inline-block; }
.sidebar-services ul { list-style: none; padding: 0; margin: 0; }
.sidebar-services ul li { border-bottom: 1px solid var(--border); }
.sidebar-services ul li:last-child { border-bottom: none; }
.sidebar-services ul li a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 0;
  color: var(--dark);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  transition: all 0.2s;
}
.sidebar-services ul li a:hover { color: var(--primary); padding-left: 4px; }
.sidebar-services ul li a span { font-size: 1.1rem; margin-right: 8px; }
.sidebar-services ul li a i { color: var(--primary); font-size: 0.75rem; }

/* =========================================
   SERVICE AREAS PAGE
========================================= */
.area-stat-card {
  text-align: center;
  background: var(--light);
  border-radius: 14px;
  padding: 20px 14px;
  border: 1px solid var(--border);
}
.area-stat-card .num {
  font-family: 'Poppins', sans-serif;
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--primary);
  display: block;
  line-height: 1;
}
.area-stat-card .lbl { color: var(--text-muted); font-size: 0.8rem; font-weight: 600; margin-top: 4px; text-transform: uppercase; letter-spacing: 0.5px; }

.area-card {
  background: #fff;
  border-radius: 14px;
  padding: 20px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.area-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(229,29,34,0.2);
}
.area-card-icon {
  width: 44px;
  height: 44px;
  background: var(--primary-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.2rem;
  margin-bottom: 12px;
  transition: all 0.3s;
}
.area-card:hover .area-card-icon { background: var(--primary); color: #fff; }
.area-card-body { flex: 1; }
.area-card-body h5,
.area-card-name { font-size: 0.95rem; font-weight: 700; margin-bottom: 6px; color: var(--dark); }
.area-card-name a { color: inherit; text-decoration: none; }
.area-card-name a:hover { color: var(--primary); }
.area-card-body p { font-size: 0.82rem; color: var(--text-muted); margin: 0; line-height: 1.5; }
.area-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--primary);
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  margin-top: 14px;
  transition: gap 0.2s;
}
.area-card-link:hover { color: var(--primary-dark); gap: 10px; }

.area-not-listed {
  background: var(--light);
  border: 1px dashed rgba(229,29,34,0.3);
  border-radius: 16px;
  padding: 28px 32px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.area-not-listed > i {
  font-size: 2.5rem;
  color: var(--primary);
  opacity: 0.7;
  flex-shrink: 0;
}
.area-not-listed > div { flex: 1; min-width: 200px; }
.area-not-listed h5 { font-size: 1rem; font-weight: 700; margin-bottom: 4px; color: var(--dark); }
.area-not-listed p { font-size: 0.88rem; color: var(--text-muted); margin: 0; }

.area-service-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #fff;
  border: 1.5px solid var(--border);
  color: var(--dark);
  padding: 9px 18px;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.25s;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}
.area-service-pill i { color: var(--primary); font-size: 0.85rem; }
.area-service-pill:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(229,29,34,0.25);
}
.area-service-pill:hover i { color: #fff; }

/* =========================================
   BLOG DETAIL — CONTENT & SOCIAL SHARE
========================================= */
.blog-content h2 { font-size: 1.55rem; font-weight: 800; margin: 32px 0 14px; color: var(--dark); }
.blog-content h3 { font-size: 1.2rem; font-weight: 700; margin: 26px 0 12px; color: var(--dark); }
.blog-content p { color: #444; line-height: 1.85; margin-bottom: 18px; font-size: 0.98rem; }
.blog-content ul, .blog-content ol { padding-left: 22px; margin-bottom: 18px; }
.blog-content li { color: #444; line-height: 1.75; margin-bottom: 8px; }
.blog-content img { border-radius: 12px; margin: 10px 0; max-width: 100%; height: auto; }
.blog-content blockquote {
  border-left: 4px solid var(--primary);
  background: var(--light);
  padding: 18px 22px;
  border-radius: 0 12px 12px 0;
  margin: 22px 0;
  font-style: italic;
  color: #555;
}
.blog-content strong { color: var(--dark); }
.blog-content a { color: var(--primary); text-decoration: underline; }
.blog-content a:hover { color: var(--primary-dark); }

.social-share-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--color, #555);
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
  margin: 0 4px;
  transition: all 0.3s;
  opacity: 0.85;
}
.social-share-btn:hover { opacity: 1; transform: translateY(-2px); color: #fff; box-shadow: 0 6px 16px rgba(0,0,0,0.2); }

/* =========================================
   RESPONSIVE — ADDITIONS
========================================= */
@media (max-width: 991.98px) {
  .hero-video-section { height: 85vh; min-height: 500px; }
  .hero-video-section .hero-content { padding: 120px 0 60px; }
  .service-benefits-grid { grid-template-columns: 1fr 1fr; }
  .service-hero-img { height: 260px; }
  .service-hero-gradient { height: 200px; }
  .area-not-listed { text-align: center; flex-direction: column; align-items: center; }
}

@media (max-width: 767.98px) {
  .hero-video-section { height: 100svh; min-height: 520px; }
  .hero-video-section .hero-content { padding: 110px 0 60px; }
  .service-benefits-grid { grid-template-columns: 1fr; }
  .mobile-cta-bar { padding-bottom: env(safe-area-inset-bottom, 0); }
  .wa-float { bottom: 76px; }
  #backToTop { bottom: 76px; right: 18px; }
}

@media (max-width: 575.98px) {
  .area-not-listed { padding: 22px 18px; }
  .sidebar-quote-form { padding: 22px 18px; }
  .service-hero-emoji { font-size: 5rem; }
}

/* =========================================
   WHY CHOOSE US — CARD GRID
========================================= */
.why-choose-section { background: var(--light); }

.why-card {
  background: #fff;
  border-radius: 16px;
  padding: 28px 24px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  height: 100%;
  transition: all 0.35s ease;
  border-bottom: 4px solid transparent;
}
.why-card:hover {
  border-bottom-color: var(--primary);
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.why-card-highlight {
  background: linear-gradient(135deg, var(--dark) 0%, #2a0a0b 100%);
  border-color: var(--primary);
  border-bottom-color: var(--primary);
}
.why-card-highlight:hover { transform: translateY(-8px); box-shadow: 0 20px 50px rgba(229,29,34,0.35); }
.why-card-highlight h5 { color: #fff; }
.why-card-highlight p { color: rgba(255,255,255,0.72); }

.why-card-icon {
  width: 56px;
  height: 56px;
  background: var(--primary-light);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 18px;
  transition: all 0.3s;
}
.why-card:not(.why-card-highlight):hover .why-card-icon { background: var(--primary); color: #fff; }
.why-icon-highlight { background: rgba(229,29,34,0.25); color: var(--primary); }
.why-card-highlight:hover .why-icon-highlight { background: var(--primary); color: #fff; }

.why-card h5 { font-size: 1rem; font-weight: 700; margin-bottom: 10px; color: var(--dark); }
.why-card p { font-size: 0.87rem; color: var(--text-muted); line-height: 1.65; margin: 0; }

/* Same Day highlight banner */
.same-day-highlight {
  display: flex;
  align-items: center;
  gap: 20px;
  background: linear-gradient(135deg, var(--primary) 0%, #c0151a 100%);
  border-radius: 16px;
  padding: 22px 28px;
  margin-bottom: 8px;
  flex-wrap: wrap;
  box-shadow: 0 8px 30px rgba(229,29,34,0.3);
}
.sdh-icon {
  width: 52px; height: 52px;
  background: rgba(255,255,255,0.18);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: #fff;
  flex-shrink: 0;
}
.sdh-text { flex: 1; min-width: 200px; }
.sdh-text strong { display: block; color: #fff; font-size: 1.05rem; font-weight: 800; margin-bottom: 4px; }
.sdh-text span { color: rgba(255,255,255,0.82); font-size: 0.87rem; }
.sdh-btn {
  background: #fff !important;
  color: var(--primary) !important;
  flex-shrink: 0;
}
.sdh-btn:hover {
  background: var(--dark) !important;
  color: #fff !important;
  box-shadow: 0 6px 20px rgba(0,0,0,0.25) !important;
}

/* =========================================
   GOOGLE REVIEWS SECTION
========================================= */
.reviews-section { background: #fff; overflow: hidden; }

.google-reviews-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 44px;
  padding: 22px 28px;
  background: var(--light);
  border-radius: 14px;
  border: 1px solid var(--border);
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}
.gr-logo { height: 34px; width: auto; object-fit: contain; }
.gr-meta strong { display: block; font-size: 1rem; font-weight: 800; color: var(--dark); margin-bottom: 4px; }
.gr-stars { color: #ffc107; font-size: 1.15rem; letter-spacing: 2px; display: block; margin-bottom: 2px; }
.gr-meta span { font-size: 0.79rem; color: var(--text-muted); }

.reviewSwiper { padding-bottom: 44px !important; overflow: visible; }

.review-card {
  background: #fff;
  border-radius: 18px;
  padding: 26px 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: all 0.3s;
}
.review-card:hover { box-shadow: var(--shadow-md); border-color: rgba(229,29,34,0.15); transform: translateY(-4px); }

.review-header { display: flex; align-items: center; gap: 12px; }
.review-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.review-avatar.av-blue   { background: #1a73e8; }
.review-avatar.av-green  { background: #34a853; }
.review-avatar.av-purple { background: #7b2fbe; }
.review-avatar.av-orange { background: #f97316; }

.review-author { flex: 1; min-width: 0; }
.review-author strong { display: block; font-size: 0.9rem; font-weight: 700; color: var(--dark); }
.review-author span { font-size: 0.76rem; color: var(--text-muted); }

.review-stars { color: #ffc107; font-size: 0.88rem; flex-shrink: 0; }
.review-text { color: #555; font-size: 0.87rem; line-height: 1.72; font-style: italic; flex: 1; margin: 0; }
.review-badge { display: inline-flex; align-items: center; gap: 6px; font-size: 0.74rem; color: var(--text-muted); }
.review-badge i { color: #1a73e8; }

.reviewSwiper .swiper-pagination-bullet { width: 9px; height: 9px; background: rgba(0,0,0,0.18); opacity: 1; }
.reviewSwiper .swiper-pagination-bullet-active { background: var(--primary); width: 24px; border-radius: 4px; }

/* =========================================
   STATS ROW — ONE ROW ON MOBILE
========================================= */
.stats-row-nowrap .stat-item { border-bottom: none !important; }
.stats-row-nowrap .stat-item + .stat-item::before { display: block !important; }

@media (max-width: 575.98px) {
  .stats-row-nowrap .stat-number { font-size: 1.1rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .stats-row-nowrap .stat-icon { font-size: 1rem; margin-bottom: 2px; }
  .stats-row-nowrap .stat-label { font-size: 0.6rem; letter-spacing: 0; }
  .stats-row-nowrap .stat-item { padding: 12px 4px; }
}
@media (max-width: 374px) {
  .stats-row-nowrap .stat-number { font-size: 0.95rem; }
  .stats-row-nowrap .stat-label { font-size: 0.55rem; }
  .stats-row-nowrap .stat-item { padding: 10px 3px; }
}

/* =========================================
   MOBILE HERO CTA — KEEP IN ONE ROW
========================================= */
@media (max-width: 575.98px) {
  .hero-cta {
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    gap: 8px;
    align-items: stretch;
  }
  .hero-cta .btn-hero-primary,
  .hero-cta .btn-hero-outline {
    width: auto;
    flex: 1;
    padding: 11px 10px;
    font-size: 0.8rem;
    gap: 5px;
    justify-content: center;
  }
}

/* =========================================
   BACK-TO-TOP / WHATSAPP — NO OVERLAP
========================================= */
@media (max-width: 767.98px) {
  .wa-float  { bottom: 78px !important; right: 18px !important; }
  #backToTop { bottom: 132px !important; right: 18px !important; }
}

/* =========================================
   PAGE HEADER WITH BACKGROUND IMAGE
========================================= */
.page-header-with-img {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.page-header-with-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13,13,11,0.86) 0%, rgba(42,10,11,0.72) 100%);
  z-index: 1;
}
.page-header p {
  position: relative;
  z-index: 2;
  color: rgba(255,255,255,0.75);
}

/* Mobile CTA bar safe-area and hero content mobile margins */
@media (max-width: 767.98px) {
  .hero-video-section .hero-content { padding-left: 4px; padding-right: 4px; }
}

/* =========================================
   AREA PILL — LIGHT BACKGROUND VARIANT
========================================= */
.bg-light-section .area-pill {
  background: rgba(229,29,34,0.07);
  border-color: rgba(229,29,34,0.25);
  color: var(--dark);
}
.bg-light-section .area-pill i { color: var(--primary); }
.bg-light-section .area-pill:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}
.bg-light-section .area-pill:hover i { color: #fff; }

/* =========================================
   BLOG SIDEBAR — SERVICES LIST FIX
========================================= */
.sidebar-widget .footer-links a {
  color: var(--dark);
}
.sidebar-widget .footer-links a:hover {
  color: var(--primary);
  padding-left: 4px;
}
.sidebar-widget .footer-links a i { color: var(--primary); }

/* =========================================
   SERVICE DETAIL — COMPACT SIDEBAR FORM
========================================= */
.sidebar-quote-form.compact {
  padding: 18px 16px;
}
.sidebar-quote-form.compact .sqf-header { margin-bottom: 14px; padding-bottom: 12px; }
.sidebar-quote-form.compact .sqf-header i { font-size: 1.4rem; margin-bottom: 4px; }
.sidebar-quote-form.compact .sqf-header h4 { font-size: 1rem; }
.sidebar-quote-form.compact .mb-3 { margin-bottom: 0.5rem !important; }
.sidebar-quote-form.compact .form-control,
.sidebar-quote-form.compact .form-select {
  padding: 8px 12px;
  font-size: 0.83rem;
}
.sidebar-quote-form.compact .form-label { font-size: 0.78rem; margin-bottom: 3px; }
.sidebar-quote-form.compact textarea.form-control { min-height: 72px; }

/* =========================================
   QUOTE MODAL
========================================= */
#quoteModal .modal-header {
  background: var(--dark);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.modal-side-info {
  background: #f8f7f5;
  border-right: 1px solid #e8e8e4;
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
}
.modal-side-brand { margin-bottom: 18px; }
.modal-side-brand h6 {
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--dark);
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.modal-feature-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 11px;
  font-size: 0.85rem;
}
.mfi-icon {
  width: 26px;
  height: 26px;
  background: var(--primary-light);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.78rem;
  color: var(--primary);
}
.modal-feature-item span { color: var(--dark); line-height: 1.4; padding-top: 4px; }

.modal-side-phone {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid #e8e8e4;
}
.modal-side-phone small { color: var(--text-muted); font-size: 0.75rem; display: block; margin-bottom: 4px; }
.modal-side-phone a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--dark);
  font-size: 1.05rem;
  font-weight: 800;
  text-decoration: none;
  font-family: 'Poppins', sans-serif;
}
.modal-side-phone a i { color: var(--primary); }
.modal-side-phone a:hover { color: var(--primary); }

/* =========================================
   WELCOME POPUP MODAL
========================================= */
.wp-dialog { max-width: 400px; }

.wp-content {
  border-radius: 20px !important;
  position: relative;
}

.wp-close {
  position: absolute;
  top: 12px;
  right: 14px;
  background: rgba(0,0,0,0.08);
  border: none;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  color: #555;
  cursor: pointer;
  z-index: 5;
  transition: all 0.2s;
}
.wp-close:hover { background: var(--primary); color: #fff; }

.wp-header {
  background: linear-gradient(135deg, var(--dark) 0%, #2a0a0b 100%);
  padding: 32px 28px 24px;
  text-align: center;
  position: relative;
}
.wp-badge {
  width: 54px;
  height: 54px;
  background: var(--primary);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #fff;
  margin: 0 auto 14px;
  box-shadow: 0 6px 20px rgba(229,29,34,0.4);
}
.wp-header h4 {
  color: #fff;
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 6px;
  line-height: 1.25;
}
.wp-header h4 span { color: var(--primary); }
.wp-header p { color: rgba(255,255,255,0.65); font-size: 0.82rem; margin: 0; }

.wp-body { padding: 22px 24px 20px; }

.wp-input {
  border-radius: 10px !important;
  font-size: 0.9rem !important;
  padding: 11px 14px !important;
}
.wp-submit {
  width: 100%;
  display: block;
  padding: 13px;
  font-size: 1rem;
  border-radius: 10px;
}

.wp-skip {
  text-align: center;
  margin: 12px 0 0;
  font-size: 0.79rem;
}
.wp-skip a {
  color: var(--text-muted);
  text-decoration: none;
}
.wp-skip a:hover { color: var(--primary); }
