/* ==========================================================================
   VARANASI DMC — OFFICIAL B2B GROUND TOUR OPERATOR & TRAVEL PLATFORM
   POWERED BY KASHI VARANASI TOURS AND TRAVELS
   LUXURY SPIRITUAL REDESIGN (UI/UX AUDIT & POLISH 2026)
   ========================================================================== */

:root {
  /* Sacred Spiritual Color Palette */
  --color-primary: #EA580C;          /* Radiant Kashi Sunrise Saffron */
  --color-primary-dark: #C2410C;     /* Deep Temple Ochre / Terracotta */
  --color-primary-light: #FB923C;    /* Golden Ghat Glow */
  --color-primary-subtle: #FFF7ED;   /* Sandstone Saffron Tint */
  
  --color-secondary: #0284C7;        /* Sacred Holy Ganga Azure */
  --color-secondary-dark: #0369A1;
  --color-secondary-subtle: #F0F9FF;
  
  --color-gold: #D97706;             /* Kashi Vishwanath Golden Spire */
  --color-gold-light: #FBBF24;
  --color-gold-dark: #B45309;
  
  --color-dark: #0B0806;             /* Celestial Obsidian / Ghat Midnight */
  --color-dark-elevated: #16120C;
  --color-dark-surface: #221B13;
  
  --color-surface: #FFFFFF;
  --color-surface-warm: #FAF8F5;     /* Holy Sandstone Silk White */
  --color-surface-alt: #F3ECE1;
  
  --color-text: #1E293B;             /* Charcoal Slate */
  --color-text-muted: #64748B;
  --color-text-light: #94A3B8;
  
  --color-border: #E2E8F0;
  --color-border-warm: #EADFD0;
  --color-border-subtle: rgba(217, 83, 30, 0.12);
  
  /* Modern Elevation Shadows */
  --shadow-sm: 0 1px 3px 0 rgba(11, 8, 6, 0.06);
  --shadow-md: 0 4px 10px -1px rgba(11, 8, 6, 0.08), 0 2px 6px -2px rgba(11, 8, 6, 0.06);
  --shadow-lg: 0 14px 24px -4px rgba(11, 8, 6, 0.1), 0 6px 12px -4px rgba(11, 8, 6, 0.06);
  --shadow-xl: 0 24px 38px -6px rgba(11, 8, 6, 0.14), 0 10px 16px -6px rgba(11, 8, 6, 0.08);
  --shadow-glow: 0 0 25px rgba(234, 88, 12, 0.35);
  
  /* Radius */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-xl: 26px;
  --radius-full: 9999px;
  
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;
}

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

html {
  font-family: var(--font-sans);
  font-size: 16px;
  color: var(--color-text);
  background-color: var(--color-surface-warm);
  line-height: 1.5;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  overflow-x: hidden;
  max-width: 100%;
  color: var(--color-text);
  background: var(--color-surface-warm);
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.container {
  width: 100%;
  max-width: 1260px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

/* Typography Hierarchy */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  color: var(--color-dark);
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.015em;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1.1rem;
  border-radius: var(--radius-full);
  background: rgba(234, 88, 12, 0.08);
  border: 1px solid rgba(234, 88, 12, 0.22);
  color: var(--color-primary-dark);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.85rem;
}

.section-title {
  font-size: clamp(2rem, 3.8vw, 2.9rem);
  color: var(--color-dark);
  margin-bottom: 1rem;
}

.section-desc {
  font-size: 1.08rem;
  color: var(--color-text-muted);
  max-width: 720px;
  line-height: 1.7;
}

.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.85rem 1.75rem;
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
  position: relative;
}

.btn-primary {
  background: linear-gradient(135deg, #EA580C 0%, #C2410C 100%);
  color: #FFFFFF;
  box-shadow: 0 4px 16px rgba(234, 88, 12, 0.38);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #F97316 0%, #EA580C 100%);
  box-shadow: 0 8px 25px rgba(234, 88, 12, 0.5);
  transform: translateY(-2px);
  color: #FFFFFF;
}

.btn-secondary {
  background: var(--color-secondary-dark);
  color: #FFFFFF;
  box-shadow: 0 4px 14px rgba(2, 132, 199, 0.3);
}

.btn-secondary:hover {
  background: #0284C7;
  transform: translateY(-2px);
  color: #FFFFFF;
}

.btn-outline {
  background: rgba(255, 255, 255, 0.05);
  color: var(--color-dark);
  border: 1.5px solid var(--color-border-warm);
}

.btn-outline:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
  background: #FFF7ED;
  transform: translateY(-2px);
}

.btn-gold {
  background: linear-gradient(135deg, #D97706 0%, #B45309 100%);
  color: #FFFFFF;
  box-shadow: 0 4px 16px rgba(217, 119, 6, 0.35);
}

.btn-gold:hover {
  background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(217, 119, 6, 0.45);
}

.btn-sm { padding: 0.55rem 1.15rem; font-size: 0.85rem; border-radius: 8px; }
.btn-block { width: 100%; }

/* --- TOP BAR --- */
.top-bar {
  background: #080604;
  color: #CBD5E1;
  font-size: 0.82rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.55rem 0;
  gap: 1rem;
}

.top-bar-left, .top-bar-right {
  display: flex;
  align-items: center;
  gap: 1.35rem;
}

.top-item {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  white-space: nowrap;
}

.top-item svg {
  color: #FB923C;
  flex-shrink: 0;
}

.top-badge-official {
  background: rgba(234, 88, 12, 0.16);
  color: #FDBA74;
  border: 1px solid rgba(234, 88, 12, 0.4);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  padding: 3px 11px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.top-badge-official::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22C55E;
  display: inline-block;
  box-shadow: 0 0 8px #22C55E;
  animation: pulseDot 2s infinite;
}

@keyframes pulseDot {
  0% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
  100% { opacity: 1; transform: scale(1); }
}

/* --- MAIN NAVBAR --- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(217, 83, 30, 0.12);
  box-shadow: 0 4px 25px rgba(11, 8, 6, 0.04);
  transition: all 0.3s ease;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 80px;
  gap: 1.5rem;
}

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

/* Luxury Vector Logo Emblem */
.brand-emblem-svg {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, #EA580C 0%, #9A3412 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(234, 88, 12, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.25);
  flex-shrink: 0;
}

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

.brand-title {
  font-size: 1.28rem;
  font-weight: 800;
  color: var(--color-dark);
  line-height: 1.1;
  letter-spacing: -0.01em;
  font-family: var(--font-serif);
}

.brand-subtitle {
  font-size: 0.7rem;
  color: var(--color-primary-dark);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 3px;
}

.nav-menu-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: clamp(0.5rem, 1.1vw, 1.3rem);
  list-style: none;
}

.nav-link {
  font-weight: 600;
  font-size: 0.9rem;
  color: #334155;
  padding: 0.5rem 0.65rem;
  border-radius: 6px;
  position: relative;
  white-space: nowrap;
}

.nav-link:hover {
  color: var(--color-primary-dark);
  background: rgba(234, 88, 12, 0.06);
}

.nav-link.active {
  color: var(--color-primary-dark);
  background: rgba(234, 88, 12, 0.1);
  font-weight: 700;
}

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

.btn-nav-b2b {
  padding: 0.6rem 1.25rem;
  border-radius: 9px;
  background: transparent;
  color: var(--color-secondary-dark);
  border: 1.5px solid var(--color-secondary-dark);
  font-size: 0.88rem;
  font-weight: 700;
  white-space: nowrap;
}

.btn-nav-b2b:hover {
  background: var(--color-secondary-dark);
  color: #FFFFFF;
}

.btn-nav-primary {
  padding: 0.6rem 1.25rem;
  border-radius: 9px;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: #FFFFFF;
  font-size: 0.88rem;
  font-weight: 700;
  box-shadow: 0 4px 14px rgba(234, 88, 12, 0.35);
  white-space: nowrap;
}

.btn-nav-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(234, 88, 12, 0.45);
}

/* Mobile Toggle */
.mobile-menu-toggle {
  display: none;
  background: #F8FAFC;
  border: 1px solid #CBD5E1;
  border-radius: 9px;
  cursor: pointer;
  padding: 0.5rem;
  color: #1E293B;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* --- DESKTOP DRAWER SUPPRESSION --- */
@media (min-width: 1041px) {
  .mobile-drawer,
  .mobile-drawer-overlay,
  .mobile-menu-toggle {
    display: none !important;
    visibility: hidden !important;
    pointer-events: none !important;
  }
}

/* --- MOBILE DRAWER & BACKDROP OVERLAY --- */
.mobile-drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(11, 8, 6, 0.7);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 99998;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

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

.mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 86%;
  max-width: 360px;
  height: 100vh;
  height: 100dvh;
  background: #FFFFFF;
  z-index: 99999;
  display: flex;
  flex-direction: column;
  box-shadow: -10px 0 35px rgba(0, 0, 0, 0.3);
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(0.16, 1, 0.3, 1);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

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

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem;
  border-bottom: 1px solid #F1F5F9;
  background: #FAFAFA;
}

.drawer-close {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #F1F5F9;
  border: none;
  font-size: 1.6rem;
  line-height: 1;
  color: #475569;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.drawer-nav {
  padding: 1rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  flex: 1;
}

.drawer-link {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.75rem 0.85rem;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  color: #334155;
}

.drawer-link svg {
  color: var(--color-primary);
  flex-shrink: 0;
}

.drawer-link:hover {
  background: #FFF7ED;
  color: var(--color-primary-dark);
  transform: translateX(4px);
}

.drawer-footer {
  padding: 1.25rem;
  border-top: 1px solid #F1F5F9;
  background: #FAFAFA;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.btn-drawer-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0.85rem 1rem;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: #FFFFFF;
  font-weight: 700;
  border-radius: 8px;
  font-size: 0.95rem;
  text-align: center;
}

.btn-drawer-b2b {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0.75rem 1rem;
  background: var(--color-secondary-dark);
  color: #FFFFFF;
  font-weight: 700;
  border-radius: 8px;
  font-size: 0.9rem;
  text-align: center;
}

.drawer-contact-pills {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  margin-top: 0.25rem;
}

.drawer-call-btn, .drawer-whatsapp-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.7rem 0.5rem;
  border-radius: 7px;
  font-size: 0.82rem;
  font-weight: 700;
}

.drawer-call-btn { background: #1E293B; color: #FFFFFF; }
.drawer-whatsapp-btn { background: #16A34A; color: #FFFFFF; }

/* --- HERO SECTION (LUXURY SPIRITUAL ATMOSPHERE) --- */
.hero-wrapper {
  background: 
    radial-gradient(circle at 80% 20%, rgba(234, 88, 12, 0.22) 0%, transparent 45%),
    radial-gradient(circle at 10% 85%, rgba(2, 132, 199, 0.15) 0%, transparent 45%),
    linear-gradient(135deg, #0B0806 0%, #1A130C 50%, #0A0805 100%);
  color: #FFFFFF;
  padding: 5rem 0 5.5rem 0;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.18fr 0.82fr;
  gap: 3.5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-badge-authority {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: rgba(251, 146, 60, 0.1);
  border: 1px solid rgba(251, 146, 60, 0.3);
  border-radius: var(--radius-full);
  padding: 7px 18px;
  font-size: 0.82rem;
  color: #FDBA74;
  font-weight: 700;
  margin-bottom: 1.35rem;
  backdrop-filter: blur(8px);
}

.hero-title {
  font-size: clamp(2.3rem, 4.3vw, 3.5rem);
  line-height: 1.15;
  color: #FFFFFF;
  margin-bottom: 1.25rem;
}

.hero-title .highlight {
  color: #FDBA74;
  background: linear-gradient(135deg, #FB923C 0%, #F59E0B 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-desc {
  font-size: 1.1rem;
  color: #E2E8F0;
  line-height: 1.75;
  margin-bottom: 1.85rem;
}

.hero-features-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.95rem;
  margin-bottom: 2.25rem;
}

.hero-feature-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.92rem;
  color: #F1F5F9;
  font-weight: 500;
}

.hero-feature-item svg {
  color: #4ADE80;
  flex-shrink: 0;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* --- QUOTE & ENQUIRY ENGINE CARD --- */
.quote-box {
  background: rgba(255, 255, 255, 0.98);
  border-radius: var(--radius-xl);
  padding: 2.25rem;
  box-shadow: 0 25px 50px -12px rgba(11, 8, 6, 0.25);
  border: 1px solid rgba(217, 83, 30, 0.16);
  position: relative;
}

.quote-tab-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #F1F5F9;
  border-radius: 12px;
  padding: 4px;
  margin-bottom: 1.5rem;
}

.quote-tab-btn {
  padding: 10px 14px;
  border-radius: 9px;
  border: none;
  background: transparent;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--color-text-muted);
  cursor: pointer;
  text-align: center;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.quote-tab-btn.active {
  background: #FFFFFF;
  color: var(--color-dark);
  box-shadow: var(--shadow-sm);
}

.quote-tab-btn.tab-b2b.active {
  color: var(--color-primary-dark);
}

.quote-tab-pane {
  display: none;
}

.quote-tab-pane.active {
  display: block;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

.form-group {
  margin-bottom: 1.1rem;
}

.form-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: #334155;
  margin-bottom: 0.35rem;
}

.form-control {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1.5px solid #E2E8F0;
  border-radius: 10px;
  font-family: inherit;
  font-size: 0.92rem;
  color: var(--color-dark);
  background-color: #FAFAFA;
  transition: all 0.2s ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--color-primary);
  background-color: #FFFFFF;
  box-shadow: 0 0 0 3px rgba(234, 88, 12, 0.15);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.95rem;
}

/* Trust Badges under Form */
.form-trust-strip {
  display: flex;
  justify-content: space-between;
  margin-top: 1rem;
  font-size: 0.76rem;
  color: #64748B;
  border-top: 1px solid #F1F5F9;
  padding-top: 0.75rem;
}

.form-trust-item {
  display: flex;
  align-items: center;
  gap: 4px;
}

/* --- STATS STRIP --- */
.stats-strip {
  background: #FFFFFF;
  border-bottom: 1px solid var(--color-border-warm);
  padding: 2.75rem 0;
}

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

.stat-num {
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--color-primary-dark);
  font-family: var(--font-serif);
  line-height: 1;
  margin-bottom: 0.4rem;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  font-weight: 600;
}

/* --- SECTION PADDING --- */
.section {
  padding: 5.5rem 0;
}

.bg-alt {
  background-color: var(--color-surface-alt);
}

.bg-white {
  background-color: #FFFFFF;
}

.bg-dark {
  background-color: var(--color-dark);
  color: #FFFFFF;
}

/* --- CARDS & CIRCUITS --- */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.package-card {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border-warm);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}

.package-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(234, 88, 12, 0.4);
}

.package-card-header {
  background: linear-gradient(135deg, #17110B 0%, #2A1F16 100%);
  color: #FFFFFF;
  padding: 1.5rem;
  position: relative;
}

.package-duration {
  display: inline-block;
  background: linear-gradient(135deg, #EA580C 0%, #C2410C 100%);
  color: #FFFFFF;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 4px 11px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.package-card-title {
  font-size: 1.25rem;
  color: #FFFFFF;
  margin-bottom: 0.4rem;
}

.package-card-subtitle {
  font-size: 0.85rem;
  color: #FDBA74;
}

.package-card-body {
  padding: 1.65rem 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.package-highlights {
  list-style: none;
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
}

.package-highlights li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.92rem;
  color: #475569;
}

.package-highlights svg {
  color: var(--color-primary);
  flex-shrink: 0;
  margin-top: 3px;
}

.package-card-footer {
  padding-top: 1.25rem;
  border-top: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.package-net-badge {
  font-size: 0.8rem;
  font-weight: 700;
  color: #0284C7;
  background: rgba(2, 132, 199, 0.1);
  padding: 4px 10px;
  border-radius: 6px;
}

/* --- SERVICES GRID --- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.85rem;
  margin-top: 3rem;
}

.service-box {
  background: #FFFFFF;
  padding: 2.25rem 1.85rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border-warm);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-box:hover {
  border-color: rgba(234, 88, 12, 0.4);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.service-icon {
  width: 58px;
  height: 58px;
  border-radius: 15px;
  background: #FFF7ED;
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.35rem;
  box-shadow: 0 4px 12px rgba(234, 88, 12, 0.12);
}

.service-title {
  font-size: 1.22rem;
  color: var(--color-dark);
  margin-bottom: 0.75rem;
}

.service-desc {
  font-size: 0.92rem;
  color: var(--color-text-muted);
  line-height: 1.65;
}

/* --- B2B WHY CHOOSE US GRID --- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.why-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius-lg);
  padding: 1.85rem;
  transition: all 0.3s;
}

.why-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: #FDBA74;
  transform: translateY(-4px);
}

.why-num {
  font-size: 2.25rem;
  font-weight: 900;
  color: #FDBA74;
  margin-bottom: 0.75rem;
}

.why-title {
  font-size: 1.15rem;
  color: #FFFFFF;
  margin-bottom: 0.6rem;
}

.why-desc {
  font-size: 0.88rem;
  color: #CBD5E1;
  line-height: 1.65;
}

/* --- FOOTER --- */
.site-footer {
  background: #080604;
  color: #94A3B8;
  padding-top: 5rem;
  padding-bottom: 2rem;
  font-size: 0.9rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

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

.footer-brand p {
  margin-top: 1.1rem;
  line-height: 1.65;
  font-size: 0.88rem;
}

.footer-col h4 {
  font-size: 1.05rem;
  color: #FFFFFF;
  margin-bottom: 1.35rem;
  font-weight: 700;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-links a:hover {
  color: #FB923C;
  transform: translateX(3px);
  display: inline-block;
}

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

/* --- DUAL FLOATING QUICK ACTION HUB --- */
.floating-action-hub {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 10px;
}

.floating-helpline-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #0B0806;
  color: #FFFFFF;
  padding: 10px 18px;
  border-radius: var(--radius-full);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.15);
  font-weight: 700;
  font-size: 0.88rem;
  transition: all 0.25s ease;
}

.floating-helpline-btn:hover {
  background: var(--color-primary-dark);
  transform: translateY(-2px);
  color: #FFFFFF;
}

.floating-whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #16A34A;
  color: #FFFFFF;
  padding: 10px 18px;
  border-radius: var(--radius-full);
  box-shadow: 0 8px 25px rgba(22, 163, 74, 0.35);
  font-weight: 700;
  font-size: 0.88rem;
  transition: all 0.25s ease;
}

.floating-whatsapp-btn:hover {
  background: #15803D;
  transform: translateY(-2px);
  color: #FFFFFF;
}

/* --- TOAST CONTAINER --- */
#toastContainer {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 99999;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.toast {
  background: #0B0806;
  color: #FFFFFF;
  padding: 14px 20px;
  border-radius: var(--radius-md);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.92rem;
  border-left: 4px solid var(--color-primary);
  animation: slideInRight 0.3s ease;
  max-width: 380px;
}

@keyframes slideInRight {
  from { opacity: 0; transform: translateX(50px); }
  to { opacity: 1; transform: translateX(0); }
}

/* --- BREADCRUMBS & SEO COMPONENTS --- */
.breadcrumb-nav {
  padding: 1rem 0;
  background: #FAF8F5;
  border-bottom: 1px solid var(--color-border-warm);
  font-size: 0.85rem;
}

.breadcrumb-list {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  list-style: none;
  flex-wrap: wrap;
}

.breadcrumb-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-text-muted);
}

.breadcrumb-item a {
  color: var(--color-primary-dark);
  font-weight: 600;
}

.breadcrumb-item.active {
  color: var(--color-dark);
  font-weight: 700;
}

.data-table-wrap {
  width: 100%;
  overflow-x: auto;
  margin: 1.5rem 0;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border-warm);
  background: #FFFFFF;
  box-shadow: var(--shadow-sm);
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 0.92rem;
}

.data-table th {
  background: #0B0806;
  color: #FFFFFF;
  padding: 0.9rem 1.25rem;
  font-weight: 700;
  font-family: var(--font-sans);
}

.data-table td {
  padding: 0.9rem 1.25rem;
  border-bottom: 1px solid #F1F5F9;
  color: #334155;
}

.data-table tr:last-child td {
  border-bottom: none;
}

.data-table tr:nth-child(even) {
  background: #FAF8F5;
}

.content-callout {
  background: linear-gradient(135deg, #FFF7ED 0%, #FFEDD5 100%);
  border-left: 4px solid var(--color-primary);
  border-radius: var(--radius-md);
  padding: 1.35rem 1.65rem;
  margin: 1.85rem 0;
}

.content-callout h4 {
  font-size: 1.1rem;
  color: var(--color-primary-dark);
  margin-bottom: 0.35rem;
}

.content-callout p {
  font-size: 0.92rem;
  color: #431407;
  line-height: 1.65;
}

.faq-card {
  background: #FFFFFF;
  border: 1px solid var(--color-border-warm);
  border-radius: var(--radius-md);
  margin-bottom: 0.85rem;
  overflow: hidden;
  transition: all 0.2s ease;
}

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

.faq-header {
  padding: 1.2rem 1.45rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-dark);
  background: #FFFFFF;
  border: none;
  width: 100%;
  text-align: left;
}

.faq-header svg {
  color: var(--color-primary);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-body {
  padding: 0 1.45rem 1.35rem 1.45rem;
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.65;
  display: block;
}

.rating-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(234, 88, 12, 0.1);
  color: var(--color-primary-dark);
  padding: 4px 14px;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
}

/* --- RESPONSIVE MEDIA QUERIES --- */
@media (max-width: 1040px) {
  .nav-container { min-height: 72px; }
  .nav-menu-wrapper { display: none !important; }
  .btn-nav-b2b { display: none; }
  .mobile-menu-toggle { display: flex; }
}

@media (max-width: 992px) {
  .hero-grid { grid-template-columns: 1fr; gap: 2.75rem; }
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .top-bar-inner { padding: 0.45rem 0; }
  .top-bar-left .top-item:not(:first-child) { display: none; }
  .top-bar-right .top-item:nth-child(2) { display: none; }
  .brand-title { font-size: 1.1rem; }
  .brand-subtitle { font-size: 0.65rem; }
}

@media (max-width: 640px) {
  .section { padding: 3.75rem 0; }
  .hero-wrapper { padding: 3.75rem 0 4rem 0; }
  .hero-features-list { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .cards-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .quote-box { padding: 1.5rem 1.25rem; border-radius: 18px; }
  
  .floating-action-hub {
    bottom: 16px;
    left: 16px;
    right: 16px;
    justify-content: space-between;
  }
  .floating-helpline-btn, .floating-whatsapp-btn {
    padding: 8px 12px;
    font-size: 0.8rem;
    flex: 1;
    justify-content: center;
  }

  input[type="text"],
  input[type="email"],
  input[type="tel"],
  input[type="date"],
  select,
  textarea {
    font-size: 16px !important;
  }
}
