/* ==========================================================================
   AQ BUSINESS POINT - CLEAN, COMPACT & REFINED CORPORATE DESIGN SYSTEM
   Optimized Proportions, Crisp Typography, Pure White & Onyx Slate Palette
   ========================================================================== */

:root {
  /* Brand Colors */
  --primary: #E51D25;
  --primary-hover: #C9141B;
  --primary-soft: rgba(229, 29, 37, 0.06);
  --primary-border: rgba(229, 29, 37, 0.18);

  --dark-bg: #0F141F;
  --dark-surface: #182030;
  --dark-card: #202B40;
  --dark-border: #2C3A56;

  --gray-50: #F8FAFC;
  --gray-100: #F1F5F9;
  --gray-200: #E2E8F0;
  --gray-300: #CBD5E1;
  --gray-400: #94A3B8;
  --gray-500: #64748B;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1E293B;
  --gray-900: #0F172A;

  --gold: #D97706;
  --gold-soft: rgba(217, 119, 6, 0.08);

  --green: #059669;
  --green-soft: rgba(5, 150, 105, 0.08);

  --whatsapp: #25D366;
  --whatsapp-hover: #1EBE5D;

  --white: #FFFFFF;

  /* Typography */
  --font-heading: 'Plus Jakarta Sans', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;

  /* Refined Elevation Shadows */
  --shadow-xs: 0 1px 2px rgba(15, 23, 42, 0.04);
  --shadow-sm: 0 2px 6px rgba(15, 23, 42, 0.05);
  --shadow-md: 0 6px 16px -2px rgba(15, 23, 42, 0.07);
  --shadow-lg: 0 12px 28px -4px rgba(15, 23, 42, 0.1);

  /* Compact Radii */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 14px;
  --radius-xl: 20px;
  --radius-full: 9999px;

  /* Transitions */
  --transition: all 0.2s ease-in-out;
}

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-synthesis: none;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
  font-size: 15px;
  overflow-x: clip;
  max-width: 100%;
  width: 100%;
}

body {
  font-family: var(--font-body);
  background-color: var(--white);
  color: var(--gray-700);
  line-height: 1.6;
  overflow-x: clip;
  max-width: 100%;
  width: 100%;
  position: relative;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-feature-settings: "cv02", "cv03", "cv04", "cv11";
}

h1, h2, h3, h4, h5, h6,
.hero-title, .section-title, .service-title, .page-banner h1, .page-banner .hero-title {
  font-family: var(--font-heading);
  color: var(--gray-900);
  line-height: 1.25;
  letter-spacing: -0.02em;
  font-synthesis: none;
}

h1, .hero-title, .page-banner h1, .page-banner .hero-title {
  font-weight: 800;
}

h2, .section-title {
  font-weight: 700;
}

h3, .service-title {
  font-weight: 700;
}

h4, h5, h6 {
  font-weight: 600;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1180px;
  margin-inline: auto;
  padding-inline: 1.25rem;
}

@media (max-width: 640px) {
  .container {
    padding-inline: 1rem;
  }
}

/* ==========================================================================
   BUTTONS (Refined Proportions)
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.65rem 1.35rem;
  font-size: 0.88rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  border: 1px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(229, 29, 37, 0.28);
}

.btn-primary:hover {
  background: var(--primary-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(229, 29, 37, 0.38);
}

.btn-dark {
  background: var(--gray-900);
  color: var(--white);
}

.btn-dark:hover {
  background: #1e2538;
}

.btn-outline-dark {
  background: var(--white);
  border: 1px solid var(--gray-300);
  color: var(--gray-800);
}

.btn-outline-dark:hover {
  border-color: var(--gray-900);
  color: var(--gray-900);
  background: var(--gray-50);
}

.btn-outline-light {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
}

.btn-outline-light:hover {
  background: var(--white);
  color: var(--gray-900);
}

.btn-whatsapp {
  background: var(--whatsapp);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.28);
}

.btn-whatsapp:hover {
  background: var(--whatsapp-hover);
  transform: translateY(-1px);
}

/* ==========================================================================
   TOP BAR & NAVBAR
   ========================================================================== */
.top-bar {
  background: var(--dark-bg);
  color: var(--gray-300);
  font-size: 0.8rem;
  padding: 0.45rem 0;
  border-bottom: 1px solid var(--dark-border);
}

.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.top-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 500;
  color: #4ADE80;
  background: rgba(34, 197, 94, 0.1);
  padding: 0.15rem 0.6rem;
  border-radius: var(--radius-full);
}

.live-dot {
  width: 7px;
  height: 7px;
  background: #22C55E;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.6);
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.6); }
  70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(34, 197, 94, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

.top-contacts {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.top-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--gray-300);
  font-weight: 500;
}

.top-contact-link:hover {
  color: var(--white);
}

.site-header {
  position: sticky !important;
  top: 0 !important;
  left: 0;
  width: 100%;
  z-index: 1000 !important;
  background: rgba(255, 255, 255, 0.98) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-200);
  box-shadow: 0 2px 12px rgba(15, 23, 42, 0.05);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 76px;
  height: 76px;
  padding: 0;
  gap: 1.5rem;
  position: relative;
}

.brand-logo-link {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  flex-shrink: 0;
}

.brand-logo-img {
  height: 48px;
  width: auto;
  max-width: 170px;
  object-fit: contain;
  border-radius: 6px;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-family: var(--font-heading, 'Plus Jakarta Sans', sans-serif);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--dark-bg, #0B0F19);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.brand-tagline {
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--gray-500, #64748b);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  height: 100%;
}

.nav-link {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--gray-700);
  padding: 0.5rem 0.25rem;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  white-space: nowrap;
  letter-spacing: -0.01em;
  text-decoration: none;
  transition: color 0.2s ease;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2.5px;
  background: var(--primary);
  border-radius: var(--radius-full);
  transition: width 0.2s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary);
}

.nav-link.nav-highlight {
  color: var(--primary);
  background: var(--primary-soft);
  padding: 0.4rem 0.95rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--primary-border);
  font-weight: 700;
}

.nav-link.nav-highlight::after {
  display: none;
}

.nav-link.nav-highlight:hover {
  background: var(--primary);
  color: var(--white);
}

/* ==========================================================================
   DROPDOWN NAVIGATION MENU (DESKTOP HOVER & CLICK TOGGLE)
   ========================================================================== */
.nav-item-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
  height: 100%;
}

/* Invisible hover bridge to prevent premature closing when moving mouse */
.nav-item-dropdown::after {
  content: '';
  position: absolute;
  top: 100%;
  left: -20px;
  right: -20px;
  height: 20px;
  background: transparent;
}

.dropdown-arrow {
  font-size: 0.72rem;
  margin-left: 2px;
  transition: transform 0.22s ease;
}

.nav-item-dropdown:hover .dropdown-arrow,
.nav-item-dropdown.open .dropdown-arrow {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% - 8px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  width: 360px;
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 20px 45px -10px rgba(15, 23, 42, 0.22), 0 0 0 1px rgba(15, 23, 42, 0.08);
  border: 1px solid rgba(226, 232, 240, 0.95);
  padding: 0.65rem 0.6rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s cubic-bezier(0.16, 1, 0.3, 1), transform 0.2s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.2s;
  z-index: 1100;
  display: flex !important;
  flex-direction: column;
  gap: 0.25rem;
}

.nav-item-dropdown:hover .dropdown-menu,
.nav-item-dropdown.open .dropdown-menu,
.nav-item-dropdown:focus-within .dropdown-menu {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
  transform: translateX(-50%) translateY(0) !important;
}

.dropdown-item {
  display: flex !important;
  align-items: center !important;
  gap: 0.85rem !important;
  padding: 0.55rem 0.75rem !important;
  border-radius: 8px !important;
  color: var(--gray-800) !important;
  text-decoration: none !important;
  transition: background 0.18s ease, transform 0.18s ease, color 0.18s ease !important;
  background: transparent;
}

.dropdown-item:hover {
  background: #f8fafc !important;
  transform: translateX(3px);
}

.dropdown-item:hover .dropdown-item-title {
  color: var(--primary) !important;
}

.dropdown-item-icon {
  width: 38px !important;
  height: 38px !important;
  min-width: 38px !important;
  max-width: 38px !important;
  border-radius: 8px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 1rem !important;
  flex-shrink: 0 !important;
}

.dropdown-item-title {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--gray-900);
  line-height: 1.25;
  margin-bottom: 0.1rem;
}

.dropdown-item-sub {
  font-size: 0.74rem;
  color: var(--gray-500);
  line-height: 1.3;
}

.dropdown-footer-link {
  border-top: 1px solid var(--gray-100);
  margin-top: 0.35rem;
  padding: 0.6rem 0.5rem 0.25rem;
  text-align: center;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  text-decoration: none;
  transition: all 0.2s ease;
}

.dropdown-footer-link:hover {
  color: #b91c1c;
  transform: translateX(2px);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.header-actions .btn {
  padding: 0.6rem 1.35rem;
  font-size: 0.88rem;
}

.mobile-header-actions {
  display: none;
  align-items: center;
  gap: 0.5rem;
}

.mobile-quick-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1rem;
  transition: all 0.2s ease;
}

.mobile-quick-btn.wa-btn {
  background: rgba(37, 211, 102, 0.12);
  color: #128C7E;
  border: 1px solid rgba(37, 211, 102, 0.3);
}

.mobile-quick-btn.call-btn {
  background: var(--gray-100);
  color: var(--gray-800);
  border: 1px solid var(--gray-200);
}

.mobile-menu-btn {
  display: none;
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  width: 40px;
  height: 40px;
  font-size: 1.2rem;
  color: var(--gray-900);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.mobile-menu-btn:hover {
  background: var(--gray-200);
}

/* ==========================================================================
   MOBILE OFF-CANVAS SLIDE DRAWER
   ========================================================================== */
.mobile-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 2050;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-drawer-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 320px;
  max-width: 86vw;
  height: 100vh;
  height: 100dvh;
  background: #ffffff;
  z-index: 2100;
  transform: translateX(-100%);
  transition: transform 0.32s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  box-shadow: 10px 0 30px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}

.mobile-drawer.open {
  transform: translateX(0);
}

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--gray-200);
  background: #ffffff;
}

.drawer-close-btn {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  border: 1px solid var(--gray-200);
  background: var(--gray-50);
  color: var(--gray-700);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.drawer-close-btn:hover {
  background: var(--gray-200);
  color: var(--gray-900);
}

.drawer-body {
  padding: 0.75rem 0.85rem;
  overflow-y: auto;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.drawer-status-card {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  font-weight: 600;
  color: #059669;
  background: rgba(5, 150, 105, 0.08);
  border: 1px solid rgba(5, 150, 105, 0.2);
  padding: 0.4rem 0.65rem;
  border-radius: 6px;
  margin-bottom: 0.25rem;
}

.drawer-nav-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.55rem 0.75rem;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gray-800);
  text-decoration: none;
  transition: all 0.18s ease;
}

.drawer-nav-item:hover,
.drawer-nav-item.active {
  background: #f1f5f9;
  color: var(--primary);
}

.drawer-nav-item.highlight {
  background: rgba(229, 29, 37, 0.08);
  color: var(--primary);
  border: 1px solid rgba(229, 29, 37, 0.2);
  font-weight: 700;
}

/* Collapsible Services Dropdown in Mobile Drawer */
.drawer-services-group {
  display: flex;
  flex-direction: column;
  margin: 0.15rem 0;
}

.drawer-nav-services {
  width: 100%;
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  background: #f8fafc !important;
  border: 1px solid var(--gray-200) !important;
  font-weight: 700 !important;
  color: var(--gray-900) !important;
  border-radius: 8px;
  padding: 0.55rem 0.75rem !important;
  cursor: pointer;
  text-align: left;
}

.drawer-nav-services * {
  pointer-events: none;
}

.drawer-nav-services:hover {
  background: #f1f5f9 !important;
  color: var(--primary) !important;
}

.drawer-dropdown-arrow {
  font-size: 0.75rem;
  color: var(--gray-500);
  transition: transform 0.22s ease;
}

.drawer-services-group.open .drawer-dropdown-arrow {
  transform: rotate(180deg);
}

/* Collapsed by default, opens on click */
.drawer-services-list {
  display: none;
  flex-direction: column;
  gap: 0.15rem;
  padding: 0.25rem 0.25rem 0.35rem 0.75rem;
  border-left: 2px solid #fee2e2;
  margin-left: 1rem;
  margin-top: 0.25rem;
  margin-bottom: 0.25rem;
}

.drawer-services-group.open .drawer-services-list {
  display: flex !important;
}

.drawer-sub-link {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.38rem 0.55rem;
  border-radius: 6px;
  text-decoration: none;
  color: var(--gray-700) !important;
  font-size: 0.82rem;
  font-weight: 600;
  transition: all 0.15s ease;
}

.drawer-sub-link:hover {
  background: #f1f5f9;
  color: var(--primary) !important;
}

.drawer-sub-link i {
  font-size: 0.85rem;
  width: 18px;
  text-align: center;
  flex-shrink: 0;
}

.drawer-all-catalog-link {
  color: var(--primary) !important;
  font-weight: 700;
  border-top: 1px dashed var(--gray-200);
  margin-top: 0.15rem;
  padding-top: 0.35rem;
}

/* Compact Optimized Footer Token Button */
.drawer-footer {
  padding: 0.65rem 0.85rem;
  border-top: 1px solid var(--gray-200);
  background: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.drawer-cta-token {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.6rem 0.85rem;
  background: var(--primary);
  color: #ffffff !important;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.86rem;
  text-decoration: none;
  box-shadow: 0 3px 10px rgba(229, 29, 37, 0.3);
  transition: all 0.2s ease;
  letter-spacing: -0.01em;
}

.drawer-cta-token:hover {
  background: #c9141b;
}

.drawer-loc-info {
  text-align: center;
  font-size: 0.72rem;
  color: var(--gray-500);
  font-weight: 500;
  margin-top: 0.1rem;
}

/* Service Card Media Banner */
.service-card-media {
  width: 100%;
  height: 145px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-bottom: 1rem;
  position: relative;
  background: var(--gray-100);
}

.service-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.service-card:hover .service-card-media img {
  transform: scale(1.05);
}

/* ==========================================================================
   PAGE BANNER & HERO SECTION
   ========================================================================== */
.page-banner {
  padding: 3.5rem 0 3rem;
  background: linear-gradient(180deg, #F8FAFC 0%, #FFFFFF 100%);
  text-align: center;
  border-bottom: 1px solid var(--gray-200);
}

.hero-section {
  padding: 3.5rem 0 4.5rem;
  background: linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 100%);
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 2.5rem;
}

.section-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--primary-soft);
  color: var(--primary);
  border: 1px solid var(--primary-border);
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.hero-title {
  font-size: clamp(1.95rem, 3.2vw, 2.75rem);
  font-weight: 900;
  color: var(--gray-900);
  line-height: 1.2;
  margin-bottom: 1rem;
  letter-spacing: -0.03em;
}

.hero-title .text-red {
  color: var(--primary);
}

.hero-desc {
  font-size: 0.98rem;
  color: var(--gray-600);
  line-height: 1.65;
  margin-bottom: 1.5rem;
  max-width: 520px;
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-wrap: wrap;
  margin-bottom: 1.75rem;
}

.hero-trust-bar {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--gray-200);
  flex-wrap: wrap;
}

.rating-box {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.rating-score {
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--gray-900);
  line-height: 1;
}

.stars {
  color: #F59E0B;
  font-size: 0.78rem;
  display: flex;
  gap: 1.5px;
}

.rating-sub {
  font-size: 0.76rem;
  color: var(--gray-500);
  font-weight: 500;
}

.trust-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--white);
  border: 1px solid var(--gray-200);
  padding: 0.3rem 0.65rem;
  border-radius: var(--radius-sm);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gray-700);
  box-shadow: var(--shadow-xs);
}

.trust-badge-pill i {
  color: #10B981;
}

/* ==========================================================================
   DYNAMIC INTERACTIVE HERO SHOWCASE (Smooth Cards & Micro-Animations)
   ========================================================================== */
.hero-interactive-showcase {
  position: relative;
  background: #0F141F;
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--dark-border);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  overflow: hidden;
}

.showcase-header-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.showcase-brand-tag {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--white);
  font-weight: 700;
  font-size: 0.95rem;
}

.showcase-live-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(34, 197, 94, 0.15);
  color: #4ADE80;
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-full);
  font-size: 0.74rem;
  font-weight: 600;
}

/* Animated Floating Interactive Service Cards */
.interactive-cards-stack {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  position: relative;
}

.floating-service-chip {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  padding: 0.85rem 1rem;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.25s ease;
  cursor: pointer;
  animation: subtle-float 6s ease-in-out infinite alternate;
}

.floating-service-chip:nth-child(1) { animation-delay: 0s; }
.floating-service-chip:nth-child(2) { animation-delay: 1.2s; }
.floating-service-chip:nth-child(3) { animation-delay: 2.4s; }
.floating-service-chip:nth-child(4) { animation-delay: 3.6s; }

@keyframes subtle-float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-3px); }
  100% { transform: translateY(0px); }
}

.floating-service-chip:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: var(--primary);
  transform: translateX(4px);
}

.chip-left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.chip-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: rgba(229, 29, 37, 0.15);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.chip-title {
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 700;
}

.chip-sub {
  color: var(--gray-400);
  font-size: 0.74rem;
}

.chip-badge {
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.2rem 0.55rem;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.badge-approved {
  background: rgba(16, 185, 129, 0.18);
  color: #34D399;
}

.badge-speed {
  background: rgba(245, 158, 11, 0.18);
  color: #FBBF24;
}

/* ==========================================================================
   QUICK QUOTER (Compact & Efficient)
   ========================================================================== */
.quoter-section {
  margin-top: -2.25rem;
  position: relative;
  z-index: 20;
}

.quoter-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-200);
}

.quoter-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.85rem;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.quoter-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gray-900);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.quoter-title i {
  color: var(--primary);
}

.quoter-badge {
  font-size: 0.75rem;
  font-weight: 600;
  background: var(--primary-soft);
  color: var(--primary);
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-full);
}

.quoter-form-grid {
  display: grid;
  grid-template-columns: 1.2fr 1.3fr 1fr auto;
  gap: 0.75rem;
  align-items: flex-end;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.form-label {
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.form-select {
  width: 100%;
  padding: 0.65rem 0.85rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--gray-300);
  background: var(--gray-50);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--gray-800);
  cursor: pointer;
  transition: var(--transition);
}

.form-select:focus {
  border-color: var(--primary);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(229, 29, 37, 0.1);
}

.quoter-submit-btn {
  height: 40px;
  padding: 0 1.25rem;
  font-size: 0.88rem;
}

/* ==========================================================================
   STATS BAR (Clean Proportions)
   ========================================================================== */
.stats-bar-section {
  padding: 3.5rem 0 2.5rem;
  background: var(--white);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.stat-box {
  padding: 1.25rem 1rem;
  border-radius: var(--radius-md);
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  text-align: center;
  transition: var(--transition);
}

.stat-box:hover {
  border-color: var(--primary);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.stat-val {
  font-size: 2.1rem;
  font-weight: 800;
  color: var(--gray-900);
  line-height: 1;
  margin-bottom: 0.35rem;
}

.stat-val span {
  color: var(--primary);
}

.stat-lbl {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 0.15rem;
}

.stat-sub {
  font-size: 0.75rem;
  color: var(--gray-500);
}

/* ==========================================================================
   SECTION HEADER (Standardized)
   ========================================================================== */
.section-header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 2.5rem;
}

.section-title {
  font-size: clamp(1.6rem, 2.5vw, 2.1rem);
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 0.6rem;
}

.section-subtitle {
  font-size: 0.95rem;
  color: var(--gray-600);
  line-height: 1.6;
}

/* ==========================================================================
   "WHAT WE DO" GRID (Minimalist & Compact - Image Match)
   ========================================================================== */
.what-we-do-section {
  padding: 4.5rem 0 3.5rem;
  background: var(--gray-50);
}

.what-we-do-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.25rem;
}

.what-we-do-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1.6rem 1.25rem;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-xs);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.what-we-do-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}

.what-we-do-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: var(--primary-soft);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 1rem;
  transition: var(--transition);
}

.what-we-do-card:hover .what-we-do-icon-wrap {
  background: var(--primary);
  color: var(--white);
}

.what-we-do-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 0.5rem;
}

.what-we-do-desc {
  font-size: 0.85rem;
  color: var(--gray-500);
  line-height: 1.55;
}

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

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1.75rem 1.5rem;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-xs);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}

.service-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.service-icon-box {
  width: 46px;
  height: 46px;
  border-radius: var(--radius-sm);
  background: var(--primary-soft);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  transition: var(--transition);
}

.service-card:hover .service-icon-box {
  background: var(--primary);
  color: var(--white);
}

.service-badge {
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.2rem 0.55rem;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.badge-red { background: var(--primary-soft); color: var(--primary); }
.badge-green { background: var(--green-soft); color: var(--green); }
.badge-gold { background: var(--gold-soft); color: var(--gold); }

.service-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 0.45rem;
}

.service-desc {
  font-size: 0.88rem;
  color: var(--gray-500);
  line-height: 1.55;
  margin-bottom: 1rem;
}

.service-features-list {
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

.service-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  font-size: 0.85rem;
  color: var(--gray-800);
  margin-bottom: 0.45rem;
  font-weight: 500;
  line-height: 1.45;
}

.service-feature-item i {
  color: #10B981;
  font-size: 0.82rem;
  margin-top: 0.22rem;
  flex-shrink: 0;
}

.service-feature-item strong {
  color: var(--gray-900);
  font-weight: 700;
  margin-right: 0.25rem;
  white-space: nowrap;
}

.service-card-action {
  padding-top: 1rem;
  border-top: 1px solid var(--gray-100);
}

.btn-service-action {
  width: 100%;
  padding: 0.6rem 0.85rem;
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  color: var(--gray-900);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  transition: var(--transition);
}

.btn-service-action:hover {
  background: var(--whatsapp);
  border-color: var(--whatsapp);
  color: var(--white);
}

.carousel-controls {
  display: none;
}

/* ==========================================================================
   SHOWCASE SECTIONS (Plots & 3D Skins)
   ========================================================================== */
.showcase-section {
  padding: 4.5rem 0;
  background: var(--gray-50);
}

.showcase-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.showcase-visual {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-200);
}

.showcase-content h3 {
  font-size: 1.65rem;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 0.85rem;
}

.showcase-content p {
  font-size: 0.95rem;
  color: var(--gray-600);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

.showcase-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
  margin-bottom: 1.5rem;
}

.point-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  padding: 0.85rem;
  border-radius: var(--radius-sm);
}

.point-title {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 0.2rem;
}

.point-desc {
  font-size: 0.78rem;
  color: var(--gray-500);
  line-height: 1.45;
}

/* ==========================================================================
   LIVE GOOGLE MAP & VERIFIED LOCATION CARD
   ========================================================================== */
.live-map-wrapper {
  margin-bottom: 2.5rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-md);
  background: var(--white);
}

.map-header-bar {
  background: var(--dark-bg);
  color: var(--white);
  padding: 0.85rem 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.map-header-title {
  font-size: 0.92rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.map-header-title i {
  color: var(--primary);
}

.map-iframe-container {
  position: relative;
  width: 100%;
  height: 380px;
  background: #e5e3df;
}

.map-iframe-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.map-floating-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(8px);
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-200);
  max-width: 270px;
  z-index: 10;
}

.badge-biz-name {
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--gray-900);
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin-bottom: 0.2rem;
}

.badge-biz-name i {
  color: #10B981;
}

.badge-biz-addr {
  font-size: 0.76rem;
  color: var(--gray-600);
  margin-bottom: 0.35rem;
  line-height: 1.35;
}

.badge-biz-action {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--primary);
}

/* ==========================================================================
   PROCESS, DOCS & FAQ
   ========================================================================== */
.process-section {
  padding: 4.5rem 0;
  background: var(--white);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.process-card {
  text-align: center;
  padding: 1.75rem 1.25rem;
  border-radius: var(--radius-md);
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}

.process-card:hover {
  border-color: var(--primary);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.step-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gray-900);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  font-weight: 800;
  margin: 0 auto 1rem;
  transition: var(--transition);
}

.process-card:hover .step-number {
  background: var(--primary);
}

.process-title {
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 0.35rem;
}

.process-desc {
  font-size: 0.8rem;
  color: var(--gray-500);
  line-height: 1.5;
}

.docs-guide-section {
  padding: 4.5rem 0;
  background: var(--gray-50);
}

.docs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.doc-guide-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  border: 1px solid var(--gray-200);
}

.doc-guide-card h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.doc-guide-card h4 i {
  color: var(--primary);
}

.doc-guide-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.45rem;
  font-size: 0.82rem;
  color: var(--gray-700);
  margin-bottom: 0.45rem;
}

.doc-guide-list li i {
  color: #10B981;
  margin-top: 0.15rem;
  font-size: 0.75rem;
}

.faq-section {
  padding: 4.5rem 0;
  background: var(--white);
}

.faq-grid {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.faq-item {
  background: var(--gray-50);
  border-radius: var(--radius-sm);
  border: 1px solid var(--gray-200);
  overflow: hidden;
}

.faq-question {
  padding: 1rem 1.25rem;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--gray-900);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-question:hover {
  color: var(--primary);
}

.faq-answer {
  padding: 0 1.25rem 1rem;
  font-size: 0.85rem;
  color: var(--gray-600);
  line-height: 1.6;
}

/* ==========================================================================
   PAGE BANNER
   ========================================================================== */
.page-banner {
  background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
  color: var(--white);
  padding: 4.5rem 0 3.75rem;
  text-align: center;
}

.page-banner .hero-title {
  color: var(--white) !important;
}

.page-banner .hero-desc {
  color: #E2E8F0;
}

/* ==========================================================================
   CONTACT SECTION
   ========================================================================== */
.contact-section {
  padding: 4.5rem 0;
  background: var(--gray-50);
}

.contact-card-wrap {
  background: var(--dark-bg);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.75rem 2.25rem;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2.5rem;
  align-items: center;
  box-shadow: var(--shadow-lg);
}

.contact-left h2 {
  font-size: 1.85rem;
  color: var(--white);
  margin-bottom: 0.65rem;
}

.contact-left p {
  color: var(--gray-300);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  line-height: 1.65;
}

.contact-details-list {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.88rem;
  color: var(--gray-300);
}

.contact-item i {
  color: var(--primary);
  font-size: 1rem;
  margin-top: 0.15rem;
}

.contact-right {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2rem;
  border-radius: var(--radius-md);
  text-align: center;
}

.contact-right h3 {
  color: var(--white);
  font-size: 1.2rem;
  margin-bottom: 0.4rem;
}

.contact-right p {
  color: var(--gray-300);
  font-size: 0.85rem;
  margin-bottom: 1.25rem;
}

.contact-action-stack {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

/* ==========================================================================
   FOOTER & MOBILE STICKY BAR
   ========================================================================== */
.site-footer {
  background: #090D15;
  color: var(--gray-400);
  padding: 3.5rem 0 1.75rem;
  border-top: 1px solid #1A2234;
}

.footer-top-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1.1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.footer-brand p {
  font-size: 0.85rem;
  color: var(--gray-400);
  margin-top: 0.85rem;
  line-height: 1.6;
}

.footer-heading {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
  position: relative;
  padding-bottom: 0.35rem;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 20px;
  height: 2px;
  background: var(--primary);
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: var(--gray-400);
  font-size: 0.84rem;
}

.footer-links a:hover {
  color: var(--primary);
}

.footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid #141B2A;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.mobile-sticky-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--white);
  border-top: 1px solid var(--gray-200);
  padding: 0.5rem 0.85rem calc(0.5rem + env(safe-area-inset-bottom));
  z-index: 1500;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.08);
}

.mobile-sticky-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
}

@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; gap: 2.5rem; }
  .hero-badge, .hero-desc, .hero-ctas, .hero-trust-bar { margin-inline: auto; justify-content: center; }
  .quoter-form-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .showcase-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .docs-grid { grid-template-columns: 1fr; }
  .contact-card-wrap { grid-template-columns: 1fr; }
  .footer-top-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ==========================================================================
   MOBILE OFF-CANVAS NAVIGATION DRAWER & OVERLAY
   ========================================================================== */
.mobile-drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(15, 23, 42, 0.65);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.3s;
}

.mobile-drawer-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 85%;
  max-width: 360px;
  background: #ffffff;
  z-index: 2001;
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.18);
  transform: translateX(105%);
  visibility: hidden;
  pointer-events: none;
  transition: transform 0.32s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.32s;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.mobile-drawer.open {
  transform: translateX(0);
  visibility: visible;
  pointer-events: auto;
}

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.15rem 1.25rem;
  border-bottom: 1px solid var(--gray-200);
  background: #ffffff;
  position: sticky;
  top: 0;
  z-index: 10;
}

.drawer-close-btn {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  color: var(--gray-800);
  font-size: 1.15rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.drawer-close-btn:hover {
  background: var(--primary);
  color: #ffffff;
  border-color: var(--primary);
}

.drawer-body {
  padding: 1.15rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  flex: 1;
}

.drawer-status-card {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: 10px;
  padding: 0.65rem 0.85rem;
  margin-bottom: 0.6rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: #166534;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.drawer-nav-item {
  display: flex;
  align-items: center;
  padding: 0.75rem 0.85rem;
  border-radius: 10px;
  color: var(--gray-800);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.18s ease;
  gap: 0.65rem;
}

.drawer-nav-item:hover,
.drawer-nav-item.active {
  background: var(--gray-50);
  color: var(--primary);
}

.drawer-nav-item i {
  width: 22px;
  text-align: center;
  font-size: 1rem;
  color: var(--gray-500);
}

.drawer-nav-item:hover i,
.drawer-nav-item.active i {
  color: var(--primary);
}

.drawer-nav-item.highlight {
  background: var(--primary-soft);
  color: var(--primary);
  border: 1px solid var(--primary-border);
}

.drawer-nav-item.highlight i {
  color: var(--primary);
}

.drawer-accordion {
  border-radius: 10px;
  border: 1px solid var(--gray-200);
  overflow: hidden;
  margin: 0.25rem 0;
  background: #ffffff;
}

.drawer-accordion-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 0.85rem;
  background: #ffffff;
  border: none;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--gray-900);
  cursor: pointer;
  transition: background 0.2s ease;
}

.drawer-accordion-btn:hover {
  background: var(--gray-50);
}

.drawer-accordion-btn .accordion-title-wrap {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.drawer-accordion-btn .accordion-title-wrap i {
  width: 22px;
  text-align: center;
  color: var(--primary);
}

.drawer-accordion-btn .accordion-arrow {
  font-size: 0.75rem;
  color: var(--gray-400);
  transition: transform 0.25s ease;
}

.drawer-accordion.open .drawer-accordion-btn .accordion-arrow {
  transform: rotate(180deg);
}

.drawer-accordion-content {
  display: none;
  padding: 0.4rem 0.5rem 0.6rem;
  background: #f8fafc;
  border-top: 1px solid var(--gray-200);
  flex-direction: column;
  gap: 0.3rem;
}

.drawer-accordion.open .drawer-accordion-content {
  display: flex;
}

.drawer-sub-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.55rem 0.65rem;
  border-radius: 8px;
  text-decoration: none;
  color: var(--gray-800);
  transition: background 0.18s ease;
}

.drawer-sub-item:hover {
  background: #ffffff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.drawer-sub-icon {
  width: 32px;
  height: 32px;
  min-width: 32px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.drawer-sub-title {
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--gray-900);
  line-height: 1.2;
}

.drawer-sub-desc {
  font-size: 0.72rem;
  color: var(--gray-500);
  margin-top: 0.1rem;
}

.drawer-all-services-link {
  text-align: center;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--primary);
  padding: 0.5rem 0 0.2rem;
  text-decoration: none;
  display: block;
}

.drawer-all-services-link:hover {
  text-decoration: underline;
}

.drawer-footer {
  padding: 1.15rem 1.25rem;
  border-top: 1px solid var(--gray-200);
  background: var(--gray-50);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.drawer-cta-wa {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  background: #25D366;
  color: #ffffff;
  font-weight: 700;
  padding: 0.75rem;
  border-radius: 10px;
  text-decoration: none;
  font-size: 0.92rem;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.25);
  transition: background 0.2s ease;
}

.drawer-cta-wa:hover {
  background: #20BA59;
}

.drawer-cta-call {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  background: var(--dark-bg);
  color: #ffffff;
  font-weight: 700;
  padding: 0.75rem;
  border-radius: 10px;
  text-decoration: none;
  font-size: 0.92rem;
  transition: background 0.2s ease;
}

.drawer-cta-call:hover {
  background: #141B2A;
}

.drawer-loc-info {
  font-size: 0.75rem;
  color: var(--gray-500);
  text-align: center;
  margin-top: 0.15rem;
}

/* ==========================================================================
   SERVICE PAGE 2-COLUMN LAYOUT & RESPONSIVE BEHAVIOR
   ========================================================================== */
.service-content-layout {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 2.25rem;
  align-items: flex-start;
  width: 100%;
}

.service-main-content {
  width: 100%;
  min-width: 0;
}

.service-sidebar {
  position: sticky;
  top: 90px;
  width: 100%;
  min-width: 0;
}

@media (max-width: 992px) {
  .service-content-layout {
    display: flex !important;
    flex-direction: column !important;
    gap: 1.5rem !important;
    width: 100% !important;
  }

  .service-main-content,
  .service-sidebar {
    width: 100% !important;
    position: static !important;
  }
}

/* ==========================================================================
   RESPONSIVE BREAKPOINTS (TABLET & MOBILE)
   ========================================================================== */
@media (max-width: 992px) {
  .nav-links {
    display: none !important;
  }

  .header-actions .btn {
    display: none !important;
  }

  .mobile-header-actions {
    display: flex;
  }

  .mobile-menu-btn {
    display: flex;
  }
}

@media (max-width: 768px) {
  /* Mobile-Only Serif Typography System */
  :root {
  --font-heading: 'Plus Jakarta Sans', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  }

  html, body,
  h1, h2, h3, h4, h5, h6,
  p, a, span, li, button, input, select, textarea, label,
  .hero-title, .section-title, .service-title, .card-title,
  .brand-name, .nav-link, .drawer-nav-item, .drawer-sub-title, .drawer-sub-desc,
  .btn, .badge, .chip-title, .chip-sub, .stats-number, .stats-label,
  .top-status-badge, .drawer-status-card, .accordion-title-wrap {
    font-family: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif !important;
  }

  /* 1. Header sticky and fixed on mobile */
  .top-bar { display: none !important; }
  
  .site-header {
    position: sticky !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    z-index: 1000 !important;
    background: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    border-bottom: 1px solid var(--gray-200) !important;
    box-shadow: 0 2px 10px rgba(15, 23, 42, 0.08) !important;
  }

  .navbar {
    min-height: 64px;
    height: 64px;
    padding: 0.4rem 0;
    gap: 0.75rem;
  }

  .brand-logo-img {
    height: 40px;
    max-width: 140px;
  }

  .brand-text {
    display: none; /* Keep mobile header clean and concise */
  }

  /* 2. Hero and Typography on Mobile */
  .hero-section {
    padding: 2.25rem 0 2rem;
  }

  .hero-title {
    font-size: 1.85rem;
    line-height: 1.25;
    letter-spacing: -0.02em;
  }

  .hero-desc {
    font-size: 0.92rem;
    line-height: 1.55;
    margin-bottom: 1.35rem;
  }

  .hero-ctas {
    flex-direction: column;
    width: 100%;
    gap: 0.65rem;
  }

  .hero-ctas .btn {
    width: 100%;
    justify-content: center;
    padding: 0.75rem 1rem;
  }

  .hero-trust-bar {
    flex-direction: column;
    gap: 0.75rem;
    align-items: center;
    margin-top: 1.5rem;
  }

  /* 3. Hero Interactive Showcase Cards on Mobile */
  .hero-interactive-showcase {
    padding: 1.25rem 1rem;
    border-radius: var(--radius-lg);
  }

  .showcase-header-card {
    margin-bottom: 0.85rem;
  }

  .interactive-cards-stack {
    gap: 0.65rem;
  }

  .floating-service-chip {
    padding: 0.75rem 0.85rem;
    gap: 0.65rem;
  }

  .chip-icon {
    width: 36px;
    height: 36px;
    font-size: 0.95rem;
    border-radius: 8px;
  }

  .chip-title {
    font-size: 0.92rem;
    font-weight: 700;
    line-height: 1.25;
  }

  .chip-sub {
    font-size: 0.76rem;
    line-height: 1.3;
    margin-top: 0.15rem;
  }

  .chip-badge {
    font-size: 0.65rem;
    padding: 0.2rem 0.45rem;
    flex-shrink: 0;
    align-self: flex-start;
  }

  /* 4. Schemes Carousel on Mobile */
  #govt-schemes .services-grid {
    display: flex !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 1rem;
    padding: 0.5rem 0.25rem 1rem;
    scrollbar-width: none;
    margin-bottom: 0.5rem;
  }

  #govt-schemes .services-grid::-webkit-scrollbar {
    display: none;
  }

  #govt-schemes .services-grid .service-card {
    flex: 0 0 86%;
    max-width: 86%;
    scroll-snap-align: center;
    margin-bottom: 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
  }

  /* Carousel Navigation Bar (Dots & Arrows) */
  .carousel-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
    margin-top: 1rem;
  }

  .carousel-nav-btn {
    width: 34px;
    height: 34px;
    border-radius: var(--radius-full);
    background: var(--white);
    border: 1px solid var(--gray-300);
    color: var(--gray-700);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.82rem;
    box-shadow: var(--shadow-xs);
    cursor: pointer;
  }

  .carousel-dots {
    display: flex;
    gap: 0.4rem;
  }

  .carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: var(--radius-full);
    background: var(--gray-300);
    transition: all 0.25s ease;
  }

  .carousel-dot.active {
    width: 22px;
    background: var(--primary);
  }

  /* 5. Section Headers & Other Cards */
  .section-header {
    margin-bottom: 1.85rem;
  }

  .section-title {
    font-size: 1.55rem;
    line-height: 1.25;
  }

  .section-subtitle {
    font-size: 0.88rem;
    line-height: 1.5;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .service-card {
    padding: 1.25rem;
  }

  .service-card-media {
    height: 175px;
    margin-bottom: 1rem;
  }

  .quoter-form-grid {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }

  .quoter-card {
    padding: 1.35rem 1.15rem;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
  }

  .stat-box {
    padding: 1.15rem 0.85rem;
  }

  .stat-val {
    font-size: 1.75rem;
  }

  .what-we-do-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .showcase-grid {
    gap: 1.75rem;
  }

  .showcase-points {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .process-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .map-floating-badge {
    display: none !important; /* Hide overlay badge on mobile so it never blocks the map view */
  }

  .map-iframe-container {
    height: 380px !important;
  }

  /* 6. Contact Section Card on Mobile */
  .contact-card-wrap {
    padding: 1.5rem 1.15rem;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    border-radius: var(--radius-md);
  }

  .contact-left h2 {
    font-size: 1.45rem;
    line-height: 1.3;
  }

  .contact-left p {
    font-size: 0.88rem;
    margin-bottom: 1.25rem;
  }

  .contact-details-list {
    gap: 0.85rem;
  }

  .contact-item {
    font-size: 0.84rem;
    line-height: 1.45;
  }

  .contact-item div {
    word-break: break-word;
  }

  .contact-right {
    padding: 1.35rem 1rem;
  }

  /* 7. Footer 2-Column Responsive Layout on Mobile */
  .footer-top-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.75rem 1.15rem;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-heading {
    font-size: 0.86rem;
    margin-bottom: 0.65rem;
  }

  .footer-links a {
    font-size: 0.8rem;
    line-height: 1.4;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 0.4rem;
    padding-top: 1.25rem;
    font-size: 0.76rem;
  }

  /* 8. Comprehensive Mobile Optimization for All Service Category Hubs & Subpages */
  * {
    box-sizing: border-box !important;
  }

  body, html {
    overflow-x: hidden !important;
    width: 100% !important;
    max-width: 100vw !important;
  }

  .container {
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 0.75rem !important;
    padding-right: 0.75rem !important;
    box-sizing: border-box !important;
  }

  .page-banner,
  .hero-section,
  .service-hero,
  section[class*="banner"],
  section[class*="hero"] {
    padding: 1.75rem 0 1.5rem !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-banner h1,
  .hero-title,
  .service-detail-title,
  h1 {
    font-size: 1.35rem !important;
    line-height: 1.25 !important;
    margin-bottom: 0.65rem !important;
    word-break: break-word !important;
  }

  .page-banner p,
  .hero-desc,
  p {
    font-size: 0.84rem !important;
    line-height: 1.45 !important;
    margin-bottom: 1rem !important;
    word-break: break-word !important;
  }

  .section-pill {
    font-size: 0.7rem !important;
    padding: 0.25rem 0.5rem !important;
    margin-bottom: 0.6rem !important;
    display: inline-flex !important;
    max-width: 100% !important;
    white-space: normal !important;
    text-align: center !important;
    box-sizing: border-box !important;
  }

  /* All CTA buttons on mobile: full-width, clean wrapping, no horizontal overflow */
  .btn,
  .btn-whatsapp,
  .btn-primary,
  .btn-outline-light,
  .btn-secondary,
  .btn-outline,
  a[class*="btn"] {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0.6rem 0.75rem !important;
    font-size: 0.82rem !important;
    border-radius: 8px !important;
    white-space: normal !important;
    word-break: break-word !important;
    text-align: center !important;
    justify-content: center !important;
    display: flex !important;
    align-items: center !important;
    gap: 0.45rem !important;
    box-sizing: border-box !important;
    min-height: 42px !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .page-banner div[style*="display: flex"],
  .page-banner div[style*="display:flex"],
  .hero-ctas,
  div[style*="justify-content: center"][style*="flex-wrap: wrap"] {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    gap: 0.5rem !important;
    align-items: stretch !important;
    box-sizing: border-box !important;
  }

  /* All Grids & Sections on Mobile */
  .services-section,
  .section,
  .detail-section,
  section {
    padding: 1.75rem 0 !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .grid,
  .services-grid,
  .service-detail-grid,
  .features-grid,
  .docs-grid,
  .steps-grid,
  .details-grid,
  .what-we-do-grid,
  .showcase-grid,
  .showcase-points,
  .process-grid,
  .specs-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 0.85rem !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .service-card,
  .feature-card,
  .doc-card,
  .step-card,
  .detail-card,
  .pricing-card,
  .specs-card {
    width: 100% !important;
    max-width: 100% !important;
    padding: 1rem 0.85rem !important;
    box-sizing: border-box !important;
  }

  /* Tables & Lists */
  table,
  .specs-table,
  .fee-table {
    display: block !important;
    width: 100% !important;
    overflow-x: auto !important;
  }

  /* Images & Media in Service Pages */
  .service-image,
  .detail-image {
    max-width: 100% !important;
    height: auto !important;
    border-radius: 10px !important;
  }

  /* Universal Mobile Stack for any 2-column or multi-column grids in Subpages */
  .service-content-layout,
  div[style*="grid-template-columns: 1.25fr 0.75fr"],
  div[style*="grid-template-columns: 1fr 1fr"],
  div[style*="grid-template-columns: 1.2fr 0.8fr"],
  div[style*="grid-template-columns: 1.3fr 0.7fr"],
  div[style*="grid-template-columns: repeat"] {
    display: flex !important;
    flex-direction: column !important;
    gap: 1.25rem !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .service-main-content,
  .service-sidebar,
  div[style*="position: sticky"],
  div[style*="position:sticky"] {
    position: static !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    box-sizing: border-box !important;
  }

  .mobile-sticky-bar {
    display: block !important;
  }

  body {
    padding-bottom: 65px;
  }
}

