/* ==========================================================================
   Katra DMC - Official B2B Website Stylesheet
   Domain: katradmc.com | A Unit of KV Tours Pvt. Ltd.
   ========================================================================== */

:root {
  --primary-navy: #0F172A;
  --primary-blue: #1E3A8A;
  --secondary-blue: #2563EB;
  --accent-gold: #D97706;
  --accent-gold-light: #F59E0B;
  --accent-gold-pale: #FEF3C7;
  --accent-gold-dark: #B45309;
  --whatsapp-green: #25D366;
  --whatsapp-dark: #128C7E;
  
  --text-dark: #0F172A;
  --text-muted: #475569;
  --text-light: #94A3B8;
  --bg-white: #FFFFFF;
  --bg-light: #F8FAFC;
  --bg-subtle: #F1F5F9;
  --border-color: #E2E8F0;
  --border-focus: #D97706;

  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.08), 0 2px 4px -1px rgba(0,0,0,0.04);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.12), 0 10px 10px -5px rgba(0,0,0,0.04);

  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-full: 9999px;

  --font-heading: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-serif: 'Cinzel', Georgia, 'Times New Roman', serif;
}

/* Reset & Base */
*, *::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-body);
  color: var(--text-dark);
  background-color: var(--bg-white);
  line-height: 1.65;
  overflow-x: hidden;
}

a {
  color: var(--secondary-blue);
  text-decoration: none;
  transition: all 0.2s ease;
}

a:hover {
  color: var(--accent-gold-dark);
}

img, svg {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

ul {
  list-style: none;
}

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

.container-narrow {
  max-width: 960px;
}

.section {
  padding: 80px 0;
}

.section-sm {
  padding: 48px 0;
}

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

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

.bg-gold-subtle {
  background-color: #FFFDF5;
  border-top: 1px solid #FEF3C7;
  border-bottom: 1px solid #FEF3C7;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  color: var(--text-dark);
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 16px;
}

.bg-navy h1, .bg-navy h2, .bg-navy h3, .bg-navy h4, .bg-navy h5, .bg-navy h6 {
  color: #FFFFFF;
}

h1 { font-size: 2.5rem; letter-spacing: -0.02em; }
h2 { font-size: 2rem; letter-spacing: -0.01em; }
h3 { font-size: 1.4rem; }
h4 { font-size: 1.15rem; }

p {
  margin-bottom: 16px;
  color: var(--text-muted);
}

.lead {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--text-dark);
}

.bg-navy p, .bg-navy .lead {
  color: #CBD5E1;
}

.text-gold {
  color: var(--accent-gold);
}

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

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

.badge-tag {
  display: inline-block;
  padding: 6px 14px;
  background-color: var(--accent-gold-pale);
  color: var(--accent-gold-dark);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: var(--radius-full);
  margin-bottom: 12px;
  border: 1px solid #FDE68A;
}

.bg-navy .badge-tag {
  background-color: rgba(245, 158, 11, 0.18);
  color: var(--accent-gold-light);
  border-color: rgba(245, 158, 11, 0.35);
}

/* 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-md);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
}

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

.btn-primary:hover {
  background-color: var(--accent-gold-dark);
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(217, 119, 6, 0.35);
}

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

.btn-navy:hover {
  background-color: #1E293B;
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

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

.btn-whatsapp:hover {
  background-color: var(--whatsapp-dark);
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.35);
}

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

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

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

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

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

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

.btn-full {
  width: 100%;
}

/* Header & Navigation */
.top-bar {
  background-color: var(--primary-navy);
  color: #CBD5E1;
  font-size: 0.82rem;
  padding: 7px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

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

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

.top-bar a {
  color: #CBD5E1;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.top-bar a:hover {
  color: var(--accent-gold-light);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #FFFFFF;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

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

.brand-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.brand-logo svg, .brand-logo img {
  height: 54px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-item {
  position: relative;
}

.nav-link {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-dark);
  padding: 10px 4px;
  display: flex;
  align-items: center;
  gap: 4px;
}

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

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

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

.dropdown-item {
  display: block;
  padding: 10px 20px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: all 0.2s;
}

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

.header-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: var(--text-dark);
  cursor: pointer;
}

/* Mobile Drawer */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 82%;
  max-width: 360px;
  height: 100vh;
  background: #FFFFFF;
  box-shadow: var(--shadow-xl);
  z-index: 2000;
  transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

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

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

.drawer-close {
  background: none;
  border: none;
  font-size: 1.8rem;
  color: var(--text-muted);
  cursor: pointer;
}

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

.drawer-links {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 24px;
}

.drawer-link {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  padding: 12px 10px;
  border-bottom: 1px solid var(--border-color);
  display: block;
}

.drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(2px);
  z-index: 1999;
  display: none;
}

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

/* Hero Section */
.hero {
  position: relative;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.88) 0%, rgba(30, 58, 138, 0.82) 65%, rgba(11, 25, 44, 0.94) 100%), url('../images/katra-hero-trikuta.jpg') center/cover no-repeat;
  color: #FFFFFF;
  padding: 85px 0 105px 0;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 80% 20%, rgba(217, 119, 6, 0.22) 0%, transparent 55%);
  pointer-events: none;
}

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

.hero-content h1 {
  font-size: 2.8rem;
  color: #FFFFFF;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-content h1 span {
  color: var(--accent-gold-light);
}

.hero-content p {
  font-size: 1.12rem;
  color: #E2E8F0;
  margin-bottom: 28px;
  line-height: 1.7;
}

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

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

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

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* Hero Enquiry Card (High Conversion) */
.hero-card {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-xl);
  color: var(--text-dark);
  border-top: 5px solid var(--accent-gold);
}

.hero-card h3 {
  margin-bottom: 6px;
  font-size: 1.45rem;
}

.hero-card p {
  font-size: 0.88rem;
  margin-bottom: 20px;
}

/* Form Styles */
.form-group {
  margin-bottom: 16px;
}

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

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.form-control, select.form-control, textarea.form-control {
  width: 100%;
  padding: 11px 14px;
  font-size: 0.92rem;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  background: #FFFFFF;
  color: var(--text-dark);
  transition: border-color 0.2s, box-shadow 0.2s;
  font-family: inherit;
}

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

textarea.form-control {
  resize: vertical;
  min-height: 80px;
}

/* Honeypot hidden field */
.hp-input {
  display: none !important;
  visibility: hidden !important;
  position: absolute;
  left: -9999px;
}

/* Trust Bar / Stats */
.trust-bar {
  background: #FFFFFF;
  padding: 30px 0;
  box-shadow: var(--shadow-md);
  margin-top: -30px;
  position: relative;
  z-index: 10;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
}

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

.stat-item {
  padding: 10px;
  border-right: 1px solid var(--border-color);
}

.stat-item:last-child {
  border-right: none;
}

.stat-number {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--primary-navy);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-number span {
  color: var(--accent-gold);
}

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

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

.card {
  background: #FFFFFF;
  border-radius: var(--radius-md);
  padding: 30px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

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

.service-card .icon-box {
  width: 58px;
  height: 58px;
  border-radius: var(--radius-md);
  background-color: var(--accent-gold-pale);
  color: var(--accent-gold-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.service-card p {
  font-size: 0.92rem;
  flex-grow: 1;
  margin-bottom: 20px;
}

.card-link {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--accent-gold-dark);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.card-link:hover {
  color: var(--primary-navy);
  gap: 10px;
}

/* Tour Packages Cards */
.package-card {
  background: #FFFFFF;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.package-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

.package-image {
  position: relative;
  height: 200px;
  background-color: #0F172A;
  overflow: hidden;
}

.package-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.package-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--primary-navy);
  color: #FFFFFF;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.package-duration {
  position: absolute;
  bottom: 14px;
  right: 14px;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(4px);
  color: var(--accent-gold-light);
  padding: 4px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  font-weight: 700;
}

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

.package-body h3 {
  font-size: 1.22rem;
  margin-bottom: 10px;
}

.package-route {
  font-size: 0.85rem;
  color: var(--secondary-blue);
  font-weight: 600;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.package-features {
  margin: 14px 0 20px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex-grow: 1;
}

.package-feature {
  font-size: 0.86rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}

.package-feature svg {
  color: var(--accent-gold);
  flex-shrink: 0;
}

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

.package-rate-tag {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.package-rate-tag strong {
  display: block;
  font-size: 1.15rem;
  color: var(--accent-gold-dark);
}

/* Fleet & Vehicle Cards */
.fleet-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.fleet-card {
  background: #FFFFFF;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.fleet-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--accent-gold);
}

.fleet-card h3 {
  font-size: 1.2rem;
  margin-bottom: 6px;
}

.fleet-specs {
  display: flex;
  gap: 16px;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 16px;
  background: var(--bg-light);
  padding: 10px 14px;
  border-radius: var(--radius-sm);
}

.fleet-specs span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  color: var(--text-dark);
}

/* Table Styles */
.table-responsive {
  width: 100%;
  overflow-x: auto;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  background: #FFFFFF;
}

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

.table-custom th {
  background: var(--primary-navy);
  color: #FFFFFF;
  padding: 14px 18px;
  font-weight: 600;
  border-bottom: 2px solid var(--accent-gold);
}

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

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

.table-custom tr:nth-child(even) {
  background-color: var(--bg-light);
}

/* Accordion FAQs */
.accordion {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 860px;
  margin: 0 auto;
}

.accordion-item {
  background: #FFFFFF;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.accordion-header {
  padding: 18px 22px;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  background: #FFFFFF;
  transition: background 0.2s ease;
}

.accordion-header:hover {
  background-color: var(--bg-light);
  color: var(--accent-gold-dark);
}

.accordion-icon {
  transition: transform 0.3s ease;
  font-size: 1.2rem;
  color: var(--accent-gold);
}

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

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0, 1, 0, 1);
  padding: 0 22px;
  background: #FFFFFF;
  color: var(--text-muted);
  font-size: 0.94rem;
  line-height: 1.7;
}

.accordion-item.active .accordion-body {
  max-height: 1000px;
  transition: max-height 0.5s ease-in-out;
  padding: 0 22px 22px 22px;
}

/* Call to Action Banner */
.cta-banner {
  background: linear-gradient(135deg, #1E3A8A 0%, #0F172A 100%);
  color: #FFFFFF;
  border-radius: var(--radius-lg);
  padding: 50px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  box-shadow: var(--shadow-xl);
  border-left: 6px solid var(--accent-gold);
}

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

.cta-banner p {
  color: #E2E8F0;
  margin-bottom: 0;
  font-size: 1.05rem;
}

.cta-actions {
  display: flex;
  gap: 14px;
  flex-shrink: 0;
}

/* Breadcrumb Navigation */
.breadcrumb-wrap {
  background: var(--bg-subtle);
  padding: 14px 0;
  font-size: 0.85rem;
  border-bottom: 1px solid var(--border-color);
}

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

.breadcrumbs a {
  color: var(--text-muted);
}

.breadcrumbs a:hover {
  color: var(--accent-gold-dark);
}

.breadcrumbs span.separator {
  color: var(--text-light);
}

.breadcrumbs span.current {
  color: var(--text-dark);
  font-weight: 600;
}

/* Page Header */
.page-header {
  background: linear-gradient(135deg, #0F172A 0%, #1E3A8A 100%);
  color: #FFFFFF;
  padding: 56px 0;
  text-align: center;
  position: relative;
}

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

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

/* Footer */
.site-footer {
  background: #0B132B;
  color: #94A3B8;
  padding: 70px 0 30px 0;
  font-size: 0.92rem;
  border-top: 4px solid var(--accent-gold);
}

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

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

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

.footer-about p {
  color: #94A3B8;
  font-size: 0.9rem;
  margin-bottom: 16px;
}

.legal-badge {
  background: rgba(255, 255, 255, 0.08);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  color: #E2E8F0;
  border-left: 3px solid var(--accent-gold-light);
  margin-bottom: 18px;
}

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

.footer-links a {
  color: #94A3B8;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

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

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  color: #CBD5E1;
}

.footer-contact svg {
  color: var(--accent-gold-light);
  flex-shrink: 0;
  margin-top: 4px;
}

.footer-contact a {
  color: #CBD5E1;
}

.footer-contact a:hover {
  color: var(--accent-gold-light);
}

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

.footer-bottom p {
  margin-bottom: 0;
  color: #64748B;
}

/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 58px;
  height: 58px;
  background-color: var(--whatsapp-green);
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
  z-index: 998;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.whatsapp-float:hover {
  transform: scale(1.1);
  color: #FFFFFF;
  background-color: var(--whatsapp-dark);
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}

/* Sticky Mobile Bottom Bar */
.mobile-bottom-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #FFFFFF;
  box-shadow: 0 -3px 12px rgba(0,0,0,0.12);
  z-index: 999;
  padding: 8px 12px;
}

.bottom-bar-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1.2fr;
  gap: 8px;
}

.bottom-bar-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 8px 4px;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: var(--radius-sm);
  text-align: center;
  gap: 3px;
}

.bottom-bar-call {
  background: var(--bg-subtle);
  color: var(--primary-navy);
}

.bottom-bar-wa {
  background: #DCFCE7;
  color: #15803D;
}

.bottom-bar-rate {
  background: var(--accent-gold);
  color: #FFFFFF;
}

/* Modal Popup */
.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(15, 23, 42, 0.7);
  backdrop-filter: blur(4px);
  z-index: 2100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

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

.modal-box {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  max-width: 580px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-xl);
  position: relative;
  border-top: 5px solid var(--accent-gold);
}

.modal-header {
  padding: 22px 28px 12px 28px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.modal-close {
  background: none;
  border: none;
  font-size: 1.6rem;
  color: var(--text-muted);
  cursor: pointer;
}

.modal-body {
  padding: 10px 28px 28px 28px;
}

/* Alert Boxes */
.alert {
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
  font-size: 0.92rem;
  display: none;
}

.alert-success {
  background-color: #ECFDF5;
  color: #065F46;
  border: 1px solid #A7F3D0;
  display: block;
}

.alert-error {
  background-color: #FEF2F2;
  color: #991B1B;
  border: 1px solid #FECACA;
  display: block;
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
  .cards-grid, .fleet-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
}

@media (max-width: 860px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .nav-links, .header-cta {
    display: none;
  }
  .mobile-toggle {
    display: block;
  }
  .top-bar-left span:nth-child(2) {
    display: none;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .stat-item {
    border-right: none;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 16px;
  }
  .stat-item:nth-child(3), .stat-item:nth-child(4) {
    border-bottom: none;
  }
  .cta-banner {
    flex-direction: column;
    text-align: center;
    padding: 36px 24px;
  }
  .cta-actions {
    justify-content: center;
  }
}

@media (max-width: 640px) {
  body {
    padding-bottom: 60px; /* space for sticky bottom bar */
  }
  .section {
    padding: 50px 0;
  }
  .hero-content h1 {
    font-size: 2.1rem;
  }
  .cards-grid, .fleet-grid {
    grid-template-columns: 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .mobile-bottom-bar {
    display: block;
  }
  .whatsapp-float {
    bottom: 70px;
    right: 18px;
    width: 50px;
    height: 50px;
  }
  .hero-features-list {
    grid-template-columns: 1fr;
  }
}

/* Image Showcase & Visual Enhancements */
.img-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.img-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.img-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

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

.img-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  background: linear-gradient(0deg, rgba(15, 23, 42, 0.95) 0%, rgba(15, 23, 42, 0.6) 60%, transparent 100%);
  color: #FFFFFF;
}

.showcase-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 36px;
}

.page-banner-img {
  width: 100%;
  height: 380px;
  border-radius: var(--radius-lg);
  object-fit: cover;
  box-shadow: var(--shadow-xl);
  margin-bottom: 30px;
  border: 1px solid var(--border-color);
}

@media (max-width: 860px) {
  .showcase-grid-2 {
    grid-template-columns: 1fr;
  }
  .page-banner-img {
    height: 240px;
  }
}
