/* =========================================================
   SAFORA FINANCIAL SERVICES - COMPLETE STYLESHEET
   DESKTOP (PIXEL PERFECT) + 100% MOBILE APP RESPONSIVE
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Outfit:wght@400;500;600;700;800&display=swap');

:root {
  --primary: #0B2240;        /* Executive Deep Navy */
  --primary-light: #163864;
  --primary-dark: #061324;
  --secondary: #10B981;      /* Vibrant Emerald Green */
  --secondary-hover: #059669;
  --secondary-light: #D1FAE5;
  --accent-gold: #F59E0B;    /* Wealth Gold */
  --accent-gold-light: #FEF3C7;
  --dark: #0F172A;
  --slate-900: #0F172A;
  --slate-800: #1E293B;
  --slate-700: #334155;
  --slate-600: #475569;
  --slate-500: #64748B;
  --slate-200: #E2E8F0;
  --slate-100: #F1F5F9;
  --slate-50: #F8FAFC;
  --white: #FFFFFF;
  --border: #E2E8F0;
  --card-shadow: 0 10px 25px -5px rgba(11, 34, 64, 0.07), 0 8px 10px -6px rgba(11, 34, 64, 0.03);
  --card-shadow-hover: 0 20px 35px -5px rgba(11, 34, 64, 0.12), 0 12px 15px -6px rgba(11, 34, 64, 0.06);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 26px;
  --radius-full: 9999px;
  --font-main: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-heading: 'Outfit', sans-serif;
  --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --bottom-nav-height: 68px;
}

/* Reset & Base */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-main);
  background-color: var(--slate-50);
  color: var(--slate-700);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--primary);
  font-weight: 700;
  line-height: 1.25;
}

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

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

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* =========================================================
   PRELOADER
   ========================================================= */
#page-preloader {
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at center, #163864 0%, #061324 100%);
  z-index: 99999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

#page-preloader.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.spinner-wrapper {
  position: relative;
  width: 72px;
  height: 72px;
}

.spinner-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 4px solid transparent;
  border-top-color: var(--secondary);
  animation: spin 1.1s cubic-bezier(0.5, 0, 0.5, 1) infinite;
}

.spinner-ring:nth-child(2) {
  inset: 8px;
  border-top-color: var(--accent-gold);
  animation-duration: 1.5s;
  animation-direction: reverse;
}

.spinner-logo-icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.4rem;
  font-weight: 800;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.preloader-text {
  margin-top: 1.25rem;
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.preloader-subtext {
  color: #94A3B8;
  font-size: 0.8rem;
  margin-top: 0.2rem;
}

/* =========================================================
   TOPBAR
   ========================================================= */
.topbar {
  background: var(--primary-dark);
  color: #94A3B8;
  font-size: 0.8rem;
  padding: 0.35rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.topbar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.topbar-info {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.topbar-info a, .topbar-info span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: #CBD5E1;
}

.topbar-info a:hover {
  color: var(--secondary);
}

.topbar-badge {
  background: rgba(16, 185, 129, 0.15);
  color: var(--secondary);
  padding: 0.15rem 0.6rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  border: 1px solid rgba(16, 185, 129, 0.3);
}

/* =========================================================
   DESKTOP NAVBAR (CLEAN & SLIM EXECUTIVE)
   ========================================================= */
.navbar {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  z-index: 1000;
  box-shadow: 0 2px 16px -2px rgba(11, 34, 64, 0.07);
  padding: 0.45rem 0;
  transition: var(--transition);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand-group {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-logo-wrap {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.brand-logo-img {
  max-height: 40px;
  width: auto;
  object-fit: contain;
  display: block;
}

.brand-symbol {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--primary) 0%, #163864 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 800;
  box-shadow: 0 3px 10px rgba(11, 34, 64, 0.18);
  border: 2px solid var(--secondary);
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

.brand-symbol::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 12px;
  height: 12px;
  background: var(--secondary);
  border-radius: 50% 0 0 0;
}

.brand-text h1 {
  font-size: 1.15rem;
  letter-spacing: 0.4px;
  color: var(--primary);
  margin-bottom: 0;
  font-weight: 800;
  line-height: 1.1;
}

.brand-text h1 span {
  color: var(--secondary);
}

.brand-text p {
  font-size: 0.6rem;
  color: var(--slate-600);
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  margin-top: 1px;
}

/* Desktop horizontal nav links */
.nav-links-wrapper {
  display: flex;
  align-items: center;
}

.drawer-header {
  display: none;
}

.drawer-action {
  display: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  list-style: none;
}

.nav-links li a {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--slate-700);
  position: relative;
  padding: 0.35rem 0;
  transition: color 0.2s ease;
}

.nav-links li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2.5px;
  background: linear-gradient(90deg, var(--secondary), var(--accent-gold));
  transition: width 0.3s ease;
  border-radius: 2px;
}

.nav-links li a:hover, .nav-links li a.active {
  color: var(--primary);
}

.nav-links li a:hover::after, .nav-links li a.active::after {
  width: 100%;
}

.desktop-nav-cta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

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

.mobile-call-btn {
  display: none;
}

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

.nav-drawer-overlay {
  display: none;
}


/* Common Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.65rem 1.35rem;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  cursor: pointer;
  border: 1px solid transparent;
  transition: var(--transition);
}

.btn:active {
  transform: scale(0.97);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, #163864 100%);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(11, 34, 64, 0.25);
}

.btn-primary:hover {
  color: var(--white);
  box-shadow: 0 6px 20px rgba(11, 34, 64, 0.35);
}

.btn-secondary {
  background: linear-gradient(135deg, var(--secondary) 0%, #059669 100%);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(16, 185, 129, 0.3);
}

.btn-secondary:hover {
  color: var(--white);
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
}

.btn-outline {
  background: transparent;
  border-color: var(--primary);
  color: var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
}

.btn-gold {
  background: linear-gradient(135deg, var(--accent-gold) 0%, #D97706 100%);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(245, 158, 11, 0.3);
}

.btn-sm {
  padding: 0.45rem 0.9rem;
  font-size: 0.82rem;
  border-radius: var(--radius-sm);
}

/* =========================================================
   DYNAMIC HERO BACKGROUND AUTO-SLIDER
   ========================================================= */
.hero-slider-section {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  background: #061324;
}

.hero-slides-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 520px;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.9s cubic-bezier(0.4, 0, 0.2, 1), transform 6s ease-out;
  transform: scale(1.04);
  display: flex;
  align-items: center;
  filter: brightness(1.05) contrast(1.03);
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  z-index: 2;
}

.hero-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(6, 19, 36, 0.78) 0%, rgba(11, 34, 64, 0.48) 50%, rgba(6, 19, 36, 0.15) 100%);
  z-index: 1;
}

.hero-slide-content-container {
  position: relative;
  z-index: 3;
  padding-top: 3.5rem;
  padding-bottom: 4.5rem;
}

.hero-slide-text-box {
  max-width: 760px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(16, 185, 129, 0.2);
  border: 1px solid rgba(16, 185, 129, 0.45);
  color: #34D399;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
}

.hero-title {
  font-size: 3.25rem;
  line-height: 1.18;
  color: var(--white);
  margin-bottom: 1.25rem;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: #CBD5E1;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.hero-features-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2.25rem;
}

.feature-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 0.45rem 0.9rem;
  border-radius: var(--radius-md);
  font-size: 0.85rem;
  color: #E2E8F0;
}

.feature-pill i {
  color: var(--secondary);
}

.hero-cta-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Slider Controls */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #FFF;
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.slider-arrow:hover {
  background: var(--secondary);
  border-color: var(--secondary);
  transform: translateY(-50%) scale(1.1);
}

.slider-prev { left: 2rem; }
.slider-next { right: 2rem; }

.slider-dots-container {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.6rem;
  z-index: 10;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: all 0.3s ease;
}

.slider-dot.active {
  width: 28px;
  border-radius: var(--radius-full);
  background: var(--secondary);
}

/* =========================================================
   DEDICATED INSTANT SERVICE REQUEST SECTION
   ========================================================= */
.quote-section-box {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 3.5rem;
  box-shadow: var(--card-shadow);
  border: 1px solid var(--border);
}

.quote-box-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3.5rem;
  align-items: center;
}

.quote-form-card {
  background: #F8FAFC;
  padding: 2.25rem;
  border-radius: var(--radius-lg);
  border: 1px solid #E2E8F0;
}

/* =========================================================
   STATS BAR
   ========================================================= */
.stats-bar-section {
  position: relative;
  margin-top: -2.5rem;
  z-index: 10;
}

.stats-card-container {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--card-shadow);
  padding: 2rem 2.5rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  border: 1px solid var(--border);
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.stat-icon {
  width: 54px;
  height: 54px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.stat-icon.navy { background: #E0E7FF; color: var(--primary); }
.stat-icon.green { background: #D1FAE5; color: var(--secondary); }
.stat-icon.gold { background: #FEF3C7; color: var(--accent-gold); }
.stat-icon.blue { background: #E0F2FE; color: #0284C7; }

.stat-info h4 {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}

.stat-info p {
  font-size: 0.85rem;
  color: var(--slate-600);
  font-weight: 500;
  margin-top: 0.25rem;
}

/* =========================================================
   SECTION HEADERS & SERVICES
   ========================================================= */
.section-padding {
  padding: 5.5rem 0;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
}

.section-tag {
  display: inline-block;
  background: rgba(16, 185, 129, 0.12);
  color: var(--secondary-hover);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 0.3rem 0.85rem;
  border-radius: var(--radius-full);
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: 2.25rem;
  margin-bottom: 0.85rem;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--slate-600);
}

.services-tabs-nav {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.tab-btn {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 0.65rem 1.35rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--slate-700);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition);
}

.tab-btn.active, .tab-btn:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  box-shadow: 0 4px 12px rgba(11, 34, 64, 0.15);
}

.tab-btn.active i {
  color: var(--secondary);
}

.service-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  border: 1px solid var(--border);
  box-shadow: var(--card-shadow);
  transition: var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}

.service-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--secondary), var(--primary));
  opacity: 0;
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--card-shadow-hover);
  border-color: rgba(16, 185, 129, 0.4);
}

.service-card:hover::after {
  opacity: 1;
}

.service-icon-box {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(11, 34, 64, 0.05) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 1.25rem;
  transition: var(--transition);
}

.service-card:hover .service-icon-box {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
  color: var(--white);
  transform: scale(1.05);
}

.service-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.service-card p {
  font-size: 0.88rem;
  color: var(--slate-600);
  margin-bottom: 1.25rem;
  line-height: 1.5;
}

.service-features-list {
  list-style: none;
  margin-bottom: 1.25rem;
  font-size: 0.85rem;
}

.service-features-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.35rem;
  color: var(--slate-700);
}

.service-features-list li i {
  color: var(--secondary);
  font-size: 0.75rem;
}

.service-card-action {
  margin-top: auto;
}

/* =========================================================
   FINANCIAL CALCULATORS
   ========================================================= */
.calculator-section {
  background: linear-gradient(180deg, #F8FAFC 0%, #EEF2F6 100%);
}

.calc-box-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--card-shadow);
  border: 1px solid var(--border);
  padding: 2.25rem;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2.5rem;
  align-items: center;
}

.calc-slider-group {
  margin-bottom: 1.5rem;
}

.calc-slider-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}

.calc-slider-header label {
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--slate-800);
}

.calc-slider-val {
  background: var(--slate-100);
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
  color: var(--primary);
  font-size: 0.95rem;
}

.calc-range-slider {
  width: 100%;
  height: 8px;
  border-radius: 5px;
  background: #E2E8F0;
  outline: none;
  -webkit-appearance: none;
  cursor: pointer;
}

.calc-range-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--secondary);
  box-shadow: 0 2px 8px rgba(16, 185, 129, 0.5);
  cursor: pointer;
}

.calc-results-panel {
  background: linear-gradient(135deg, var(--primary) 0%, #0c1b33 100%);
  border-radius: var(--radius-lg);
  padding: 2rem;
  color: var(--white);
  text-align: center;
}

.calc-res-item {
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.calc-res-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.calc-res-label {
  font-size: 0.8rem;
  color: #94A3B8;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.calc-res-amount {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--white);
  margin-top: 0.2rem;
}

.calc-res-amount.highlight {
  color: var(--secondary);
}

/* =========================================================
   WHY CHOOSE US & ASSAM NETWORK
   ========================================================= */
.why-us-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.why-card {
  background: var(--white);
  padding: 1.75rem 1.25rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  text-align: center;
  transition: var(--transition);
}

.why-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--card-shadow-hover);
  border-color: var(--secondary);
}

.why-icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
}

.why-icon.trust { background: #D1FAE5; color: var(--secondary); }
.why-icon.expertise { background: #E0E7FF; color: var(--primary); }
.why-icon.commitment { background: #FEF3C7; color: var(--accent-gold); }
.why-icon.growth { background: #E0F2FE; color: #0284C7; }

.why-card h4 {
  font-size: 1.15rem;
  margin-bottom: 0.4rem;
}

.why-card p {
  font-size: 0.85rem;
  color: var(--slate-600);
}

.assam-banner {
  background: radial-gradient(circle at 10% 20%, rgba(16, 185, 129, 0.2) 0%, transparent 60%),
              linear-gradient(135deg, #0B2240 0%, #061324 100%);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 3rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.assam-districts-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem;
}

.district-item {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 0.75rem 1rem;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.district-item i {
  color: var(--secondary);
}

.district-item span {
  font-weight: 600;
  font-size: 0.9rem;
}

/* =========================================================
   FLOATING ACTIONS
   ========================================================= */
.floating-actions {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  z-index: 9990;
}

.fab-btn {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.35rem;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  transition: var(--transition);
  position: relative;
}

.fab-whatsapp { background: #25D366; }
.fab-call { background: var(--primary); }

.fab-tooltip {
  position: absolute;
  right: 66px;
  background: var(--slate-900);
  color: var(--white);
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}

.fab-btn:hover .fab-tooltip {
  opacity: 1;
}

/* =========================================================
   FOOTER
   ========================================================= */
.main-footer {
  background: var(--primary-dark);
  color: #94A3B8;
  padding: 4.5rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.25fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.footer-col h4 {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 1.25rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 35px;
  height: 2px;
  background: var(--secondary);
}

.footer-links {
  list-style: none;
}

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

.footer-links a {
  color: #94A3B8;
  font-size: 0.88rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.footer-links a:hover {
  color: var(--secondary);
  padding-left: 4px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
  font-size: 0.88rem;
  color: #CBD5E1;
}

.footer-contact-item i {
  color: var(--secondary);
  margin-top: 0.25rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.82rem;
}

/* =========================================================
   NATIVE MOBILE BOTTOM BAR
   ========================================================= */
.mobile-bottom-nav {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: var(--bottom-nav-height);
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid rgba(226, 232, 240, 0.8);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.06);
  z-index: 9999;
  padding: 0 0.5rem;
}

.bottom-nav-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  height: 100%;
  align-items: center;
}

.bottom-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
  color: #64748B;
  font-size: 0.72rem;
  font-weight: 600;
  text-decoration: none;
  padding: 0.35rem 0;
  border-radius: 8px;
}

.bottom-nav-item i {
  font-size: 1.25rem;
}

.bottom-nav-item.active {
  color: var(--primary);
  font-weight: 700;
}

.bottom-nav-item.active i {
  color: var(--secondary);
}

.bottom-nav-center-btn {
  background: linear-gradient(135deg, var(--secondary) 0%, #059669 100%);
  color: #FFF !important;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  margin: -16px auto 0;
  box-shadow: 0 6px 16px rgba(16, 185, 129, 0.45);
  border: 3px solid #FFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem !important;
}

/* =========================================================
   MOBILE APP GRID
   ========================================================= */
.mobile-app-grid-section {
  display: none;
  padding: 1.25rem 0;
}

.mobile-grid-card-container {
  background: #FFF;
  border-radius: 20px;
  padding: 1.25rem 1rem;
  box-shadow: var(--card-shadow);
  border: 1px solid var(--border);
}

.mobile-grid-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.mobile-grid-header h3 {
  font-size: 1.05rem;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.mobile-grid-header a {
  font-size: 0.78rem;
  color: var(--secondary-hover);
  font-weight: 700;
}

.mobile-app-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.85rem 0.5rem;
  text-align: center;
}

.app-grid-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
}

.app-grid-icon-circle {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin-bottom: 0.4rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.app-grid-icon-circle.motor { background: #EEF2FF; color: #4F46E5; }
.app-grid-icon-circle.shop { background: #FEF3C7; color: #D97706; }
.app-grid-icon-circle.health { background: #FEE2E2; color: #DC2626; }
.app-grid-icon-circle.term { background: #E0E7FF; color: #1E3A8A; }
.app-grid-icon-circle.sip { background: #D1FAE5; color: #059669; }
.app-grid-icon-circle.permit { background: #E0F2FE; color: #0284C7; }
.app-grid-icon-circle.tax { background: #FCE7F3; color: #DB2777; }
.app-grid-icon-circle.gps { background: #CCFBF1; color: #0D9488; }

.app-grid-label {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--slate-700);
  line-height: 1.2;
}

/* =========================================================
   GALLERY SHOWCASE SECTION
   ========================================================= */
.gallery-section {
  background: var(--slate-50);
}

.gallery-filter-nav {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

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

.gallery-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--card-shadow);
  border: 1px solid var(--border);
  background: var(--white);
  cursor: pointer;
  transition: var(--transition);
}

.gallery-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--card-shadow-hover);
}

.gallery-img-wrapper {
  position: relative;
  width: 100%;
  height: 230px;
  overflow: hidden;
}

.gallery-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery-card:hover .gallery-img-wrapper img {
  transform: scale(1.08);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 34, 64, 0.05) 30%, rgba(6, 19, 36, 0.88) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.25rem;
  color: var(--white);
  transition: var(--transition);
}

.gallery-tag {
  align-self: flex-start;
  background: rgba(16, 185, 129, 0.9);
  color: var(--white);
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.gallery-caption {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
}

/* =========================================================
   GALLERY LIGHTBOX MODAL (FULLSCREEN)
   ========================================================= */
.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 19, 36, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.lightbox-close-btn {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #FFF;
  font-size: 1.35rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 100;
  transition: var(--transition);
}

.lightbox-close-btn:hover {
  background: rgba(239, 68, 68, 0.85);
  transform: scale(1.08) rotate(90deg);
}

.lightbox-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #FFF;
  font-size: 1.35rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 90;
  transition: var(--transition);
}

.lightbox-nav-btn:hover {
  background: var(--secondary);
  color: #FFF;
  transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
  left: 1.5rem;
}

.lightbox-next {
  right: 1.5rem;
}

.lightbox-content {
  position: relative;
  z-index: 10;
  max-width: 92vw;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.lightbox-img-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.lightbox-img {
  max-width: 88vw;
  max-height: 75vh;
  object-fit: contain;
  border-radius: 14px;
  display: block;
  animation: lightboxZoomIn 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes lightboxZoomIn {
  0% { transform: scale(0.92); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

.lightbox-info-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 800px;
  margin-top: 1rem;
  padding: 0.75rem 1.25rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #FFF;
}

.lightbox-tag {
  display: inline-block;
  background: var(--secondary);
  color: #FFF;
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
}

.lightbox-caption {
  font-size: 0.95rem;
  font-weight: 600;
  color: #F1F5F9;
}

.lightbox-counter {
  font-size: 0.85rem;
  color: #94A3B8;
  font-weight: 700;
}

/* =========================================================
   HEAD OFFICE GOOGLE MAP SECTION
   ========================================================= */
.map-section {
  position: relative;
  background: #FFF;
  border-top: 1px solid var(--border);
}

.map-container-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--card-shadow);
  border: 1px solid var(--border);
  background: #FFF;
}

.map-wrapper {
  position: relative;
  width: 100%;
  height: 420px;
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.map-overlay-card {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  max-width: 350px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: 18px;
  padding: 1.35rem;
  box-shadow: 0 12px 35px rgba(0,0,0,0.18);
  border: 1px solid rgba(255, 255, 255, 0.8);
  z-index: 10;
}

.map-overlay-card h4 {
  font-size: 1.1rem;
  color: var(--primary);
  margin-bottom: 0.35rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.map-overlay-card p {
  font-size: 0.82rem;
  color: var(--slate-600);
  line-height: 1.5;
  margin-bottom: 0.85rem;
}

.map-card-actions {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

/* =========================================================
   RESPONSIVE OVERRIDES (< 768px)
   ========================================================= */
@media (max-width: 1024px) {
  .hero-title { font-size: 2.75rem; }
  .stats-card-container { grid-template-columns: repeat(2, 1fr); }
  .quote-box-grid { grid-template-columns: 1fr; gap: 2rem; }
  .calc-box-card { grid-template-columns: 1fr; }
  .why-us-grid { grid-template-columns: repeat(2, 1fr); }
  .assam-banner { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  body {
    padding-bottom: var(--bottom-nav-height);
  }

  .topbar { display: none; }
  .desktop-nav-cta { display: none; }

  /* Slim Mobile Navbar */
  .navbar {
    padding: 0.35rem 0;
    box-shadow: 0 1px 10px rgba(11, 34, 64, 0.08);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: #FFFFFF;
    z-index: 99995;
  }

  .nav-container {
    padding: 0 0.85rem;
  }

  .nav-brand-group {
    gap: 0.5rem;
  }

  .brand-logo-wrap {
    gap: 0.5rem;
  }

  .brand-symbol {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    font-size: 1rem;
    box-shadow: 0 2px 6px rgba(11, 34, 64, 0.15);
  }

  .brand-logo-img {
    max-height: 30px;
    width: auto;
  }

  .brand-text h1 {
    font-size: 0.95rem;
    letter-spacing: 0.2px;
    line-height: 1.1;
    white-space: nowrap;
    margin: 0;
    font-weight: 800;
  }

  .brand-text p {
    font-size: 0.52rem;
    letter-spacing: 0.2px;
    margin: 0;
    line-height: 1;
    color: var(--slate-500);
  }

  /* Mobile Right Action Buttons (Call + Hamburger Menu) */
  .mobile-header-actions {
    display: flex;
    align-items: center;
    gap: 0.45rem;
  }

  .mobile-call-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.32rem 0.65rem;
    font-size: 0.72rem;
    font-weight: 700;
    border-radius: 9999px;
    background: linear-gradient(135deg, var(--secondary) 0%, #059669 100%);
    color: var(--white);
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
  }

  .mobile-menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #F1F5F9;
    border: 1px solid #CBD5E1;
    width: 34px;
    height: 34px;
    border-radius: 8px;
    font-size: 1rem;
    color: var(--primary);
    cursor: pointer;
    transition: var(--transition);
  }

  .mobile-menu-btn:active {
    background: #E2E8F0;
    transform: scale(0.95);
  }

  .mobile-bottom-nav { display: block; }
  .mobile-app-grid-section { display: block; }

  .slider-arrow { display: none; }

  /* Mobile Off-Canvas Drawer (100% Razor Sharp & Crisp) */
  .nav-drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(6, 19, 36, 0.75);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    z-index: 99990;
  }

  .nav-drawer-overlay.active {
    display: block;
  }

  .nav-links-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 82%;
    max-width: 320px;
    height: 100vh;
    background: #0B2240;
    flex-direction: column;
    align-items: flex-start;
    padding: 1.5rem;
    box-shadow: 10px 0 35px rgba(0, 0, 0, 0.6);
    transform: translate3d(-100%, 0, 0);
    -webkit-transform: translate3d(-100%, 0, 0);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 99999;
    overflow-y: auto;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    filter: none;
    -webkit-font-smoothing: antialiased;
  }

  .nav-links-wrapper.active {
    transform: translate3d(0, 0, 0);
    -webkit-transform: translate3d(0, 0, 0);
  }

  .drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .drawer-badge {
    color: var(--secondary);
    font-weight: 800;
    font-size: 0.95rem;
    letter-spacing: 1px;
  }

  .drawer-close {
    background: none;
    border: none;
    color: #94A3B8;
    font-size: 1.75rem;
    cursor: pointer;
    padding: 0.2rem;
  }

  .drawer-close:hover {
    color: #FFF;
  }

  .drawer-action {
    display: block;
    width: 100%;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }

  .drawer-action .btn {
    width: 100%;
  }

  .nav-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    width: 100%;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links li a {
    color: #F8FAFC;
    font-size: 1rem;
    font-weight: 600;
    padding: 0.9rem 0;
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    display: block;
    filter: none;
    text-shadow: none;
    letter-spacing: 0.3px;
  }

  .nav-links li a:hover, .nav-links li a.active {
    color: var(--secondary);
  }


  /* 1. Hero Mobile Sizing & Spacing: Increased height & clean padding/margins from all 4 sides */
  .hero-slider-section, .hero-slides-wrapper {
    min-height: 540px;
  }

  .hero-slide-overlay {
    background: linear-gradient(135deg, rgba(11, 34, 64, 0.93) 0%, rgba(12, 27, 51, 0.85) 60%, rgba(6, 19, 36, 0.92) 100%);
  }

  .hero-slide-content-container {
    padding: 2.25rem 1rem 3.5rem 1rem;
    margin: 0;
    width: 100%;
  }

  .hero-slide-text-box {
    margin: 0 auto;
    width: 100%;
  }

  .hero-badge {
    font-size: 0.72rem;
    padding: 0.3rem 0.75rem;
    margin-bottom: 0.75rem;
    gap: 0.35rem;
  }

  .hero-title {
    font-size: 1.65rem;
    line-height: 1.22;
    margin-bottom: 0.55rem;
  }

  .hero-subtitle {
    font-size: 0.82rem;
    line-height: 1.45;
    margin-bottom: 0.85rem;
  }

  .hero-features-pills {
    gap: 0.4rem;
    margin-bottom: 1.15rem;
  }

  .feature-pill {
    font-size: 0.72rem;
    padding: 0.3rem 0.6rem;
    gap: 0.35rem;
  }

  .hero-cta-group {
    flex-direction: column;
    gap: 0.55rem;
    width: 100%;
  }

  .hero-cta-group .btn {
    width: 100%;
    padding: 0.6rem 1rem;
    font-size: 0.82rem;
  }

  /* 2. Mobile Quick Service Grid Side Margin reduction */
  .mobile-app-grid-section {
    padding: 0.75rem 0;
  }

  .mobile-app-grid-section .container {
    padding: 0 0.5rem;
  }

  .mobile-grid-card-container {
    padding: 0.85rem 0.5rem;
    border-radius: 16px;
    margin: 0;
  }

  .mobile-app-grid {
    gap: 0.75rem 0.25rem;
  }

  .app-grid-icon-circle {
    width: 46px;
    height: 46px;
    font-size: 1.15rem;
    border-radius: 13px;
    margin-bottom: 0.25rem;
  }

  .app-grid-label {
    font-size: 0.65rem;
  }

  /* 3. Compact Calculator Section on Mobile */
  .calculator-section {
    padding: 2.25rem 0;
  }

  .calc-box-card {
    padding: 1.15rem 0.85rem;
    border-radius: 16px;
    gap: 1.25rem;
  }

  .calc-slider-group {
    margin-bottom: 1rem;
  }

  .calc-slider-header label {
    font-size: 0.8rem;
  }

  .calc-slider-val {
    font-size: 0.8rem;
    padding: 0.2rem 0.5rem;
  }

  .calc-results-panel {
    padding: 1.15rem 0.85rem;
    border-radius: 14px;
  }

  .calc-results-panel h3 {
    font-size: 1.05rem;
    margin-bottom: 0.85rem;
  }

  .calc-res-item {
    margin-bottom: 0.65rem;
    padding-bottom: 0.65rem;
  }

  .calc-res-label {
    font-size: 0.7rem;
  }

  .calc-res-amount {
    font-size: 1.25rem;
  }

  .calc-res-amount#res-total {
    font-size: 1.55rem !important;
  }

  /* Quote Box / Request Section */
  .quote-section-box {
    padding: 1.5rem 1.15rem;
    border-radius: 18px;
  }

  .quote-form-card {
    padding: 1.25rem 1rem;
  }

  .services-tabs-nav {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
    padding-bottom: 0.5rem;
    margin-bottom: 1.5rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .services-tabs-nav::-webkit-scrollbar { display: none; }

  .tab-btn {
    white-space: nowrap;
    padding: 0.5rem 0.85rem;
    font-size: 0.78rem;
    flex-shrink: 0;
  }

  /* Services Showcase: 2-Column Side-by-Side Grid on Mobile (1 next to another, below next, etc.) */
  .service-card-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.65rem;
  }

  .service-card {
    padding: 0.95rem 0.65rem;
    border-radius: 14px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .service-icon-box {
    width: 38px;
    height: 38px;
    font-size: 1.1rem;
    border-radius: 10px;
    margin-bottom: 0.5rem;
  }

  .service-card h3 {
    font-size: 0.88rem;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 0.3rem;
    color: var(--primary);
  }

  .service-card p {
    font-size: 0.68rem;
    line-height: 1.35;
    color: var(--slate-600);
    margin-bottom: 0.6rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .service-features-list {
    display: none;
  }

  .service-card-action .btn {
    padding: 0.38rem 0.4rem;
    font-size: 0.7rem;
    font-weight: 700;
    border-radius: 8px;
    width: 100%;
  }

  .stats-bar-section {
    margin-top: 1rem;
  }

  .stats-card-container {
    grid-template-columns: 1fr 1fr;
    gap: 0.85rem;
    padding: 1.15rem 0.85rem;
  }

  .stat-icon {
    width: 42px;
    height: 42px;
    font-size: 1.15rem;
  }

  .stat-info h4 {
    font-size: 1.15rem;
  }

  .stat-info p {
    font-size: 0.72rem;
  }

  .why-us-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.85rem;
  }

  .why-card {
    padding: 1.15rem 0.75rem;
  }

  .assam-banner {
    padding: 1.75rem 1.25rem;
  }

  .assam-districts-grid {
    grid-template-columns: 1fr;
  }

  /* 4. Gallery on Mobile: 2-Column Side-by-Side Grid (1 next to another, below next, etc.) */
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.65rem;
  }

  .gallery-img-wrapper {
    height: 145px;
  }

  .gallery-overlay {
    padding: 0.65rem 0.5rem;
  }

  .gallery-tag {
    font-size: 0.58rem;
    padding: 0.15rem 0.45rem;
    margin-bottom: 0.2rem;
  }

  .gallery-caption {
    font-size: 0.72rem;
    line-height: 1.25;
    font-weight: 700;
  }

  /* Lightbox Mobile Adjustments */
  .lightbox-close-btn {
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    font-size: 1.15rem;
  }

  .lightbox-nav-btn {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
  }

  .lightbox-prev { left: 0.5rem; }
  .lightbox-next { right: 0.5rem; }

  .lightbox-img {
    max-width: 94vw;
    max-height: 68vh;
  }

  .lightbox-info-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
    padding: 0.6rem 0.85rem;
    margin-top: 0.75rem;
    max-width: 94vw;
  }

  .lightbox-counter {
    align-self: flex-end;
    font-size: 0.75rem;
  }

  .lightbox-caption {
    font-size: 0.82rem;
  }

  /* 5. Google Map on Mobile */
  .map-wrapper {
    height: 300px;
  }

  .map-overlay-card {
    position: static;
    max-width: 100%;
    margin-bottom: 1rem;
    box-shadow: none;
    border: 1px solid var(--border);
  }

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

  .floating-actions {
    bottom: 5.25rem;
    right: 1rem;
    gap: 0.5rem;
  }

  .fab-btn {
    width: 46px;
    height: 46px;
    font-size: 1.2rem;
  }
}

/* =========================================================
   MOBILE BOTTOM NAVIGATION BAR
   ========================================================= */
.mobile-bottom-nav {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: #FFFFFF;
  border-top: 1px solid #E2E8F0;
  box-shadow: 0 -4px 22px rgba(11, 34, 64, 0.12);
  z-index: 99980;
  padding: 0 0.5rem;
}

.bottom-nav-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1.2fr 1fr 1fr;
  align-items: center;
  height: 100%;
  max-width: 500px;
  margin: 0 auto;
}

.bottom-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #64748B;
  text-decoration: none;
  font-size: 0.68rem;
  font-weight: 600;
  gap: 0.2rem;
  transition: var(--transition);
  padding: 0.25rem 0;
}

.bottom-nav-item i {
  font-size: 1.15rem;
  transition: transform 0.2s ease;
}

.bottom-nav-item.active {
  color: var(--primary);
  font-weight: 700;
}

.bottom-nav-item.active i {
  color: var(--secondary);
  transform: translateY(-2px);
}

.bottom-nav-center-btn {
  position: relative;
  top: -14px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary) 0%, #163864 100%);
  border: 3px solid #FFFFFF;
  box-shadow: 0 4px 15px rgba(11, 34, 64, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  color: #FFF;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  overflow: hidden;
  padding: 6px;
}

.bottom-nav-center-btn:active {
  transform: scale(0.92);
}

.bottom-nav-logo-img {
  max-width: 34px;
  max-height: 34px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  display: block;
}

.bottom-nav-symbol {
  font-size: 1.35rem;
  font-weight: 900;
  color: var(--secondary);
  font-family: 'Outfit', sans-serif;
  line-height: 1;
}

@media (max-width: 768px) {
  .mobile-bottom-nav {
    display: block;
  }
}

