/**
 * Shirdi DMC - Official B2B Stylesheet
 * A Unit of KV Tours Pvt. Ltd.
 * Premium, Mobile-First, Fast-Loading
 */

:root {
  --primary-navy: #0F172A;
  --secondary-navy: #1E293B;
  --slate-dark: #334155;
  --slate-medium: #64748B;
  --slate-light: #94A3B8;
  --bg-light: #F8FAFC;
  --bg-card: #FFFFFF;
  --bg-alt: #F1F5F9;
  
  --gold-light: #FDE047;
  --gold-primary: #F59E0B;
  --gold-dark: #D97706;
  --saffron: #EA580C;
  --saffron-dark: #C2410C;
  
  --green-whatsapp: #25D366;
  --green-dark: #16A34A;
  --accent-blue: #0284C7;
  
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 14px rgba(15,23,42,0.08);
  --shadow-lg: 0 10px 25px rgba(15,23,42,0.12);
  --shadow-xl: 0 20px 40px rgba(15,23,42,0.16);

  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --font-heading: 'Cinzel', 'Georgia', 'Playfair Display', serif;
}

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

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

body {
  font-family: var(--font-sans);
  color: var(--secondary-navy);
  background-color: var(--bg-light);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease, opacity 0.2s ease;
}

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

ul {
  list-style: none;
}

/* Container */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  color: var(--primary-navy);
  line-height: 1.25;
  font-weight: 700;
}

h1 {
  font-size: 2.35rem;
  margin-bottom: 1rem;
}

h2 {
  font-size: 1.85rem;
  margin-bottom: 0.85rem;
}

h3 {
  font-size: 1.35rem;
  margin-bottom: 0.5rem;
}

p {
  margin-bottom: 1rem;
  color: var(--slate-dark);
}

.text-gold { color: var(--gold-primary); }
.text-saffron { color: var(--saffron); }
.text-navy { color: var(--primary-navy); }
.text-muted { color: var(--slate-medium); }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.25s ease;
  text-align: center;
  white-space: nowrap;
}

.btn-sm {
  padding: 8px 16px;
  font-size: 0.85rem;
}

.btn-lg {
  padding: 15px 32px;
  font-size: 1.05rem;
  border-radius: var(--radius-md);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
  color: #FFFFFF;
  box-shadow: 0 4px 12px rgba(217, 119, 6, 0.3);
}

.btn-gold:hover {
  background: linear-gradient(135deg, #FBBF24, var(--gold-primary));
  box-shadow: 0 6px 16px rgba(217, 119, 6, 0.4);
  transform: translateY(-2px);
  color: #FFFFFF;
}

.btn-saffron {
  background: linear-gradient(135deg, var(--saffron), var(--saffron-dark));
  color: #FFFFFF;
  box-shadow: 0 4px 12px rgba(234, 88, 12, 0.3);
}

.btn-saffron:hover {
  background: linear-gradient(135deg, #FB923C, var(--saffron));
  transform: translateY(-2px);
  color: #FFFFFF;
}

.btn-navy {
  background: var(--primary-navy);
  color: #FFFFFF;
}

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

.btn-whatsapp {
  background-color: var(--green-whatsapp);
  color: #FFFFFF;
}

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

.btn-outline-white {
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.7);
  color: #FFFFFF;
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #FFFFFF;
  color: #FFFFFF;
}

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

.btn-outline-navy:hover {
  background: var(--primary-navy);
  color: #FFFFFF;
}

/* TOP CONTACT BAR */
.top-bar {
  background-color: var(--primary-navy);
  color: #E2E8F0;
  font-size: 0.82rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 7px 0;
}

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

.top-bar-left {
  display: flex;
  align-items: center;
  gap: 18px;
}

.top-bar-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.top-bar-item a:hover {
  color: var(--gold-primary);
}

.top-bar-badge {
  background: rgba(245, 158, 11, 0.15);
  color: var(--gold-light);
  border: 1px solid rgba(245, 158, 11, 0.3);
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.3px;
}

.top-bar-right {
  display: flex;
  align-items: center;
  gap: 15px;
}

/* MAIN HEADER & NAVIGATION */
.main-header {
  background-color: #FFFFFF;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.3s ease;
}

.main-header.scrolled {
  box-shadow: var(--shadow-md);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.brand-logo {
  display: flex;
  align-items: center;
  height: 60px;
}

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

/* Desktop Nav */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav-item {
  position: relative;
}

.nav-link {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--secondary-navy);
  padding: 10px 4px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: color 0.2s ease;
}

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

/* Dropdown */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 250px;
  background-color: #FFFFFF;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.25s ease;
  border: 1px solid #E2E8F0;
  z-index: 1100;
}

.nav-item:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item {
  display: block;
  padding: 9px 20px;
  font-size: 0.88rem;
  color: var(--secondary-navy);
  font-weight: 500;
  transition: background 0.15s ease, color 0.15s ease;
}

.dropdown-item:hover {
  background-color: #FEF3C7;
  color: var(--gold-dark);
  padding-left: 24px;
}

/* Header CTAs */
.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--primary-navy);
  cursor: pointer;
  padding: 6px;
}

/* Offcanvas Mobile Menu */
.mobile-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.7);
  backdrop-filter: blur(4px);
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

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

.mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 320px;
  max-width: 85vw;
  height: 100%;
  background: #FFFFFF;
  z-index: 2001;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  box-shadow: -5px 0 25px rgba(0,0,0,0.15);
}

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

.drawer-header {
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #E2E8F0;
}

.drawer-header .brand-logo img {
  height: 44px;
}

.close-drawer {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--slate-dark);
  cursor: pointer;
}

.drawer-menu {
  padding: 15px 20px;
  flex: 1;
}

.drawer-menu li {
  border-bottom: 1px solid #F1F5F9;
}

.drawer-menu a {
  display: block;
  padding: 12px 0;
  font-weight: 600;
  color: var(--secondary-navy);
  font-size: 0.95rem;
}

.drawer-menu a:hover, .drawer-menu a.active {
  color: var(--gold-dark);
}

.drawer-submenu {
  padding-left: 15px;
  padding-bottom: 10px;
}

.drawer-submenu a {
  padding: 6px 0;
  font-size: 0.88rem;
  color: var(--slate-dark);
  font-weight: 500;
}

.drawer-footer {
  padding: 20px;
  background: var(--bg-alt);
  border-top: 1px solid #E2E8F0;
}

/* HERO SECTION */
.hero-section {
  position: relative;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.92) 0%, rgba(30, 41, 59, 0.88) 100%), 
              url('../images/hero-shirdi-bg.svg') center/cover no-repeat;
  color: #FFFFFF;
  padding: 70px 0 80px;
  overflow: hidden;
}

.hero-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 10px;
  background: linear-gradient(90deg, var(--gold-primary), var(--saffron), var(--gold-light));
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.95fr;
  gap: 45px;
  align-items: center;
}

.hero-badge-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 15px;
}

.badge-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.3px;
}

.badge-tag-gold {
  background: rgba(245, 158, 11, 0.2);
  color: var(--gold-light);
  border: 1px solid rgba(245, 158, 11, 0.4);
}

.badge-tag-saffron {
  background: rgba(234, 88, 12, 0.2);
  color: #FFEDD5;
  border: 1px solid rgba(234, 88, 12, 0.4);
}

.hero-title {
  color: #FFFFFF;
  font-size: 2.65rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 15px;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: #CBD5E1;
  margin-bottom: 25px;
  line-height: 1.55;
}

.hero-features-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 30px;
}

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

.hero-feature-item svg {
  color: var(--gold-primary);
  flex-shrink: 0;
}

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

/* Quick B2B Quote Card */
.quote-card {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  padding: 30px;
  color: var(--secondary-navy);
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.quote-card-header {
  margin-bottom: 20px;
  text-align: center;
}

.quote-card-header h3 {
  font-size: 1.35rem;
  color: var(--primary-navy);
  margin-bottom: 4px;
}

.quote-card-header p {
  font-size: 0.85rem;
  color: var(--slate-medium);
  margin-bottom: 0;
}

/* FORMS */
.form-group {
  margin-bottom: 14px;
}

.form-label {
  display: block;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--slate-dark);
  margin-bottom: 5px;
}

.form-control {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid #CBD5E1;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-family: inherit;
  color: var(--secondary-navy);
  background-color: #FFFFFF;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--gold-primary);
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.18);
}

.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.form-row-3 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px;
}

/* Honeypot field for bot suppression */
.hidden-hp {
  display: none !important;
  visibility: hidden !important;
}

/* Trust Stats Bar */
.trust-stats-bar {
  background-color: #FFFFFF;
  padding: 35px 0;
  border-bottom: 1px solid #E2E8F0;
  box-shadow: var(--shadow-sm);
}

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

.stat-item {
  padding: 10px;
}

.stat-number {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--gold-dark);
  line-height: 1.1;
  margin-bottom: 4px;
}

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

/* SECTION COMMONS */
.section {
  padding: 70px 0;
}

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

.section-header {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 50px;
}

.section-pretitle {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--gold-dark);
  letter-spacing: 1.5px;
  margin-bottom: 8px;
}

.section-title {
  font-size: 2.2rem;
  margin-bottom: 12px;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--slate-medium);
  line-height: 1.6;
}

/* CARD GRIDS */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

/* SERVICE & PACKAGE CARDS */
.card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  border: 1px solid #E2E8F0;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  display: flex;
  flex-direction: column;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: #CBD5E1;
}

.card-img-wrapper {
  position: relative;
  height: 200px;
  overflow: hidden;
  background-color: #E2E8F0;
}

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

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

.card-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--primary-navy);
  color: var(--gold-light);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
  letter-spacing: 0.5px;
  box-shadow: var(--shadow-sm);
}

.card-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card-title {
  font-size: 1.25rem;
  margin-bottom: 8px;
  color: var(--primary-navy);
}

.card-desc {
  font-size: 0.9rem;
  color: var(--slate-dark);
  margin-bottom: 16px;
  flex: 1;
}

.card-meta-list {
  border-top: 1px solid #F1F5F9;
  padding-top: 12px;
  margin-bottom: 16px;
  font-size: 0.85rem;
  color: var(--slate-medium);
}

.card-meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 4px;
}

.card-meta-item svg {
  color: var(--gold-dark);
  flex-shrink: 0;
}

.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #E2E8F0;
  padding-top: 14px;
}

/* B2B Services Features Box */
.service-icon-box {
  width: 54px;
  height: 54px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, #FEF3C7, #FDE68A);
  color: var(--gold-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

/* ITINERARY STYLES */
.itinerary-day {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: var(--radius-md);
  margin-bottom: 18px;
  overflow: hidden;
}

.itinerary-header {
  background: #F8FAFC;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #E2E8F0;
}

.itinerary-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary-navy);
  display: flex;
  align-items: center;
  gap: 10px;
}

.day-badge {
  background: var(--gold-primary);
  color: #FFFFFF;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 4px;
}

.itinerary-body {
  padding: 20px;
  font-size: 0.92rem;
}

.itinerary-highlights {
  margin-top: 12px;
  padding-left: 20px;
  list-style-type: disc;
}

.itinerary-highlights li {
  margin-bottom: 6px;
  color: var(--slate-dark);
}

/* B2B PARTNER ADVANTAGE SECTION */
.why-partner-box {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid #E2E8F0;
  box-shadow: var(--shadow-sm);
  transition: all 0.25s ease;
}

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

.why-partner-box h4 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}

/* B2B WORKFLOW STEPS */
.workflow-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
}

.workflow-card {
  background: #FFFFFF;
  padding: 30px 20px;
  border-radius: var(--radius-md);
  text-align: center;
  border: 1px solid #E2E8F0;
  position: relative;
}

.workflow-step-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary-navy);
  color: var(--gold-light);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  margin-bottom: 16px;
  border: 2px solid var(--gold-primary);
}

/* CTA BANNER */
.cta-banner {
  background: linear-gradient(135deg, var(--primary-navy) 0%, #1E293B 100%);
  color: #FFFFFF;
  padding: 60px 0;
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  margin: 40px 0;
  border: 1px solid rgba(245, 158, 11, 0.3);
}

.cta-banner-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.cta-banner h2 {
  color: #FFFFFF;
  font-size: 2.2rem;
  margin-bottom: 15px;
}

.cta-banner p {
  color: #CBD5E1;
  font-size: 1.05rem;
  margin-bottom: 25px;
}

/* FAQ ACCORDION */
.faq-container {
  max-width: 860px;
  margin: 0 auto;
}

.faq-item {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: var(--radius-md);
  margin-bottom: 14px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 18px 22px;
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--primary-navy);
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.2s ease;
}

.faq-question:hover {
  background: #F8FAFC;
}

.faq-answer {
  padding: 0 22px 18px;
  font-size: 0.92rem;
  color: var(--slate-dark);
  line-height: 1.6;
  display: none;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-icon {
  transition: transform 0.25s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

/* FOOTER */
.site-footer {
  background-color: var(--primary-navy);
  color: #94A3B8;
  padding: 70px 0 25px;
  border-top: 4px solid var(--gold-primary);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr 1.25fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-col h4 {
  color: #FFFFFF;
  font-size: 1.1rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

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

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #CBD5E1;
  font-size: 0.88rem;
  transition: color 0.2s ease, padding-left 0.2s ease;
}

.footer-links a:hover {
  color: var(--gold-primary);
  padding-left: 5px;
}

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

.footer-contact-item svg {
  color: var(--gold-primary);
  flex-shrink: 0;
  margin-top: 3px;
}

.legal-box {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 16px;
  border-radius: var(--radius-sm);
  margin-top: 20px;
  font-size: 0.82rem;
  color: #E2E8F0;
}

.legal-box strong {
  color: var(--gold-light);
}

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

/* FLOATING QUICK CONTACT BAR (Mobile) */
.mobile-sticky-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #FFFFFF;
  border-top: 1px solid #E2E8F0;
  box-shadow: 0 -4px 15px rgba(0,0,0,0.1);
  z-index: 1900;
  padding: 8px 15px;
}

.mobile-sticky-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1.3fr;
  gap: 8px;
}

.mobile-sticky-inner .btn {
  padding: 9px 8px;
  font-size: 0.82rem;
  font-weight: 700;
  border-radius: var(--radius-sm);
}

/* B2B MODAL */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(4px);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

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

.modal-content {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-xl);
  border-top: 5px solid var(--gold-primary);
  transform: scale(0.92);
  transition: transform 0.3s ease;
}

.modal-overlay.active .modal-content {
  transform: scale(1);
}

.modal-header {
  padding: 20px 25px;
  border-bottom: 1px solid #E2E8F0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.modal-header h3 {
  font-size: 1.35rem;
  margin-bottom: 0;
}

.modal-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--slate-medium);
}

.modal-body {
  padding: 25px;
}

/* Toast Notifications */
.toast-msg {
  display: none;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  margin-bottom: 15px;
}

.toast-msg.success {
  background-color: #DCFCE7;
  color: #166534;
  border: 1px solid #86EFAC;
  display: block;
}

.toast-msg.error {
  background-color: #FEE2E2;
  color: #991B1B;
  border: 1px solid #FCA5A5;
  display: block;
}

/* Breadcrumbs */
.breadcrumb-nav {
  padding: 12px 0;
  background-color: #F1F5F9;
  font-size: 0.84rem;
  border-bottom: 1px solid #E2E8F0;
}

.breadcrumb-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.breadcrumb-separator {
  color: var(--slate-light);
}

/* Content Page Banner */
.page-header {
  background: linear-gradient(135deg, var(--primary-navy) 0%, var(--secondary-navy) 100%);
  color: #FFFFFF;
  padding: 50px 0;
  text-align: center;
  position: relative;
  border-bottom: 4px solid var(--gold-primary);
}

.page-header h1 {
  color: #FFFFFF;
  margin-bottom: 8px;
  font-size: 2.3rem;
}

.page-header p {
  color: #CBD5E1;
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.05rem;
}

/* RESPONSIVE MEDIA QUERIES */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  
  .quote-card {
    max-width: 600px;
    margin: 0 auto;
  }
  
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .workflow-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 860px) {
  .nav-menu {
    display: none;
  }
  
  .mobile-toggle {
    display: block;
  }
  
  .grid-3 {
    grid-template-columns: 1fr;
  }
  
  .grid-2 {
    grid-template-columns: 1fr;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .hero-title {
    font-size: 2.15rem;
  }
  
  .top-bar-left .top-bar-item:nth-child(2) {
    display: none;
  }
  
  .mobile-sticky-bar {
    display: block;
  }
  
  body {
    padding-bottom: 60px;
  }
}

@media (max-width: 640px) {
  .hero-features-list {
    grid-template-columns: 1fr;
  }
  
  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .form-row-2, .form-row-3 {
    grid-template-columns: 1fr;
  }
  
  .hero-cta-group {
    flex-direction: column;
    align-items: stretch;
  }
  
  .top-bar-right {
    display: none;
  }
  
  .workflow-grid {
    grid-template-columns: 1fr;
  }
}
