/* ==========================================================================
   MATHURA DMC - Modern B2B Stylesheet
   A Unit of KV Tours Pvt. Ltd. | domain: mathuradmc.com
   ========================================================================== */

:root {
  --primary: #d97706;
  --primary-hover: #b45309;
  --primary-light: #fef3c7;
  --primary-glow: rgba(217, 119, 6, 0.18);
  
  --secondary: #0f172a;
  --secondary-light: #1e293b;
  --secondary-accent: #334155;
  
  --accent-blue: #0284c7;
  --accent-blue-light: #e0f2fe;
  
  --text-main: #1e293b;
  --text-muted: #64748b;
  --text-light: #94a3b8;
  --text-white: #ffffff;
  
  --bg-page: #f8fafc;
  --bg-white: #ffffff;
  --bg-dark: #090e1a;
  --bg-alt: #f1f5f9;
  
  --border-color: #e2e8f0;
  --border-focus: #d97706;
  
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-pill: 9999px;
  
  --shadow-sm: 0 2px 4px rgba(15, 23, 42, 0.05);
  --shadow-md: 0 6px 20px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 16px 36px rgba(15, 23, 42, 0.12);
  --shadow-xl: 0 24px 50px rgba(15, 23, 42, 0.16);

  --font-sans: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  color: var(--text-main);
  background-color: var(--bg-page);
  line-height: 1.6;
  font-weight: 400;
  overflow-x: hidden;
  padding-bottom: 50px; /* Space for mobile sticky bar */
}

@media (min-width: 992px) {
  body {
    padding-bottom: 0;
  }
}

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

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

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

.container-narrow {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  color: var(--secondary);
  line-height: 1.25;
  font-weight: 800;
  letter-spacing: -0.015em;
}

h1 { font-size: clamp(2rem, 4vw, 2.75rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); }
h4 { font-size: 1.15rem; }

p {
  margin-bottom: 1.15rem;
  color: #334155;
  font-size: 1.02rem;
}

p.lead {
  font-size: 1.18rem;
  line-height: 1.7;
  color: #475569;
}

.text-primary { color: var(--primary) !important; }
.text-navy { color: var(--secondary) !important; }
.text-muted { color: var(--text-muted) !important; }
.text-center { text-align: center; }

/* Buttons & CTAs */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 12px 24px;
  border-radius: var(--radius-pill);
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  text-align: center;
  white-space: nowrap;
}

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

.btn-lg {
  padding: 15px 32px;
  font-size: 1.05rem;
}

.btn-primary {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(217, 119, 6, 0.35);
}
.btn-primary:hover {
  background: linear-gradient(135deg, #d97706, #b45309);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(217, 119, 6, 0.45);
}

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

.btn-outline {
  border-color: var(--secondary);
  color: var(--secondary);
  background: transparent;
}
.btn-outline:hover {
  background: var(--secondary);
  color: #ffffff;
}

.btn-outline-white {
  border-color: #ffffff;
  color: #ffffff;
  background: transparent;
}
.btn-outline-white:hover {
  background: #ffffff;
  color: var(--secondary);
}

.btn-whatsapp {
  background: #25d366;
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.3);
}
.btn-whatsapp:hover {
  background: #1eb956;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.45);
}

/* ==========================================================================
   Header & Top Bar
   ========================================================================== */
.topbar {
  background-color: var(--secondary);
  color: #cbd5e1;
  font-size: 0.84rem;
  padding: 7px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.topbar-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.topbar-unit {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: #f1f5f9;
}
.topbar-badge {
  background: rgba(217, 119, 6, 0.25);
  color: #fbbf24;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 700;
  border: 1px solid rgba(251, 191, 36, 0.3);
  text-transform: uppercase;
}
.topbar-contacts {
  display: flex;
  align-items: center;
  gap: 18px;
}
.topbar-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #e2e8f0;
}
.topbar-link:hover {
  color: #fbbf24;
}

/* Main Navbar */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #ffffff;
  box-shadow: var(--shadow-sm);
  border-bottom: 1px solid var(--border-color);
  transition: var(--transition);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
}

.brand-logo {
  display: inline-block;
  text-decoration: none;
}
.brand-logo img {
  height: 48px;
  width: auto;
}

/* Nav Menu */
.nav-menu {
  display: none;
  align-items: center;
  gap: 4px;
  list-style: none;
}

@media (min-width: 1040px) {
  .nav-menu {
    display: flex;
  }
}

.nav-item {
  position: relative;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 10px 14px;
  font-weight: 600;
  font-size: 0.93rem;
  color: var(--secondary);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

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

/* Dropdown */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  background: #ffffff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
  padding: 8px;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: var(--transition);
  z-index: 1100;
}

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

.dropdown-link {
  display: block;
  padding: 8px 14px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--secondary);
  border-radius: 6px;
  transition: var(--transition);
}

.dropdown-link:hover {
  background: #fffbeb;
  color: var(--primary);
  padding-left: 18px;
}

.nav-cta {
  display: none;
  align-items: center;
  gap: 10px;
}

@media (min-width: 1040px) {
  .nav-cta {
    display: flex;
  }
}

/* Mobile Toggle */
.mobile-toggle {
  display: block;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--secondary);
}

@media (min-width: 1040px) {
  .mobile-toggle {
    display: none;
  }
}

/* Mobile Navigation Drawer */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -320px;
  width: 300px;
  height: 100vh;
  background: #ffffff;
  z-index: 1500;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
  padding: 24px 20px;
  overflow-y: auto;
  transition: right 0.3s ease;
  display: flex;
  flex-direction: column;
}

.mobile-drawer.open {
  right: 0;
}

.mobile-drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border-color);
}

.mobile-close-btn {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--secondary);
}

.mobile-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.mobile-nav-link {
  display: block;
  padding: 10px 12px;
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--secondary);
  border-radius: 8px;
}

.mobile-nav-link:hover {
  background: #fffbeb;
  color: var(--primary);
}

.mobile-submenu-title {
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 12px 12px 4px;
}

.drawer-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1400;
}

.drawer-backdrop.active {
  display: block;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
  position: relative;
  background: linear-gradient(135deg, #090e1a 0%, #0f172a 50%, #1e293b 100%);
  color: #ffffff;
  padding: 65px 0 80px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(circle at 80% 20%, rgba(217, 119, 6, 0.15) 0%, transparent 45%),
                    radial-gradient(circle at 20% 80%, rgba(2, 132, 199, 0.12) 0%, transparent 45%);
  pointer-events: none;
}

.hero-wrapper {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

@media (min-width: 992px) {
  .hero-wrapper {
    grid-template-columns: 1.15fr 0.85fr;
  }
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(217, 119, 6, 0.2);
  border: 1px solid rgba(251, 191, 36, 0.35);
  color: #fde68a;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.hero-parent-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #e2e8f0;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  font-weight: 600;
}

.hero-title {
  color: #ffffff;
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.18;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

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

.hero-desc {
  font-size: 1.15rem;
  line-height: 1.7;
  color: #cbd5e1;
  margin-bottom: 28px;
  max-width: 620px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 35px;
}

.hero-features-bar {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-feature-item svg {
  color: #fbbf24;
  flex-shrink: 0;
}
.hero-feature-text {
  font-size: 0.85rem;
  color: #e2e8f0;
  line-height: 1.3;
}
.hero-feature-text strong {
  display: block;
  color: #ffffff;
  font-size: 0.95rem;
}

/* Hero Quick Lead Form Card */
.hero-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-xl);
  color: var(--text-main);
  position: relative;
}

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

.hero-card-title {
  font-size: 1.35rem;
  color: var(--secondary);
  font-weight: 800;
  margin-bottom: 6px;
}

.hero-card-subtitle {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* ==========================================================================
   Breadcrumb Bar
   ========================================================================== */
.breadcrumbs-bar {
  background: #ffffff;
  padding: 14px 0;
  border-bottom: 1px solid var(--border-color);
  font-size: 0.88rem;
}

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

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

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

.breadcrumb-item a:hover {
  color: var(--primary);
}

.breadcrumb-separator {
  color: #cbd5e1;
  font-size: 0.8rem;
}

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

/* Page Header for Inner Pages */
.page-header {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: #ffffff;
  padding: 50px 0 55px;
  position: relative;
}

.page-header h1 {
  color: #ffffff;
  font-size: clamp(2rem, 3.8vw, 2.75rem);
  margin-bottom: 14px;
}

.page-header p {
  color: #cbd5e1;
  font-size: 1.15rem;
  max-width: 800px;
  margin-bottom: 20px;
}

.page-header-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* ==========================================================================
   Section Layouts
   ========================================================================== */
.section {
  padding: 70px 0;
}

.section-alt {
  background-color: #ffffff;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.section-dark {
  background-color: var(--secondary);
  color: #ffffff;
}
.section-dark h2, .section-dark h3 {
  color: #ffffff;
}
.section-dark p {
  color: #cbd5e1;
}

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

.section-kicker {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary);
  background: #fffbeb;
  padding: 4px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 12px;
  border: 1px solid rgba(217, 119, 6, 0.2);
}

.section-title {
  margin-bottom: 14px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
}

/* ==========================================================================
   Feature & Pillar Cards
   ========================================================================== */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}

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

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

.card {
  background: #ffffff;
  border-radius: var(--radius-md);
  padding: 28px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(217, 119, 6, 0.3);
}

.card-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: #fffbeb;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  border: 1px solid rgba(217, 119, 6, 0.2);
}

.card-title {
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: var(--secondary);
}

.card-text {
  color: #475569;
  font-size: 0.96rem;
  margin-bottom: 18px;
  flex-grow: 1;
}

.card-link {
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.card-link:hover {
  color: var(--primary-hover);
  gap: 10px;
}

/* ==========================================================================
   Tour Package Cards
   ========================================================================== */
.package-card {
  background: #ffffff;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.package-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(217, 119, 6, 0.4);
}

.package-card-header {
  padding: 20px 24px;
  background: linear-gradient(135deg, #0f172a, #1e293b);
  color: #ffffff;
  position: relative;
}

.package-duration-tag {
  display: inline-block;
  background: #d97706;
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 8px;
}

.package-title {
  color: #ffffff;
  font-size: 1.25rem;
  margin-bottom: 6px;
}

.package-destinations {
  font-size: 0.88rem;
  color: #cbd5e1;
}

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

.package-highlights {
  list-style: none;
  margin-bottom: 20px;
  flex-grow: 1;
}

.package-highlights li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 8px;
  font-size: 0.93rem;
  color: #334155;
}

.package-highlights li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #16a34a;
  font-weight: 800;
}

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

.package-rate-note {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.25;
}
.package-rate-note strong {
  display: block;
  color: var(--secondary);
  font-size: 0.92rem;
}

/* ==========================================================================
   Fleet & Transport Showcase
   ========================================================================== */
.fleet-card {
  background: #ffffff;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  padding: 24px;
  transition: var(--transition);
}
.fleet-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
}
.fleet-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 12px;
}
.fleet-name {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--secondary);
}
.fleet-badge {
  background: #f1f5f9;
  color: #334155;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
}
.fleet-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 16px 0;
  padding: 12px;
  background: #f8fafc;
  border-radius: 8px;
  font-size: 0.88rem;
}
.fleet-spec-item strong {
  display: block;
  color: var(--secondary);
  font-size: 0.92rem;
}

/* ==========================================================================
   Destination & Itinerary Accordion
   ========================================================================== */
.accordion {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.accordion-item {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}

.accordion-item.active {
  border-color: var(--primary);
  box-shadow: var(--shadow-sm);
}

.accordion-header {
  width: 100%;
  padding: 18px 22px;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: left;
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--secondary);
  gap: 16px;
}

.accordion-header:hover {
  background-color: #fffdfa;
}

.accordion-icon {
  width: 20px;
  height: 20px;
  color: var(--primary);
  transition: transform 0.25s ease;
  flex-shrink: 0;
}

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

.accordion-content {
  padding: 0 22px 20px;
  display: none;
  color: #475569;
  font-size: 0.98rem;
  line-height: 1.7;
}

.accordion-item.active .accordion-content {
  display: block;
}

/* ==========================================================================
   B2B Partner Trust Matrix / Banner
   ========================================================================== */
.b2b-trust-box {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: #ffffff;
  border-radius: var(--radius-lg);
  padding: 45px 35px;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.b2b-trust-box::after {
  content: "";
  position: absolute;
  right: -50px;
  bottom: -50px;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(217, 119, 6, 0.2) 0%, transparent 70%);
  pointer-events: none;
}

/* ==========================================================================
   Forms & Inputs
   ========================================================================== */
.form-group {
  margin-bottom: 16px;
}

.form-label {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 6px;
}

.form-control, .form-select, textarea.form-control {
  width: 100%;
  padding: 12px 14px;
  font-size: 0.95rem;
  font-family: inherit;
  color: var(--text-main);
  background-color: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.form-control:focus, .form-select:focus, textarea.form-control:focus {
  outline: none;
  border-color: var(--border-focus);
  box-shadow: 0 0 0 3px rgba(217, 119, 6, 0.15);
}

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

@media (min-width: 640px) {
  .form-row-2 {
    grid-template-columns: 1fr 1fr;
  }
}

/* ==========================================================================
   Modal Dialog
   ========================================================================== */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.65);
  backdrop-filter: blur(4px);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-overlay.active {
  display: flex;
}

.modal-dialog {
  background: #ffffff;
  width: 100%;
  max-width: 580px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  animation: modalFadeIn 0.25s ease-out;
}

@keyframes modalFadeIn {
  from { opacity: 0; transform: scale(0.95) translateY(10px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

.modal-header {
  padding: 20px 24px;
  background: linear-gradient(135deg, #0f172a, #1e293b);
  color: #ffffff;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-title {
  color: #ffffff;
  font-size: 1.25rem;
}

.modal-close {
  background: none;
  border: none;
  color: #ffffff;
  font-size: 1.5rem;
  cursor: pointer;
}

.modal-body {
  padding: 24px;
  max-height: 80vh;
  overflow-y: auto;
}

/* ==========================================================================
   Floating WhatsApp & Sticky Mobile Bar
   ========================================================================== */
.floating-whatsapp {
  position: fixed;
  bottom: 80px;
  right: 20px;
  z-index: 1200;
  width: 56px;
  height: 56px;
  background-color: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  box-shadow: 0 4px 18px rgba(37, 211, 102, 0.45);
  transition: var(--transition);
}

.floating-whatsapp:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.6);
}

@media (min-width: 992px) {
  .floating-whatsapp {
    bottom: 28px;
    right: 28px;
  }
}

.mobile-bottom-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 54px;
  background: #ffffff;
  border-top: 1px solid var(--border-color);
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.08);
  display: flex;
  z-index: 1300;
}

@media (min-width: 992px) {
  .mobile-bottom-bar {
    display: none;
  }
}

.mobile-bottom-action {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--secondary);
  border-right: 1px solid var(--border-color);
  gap: 3px;
}

.mobile-bottom-action:last-child {
  border-right: none;
}

.mobile-bottom-action.btn-accent {
  background: #d97706;
  color: #ffffff;
}

.mobile-bottom-action.btn-whatsapp-action {
  background: #25d366;
  color: #ffffff;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: #090e1a;
  color: #94a3b8;
  padding: 70px 0 25px;
  border-top: 4px solid var(--primary);
  font-size: 0.92rem;
}

.footer-top {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 35px;
  margin-bottom: 50px;
}

@media (min-width: 992px) {
  .footer-top {
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  }
}

.footer-logo {
  margin-bottom: 18px;
}
.footer-logo img {
  height: 48px;
  width: auto;
}

.footer-unit-notice {
  display: inline-block;
  background: rgba(217, 119, 6, 0.15);
  border: 1px solid rgba(251, 191, 36, 0.3);
  color: #fbbf24;
  padding: 4px 10px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.82rem;
  margin-bottom: 14px;
}

.footer-desc {
  color: #cbd5e1;
  font-size: 0.92rem;
  line-height: 1.6;
  margin-bottom: 18px;
}

.footer-title {
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 18px;
  position: relative;
  padding-bottom: 8px;
}

.footer-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 32px;
  height: 2px;
  background: var(--primary);
}

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

.footer-links a {
  color: #cbd5e1;
  transition: var(--transition);
}

.footer-links a:hover {
  color: #fbbf24;
  padding-left: 6px;
}

.footer-contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #cbd5e1;
}

.footer-contact-icon {
  color: #fbbf24;
  flex-shrink: 0;
  margin-top: 3px;
}

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

.footer-copyright {
  color: #94a3b8;
}

/* ==========================================================================
   Table & Pricing Styling
   ========================================================================== */
.table-responsive {
  width: 100%;
  overflow-x: auto;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  background: #ffffff;
}

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

.table-custom th {
  background: #0f172a;
  color: #ffffff;
  padding: 14px 18px;
  font-weight: 700;
}

.table-custom td {
  padding: 14px 18px;
  border-bottom: 1px solid var(--border-color);
  color: #334155;
}

.table-custom tr:nth-child(even) {
  background-color: #f8fafc;
}

.table-custom tr:hover {
  background-color: #fffbeb;
}
