/* ============================================================
   Trimbakraj Cab Services – Main Stylesheet
   Author: Trimbakraj Cab Services
   Version: 1.0
   ============================================================ */

/* ---------- Google Fonts Import ---------- */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&family=Playfair+Display:wght@400;600;700&display=swap');

/* ---------- CSS Custom Properties ---------- */
:root {
  --primary:       #0A1628;
  --secondary:     #1A3A6B;
  --accent:        #F5A623;
  --accent-dark:   #d4891a;
  --white:         #FFFFFF;
  --light-bg:      #F4F7FC;
  --text-dark:     #1a1a2e;
  --text-muted:    #6c757d;
  --border:        #dee2e6;
  --shadow-sm:     0 2px 12px rgba(10,22,40,.08);
  --shadow-md:     0 8px 32px rgba(10,22,40,.14);
  --shadow-lg:     0 16px 48px rgba(10,22,40,.20);
  --radius-sm:     6px;
  --radius-md:     12px;
  --radius-lg:     20px;
  --transition:    all .3s ease;
  --font-body:     'Poppins', sans-serif;
  --font-heading:  '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-body);
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.7;
}
a { color: inherit; text-decoration: none; transition: var(--transition); }
a:hover { color: var(--accent); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; padding: 0; margin: 0; }

/* ---------- Utility ---------- */
.section-pad    { padding: 80px 0; }
.section-pad-sm { padding: 60px 0; }
.bg-primary-custom  { background: var(--primary) !important; }
.bg-accent   { background: var(--accent) !important; }
.bg-light-custom { background: var(--light-bg) !important; }
.text-accent  { color: var(--accent) !important; }
.text-primary-custom { color: var(--primary) !important; }
.fw-600 { font-weight: 600; }
.fw-700 { font-weight: 700; }

/* ---------- Section Heading ---------- */
.section-heading { margin-bottom: 50px; }
.section-heading .badge-label {
  display: inline-block;
  background: rgba(245,166,35,.15);
  color: var(--accent-dark);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 14px;
}
.section-heading h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  color: var(--primary);
  line-height: 1.25;
}
.section-heading p {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 12px auto 0;
}
.section-heading.text-start p { margin-left: 0; }
.divider-accent {
  width: 60px; height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--accent-dark));
  border-radius: 4px;
  margin: 14px auto 0;
}
.section-heading.text-start .divider-accent { margin-left: 0; }

/* ---------- Buttons ---------- */
.btn-accent {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  color: var(--primary);
  font-weight: 700;
  padding: 12px 30px;
  border-radius: var(--radius-md);
  border: none;
  transition: var(--transition);
  box-shadow: 0 4px 18px rgba(245,166,35,.35);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-accent:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(245,166,35,.5);
  color: var(--primary);
}
.btn-outline-accent {
  background: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);
  font-weight: 600;
  padding: 10px 28px;
  border-radius: var(--radius-md);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-outline-accent:hover {
  background: var(--accent);
  color: var(--primary);
  transform: translateY(-2px);
}
.btn-call {
  background: #25D366;
  color: #fff;
  font-weight: 700;
  padding: 12px 30px;
  border-radius: var(--radius-md);
  border: none;
  transition: var(--transition);
  box-shadow: 0 4px 18px rgba(37,211,102,.35);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-call:hover { background: #1ebe5d; color: #fff; transform: translateY(-3px); }
.btn-white-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.7);
  font-weight: 600;
  padding: 11px 28px;
  border-radius: var(--radius-md);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-white-outline:hover { background: rgba(255,255,255,.1); color: var(--white); }

/* ============================================================
   NAVBAR
   ============================================================ */
#mainNavbar {
  background: transparent;
  padding: 16px 0;
  transition: background .4s ease, box-shadow .4s ease, padding .3s ease;
  z-index: 1050;
}
#mainNavbar.scrolled {
  background: var(--primary) !important;
  box-shadow: var(--shadow-md);
  padding: 10px 0;
}
.navbar-brand .brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.brand-icon {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--primary);
}
.brand-text { line-height: 1; }
.brand-text .brand-name {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  display: block;
}
.brand-text .brand-tagline {
  font-size: .68rem;
  color: var(--accent);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 500;
}
.navbar-nav .nav-link {
  color: rgba(255,255,255,.85) !important;
  font-weight: 500;
  font-size: .92rem;
  padding: 6px 12px !important;
  position: relative;
  transition: var(--transition);
}
.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  width: 0; height: 2px;
  background: var(--accent);
  border-radius: 2px;
  transition: all .3s ease;
  transform: translateX(-50%);
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active { color: var(--accent) !important; }
.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after { width: 70%; }
.navbar-toggler { border: none; outline: none; box-shadow: none !important; }
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255,255,255,0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
.nav-cta {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark)) !important;
  color: var(--primary) !important;
  padding: 8px 20px !important;
  border-radius: var(--radius-sm) !important;
  font-weight: 700 !important;
  margin-left: 8px;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { opacity: .9; transform: translateY(-1px); }

/* ============================================================
   HERO SECTION
   ============================================================ */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: url('https://images.unsplash.com/photo-1544620347-c4fd4a3d5957?w=1920&q=80') center/cover no-repeat;
  overflow: hidden;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,22,40,.88) 0%, rgba(26,58,107,.75) 50%, rgba(10,22,40,.6) 100%);
}
.hero-content { position: relative; z-index: 2; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245,166,35,.18);
  border: 1px solid rgba(245,166,35,.4);
  color: var(--accent);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 8px 20px;
  border-radius: 50px;
  margin-bottom: 20px;
}
.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5.5vw, 3.8rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.18;
  margin-bottom: 20px;
}
.hero-title span { color: var(--accent); }
.hero-subtitle {
  font-size: clamp(.95rem, 2vw, 1.15rem);
  color: rgba(255,255,255,.8);
  max-width: 580px;
  margin-bottom: 36px;
  line-height: 1.7;
}
.hero-cta-group { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 48px; }
.hero-stats {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
}
.stat-item { text-align: left; }
.stat-number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}
.stat-label {
  font-size: .78rem;
  color: rgba(255,255,255,.65);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}
.hero-image-card {
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius-lg);
  padding: 24px;
  position: relative;
  z-index: 2;
}
.quick-book-form { }
.quick-book-form .form-label {
  color: rgba(255,255,255,.7);
  font-size: .82rem;
  font-weight: 500;
  margin-bottom: 6px;
}
.quick-book-form .form-control,
.quick-book-form .form-select {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  color: var(--white);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  font-size: .9rem;
}
.quick-book-form .form-control::placeholder { color: rgba(255,255,255,.45); }
.quick-book-form .form-control:focus,
.quick-book-form .form-select:focus {
  background: rgba(255,255,255,.15);
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(245,166,35,.2);
  color: var(--white);
}
.quick-book-form .form-select option { background: var(--primary); color: var(--white); }
.hero-scroll-down {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255,255,255,.6);
  font-size: .8rem;
  text-align: center;
  cursor: pointer;
  animation: bounce 2s infinite;
}
.hero-scroll-down i { display: block; font-size: 1.4rem; margin-top: 6px; }
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
  background: var(--accent);
  padding: 16px 0;
  overflow: hidden;
}
.trust-bar-inner {
  display: flex;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-weight: 600;
  font-size: .88rem;
  white-space: nowrap;
}
.trust-item i { font-size: 1.1rem; }

/* ============================================================
   SERVICE CARDS
   ============================================================ */
.service-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid transparent;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--accent-dark));
  transform: scaleX(0);
  transition: transform .35s ease;
  transform-origin: left;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(245,166,35,.2);
}
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 72px; height: 72px;
  background: linear-gradient(135deg, rgba(245,166,35,.12), rgba(26,58,107,.1));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.8rem;
  color: var(--accent-dark);
  transition: var(--transition);
}
.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: var(--primary);
  transform: scale(1.08);
}
.service-card h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
}
.service-card p {
  font-size: .88rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--accent-dark);
  font-size: .85rem;
  font-weight: 600;
  margin-top: 14px;
  transition: var(--transition);
}
.service-link:hover { gap: 10px; color: var(--accent-dark); }

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-us-bg {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  position: relative;
  overflow: hidden;
}
.why-us-bg::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 400px; height: 400px;
  background: rgba(245,166,35,.06);
  border-radius: 50%;
}
.why-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-md);
  padding: 28px 22px;
  transition: var(--transition);
  height: 100%;
}
.why-card:hover {
  background: rgba(255,255,255,.1);
  transform: translateY(-5px);
  border-color: rgba(245,166,35,.3);
}
.why-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--primary);
  margin-bottom: 16px;
  flex-shrink: 0;
}
.why-card h5 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.why-card p { font-size: .86rem; color: rgba(255,255,255,.65); line-height: 1.6; }

/* ============================================================
   FLEET CARD
   ============================================================ */
.fleet-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  height: 100%;
}
.fleet-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.fleet-img-wrap {
  position: relative;
  overflow: hidden;
  height: 200px;
}
.fleet-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.fleet-card:hover .fleet-img-wrap img { transform: scale(1.06); }
.fleet-badge {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--accent);
  color: var(--primary);
  font-size: .72rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: .5px;
}
.fleet-body { padding: 22px; }
.fleet-body h4 { font-size: 1.05rem; font-weight: 700; color: var(--primary); margin-bottom: 10px; }
.fleet-meta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}
.fleet-meta span {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: .8rem;
  color: var(--text-muted);
}
.fleet-meta span i { color: var(--accent-dark); }
.fleet-price {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--accent-dark);
  margin-bottom: 14px;
}
.fleet-price small { font-size: .75rem; color: var(--text-muted); font-weight: 400; }

/* ============================================================
   PACKAGE CARD
   ============================================================ */
.package-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  height: 100%;
  border: 1px solid var(--border);
}
.package-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: var(--accent); }
.package-img {
  position: relative;
  height: 210px;
  overflow: hidden;
}
.package-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.package-card:hover .package-img img { transform: scale(1.06); }
.package-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(10,22,40,.65) 0%, transparent 60%);
}
.package-label {
  position: absolute;
  bottom: 14px; left: 14px;
  background: var(--accent);
  color: var(--primary);
  font-size: .72rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 50px;
  text-transform: uppercase;
}
.package-body { padding: 22px; }
.package-body h4 { font-size: 1.05rem; font-weight: 700; color: var(--primary); margin-bottom: 8px; }
.package-body p { font-size: .87rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 14px; }
.package-includes {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}
.package-includes span {
  background: var(--light-bg);
  font-size: .75rem;
  color: var(--text-dark);
  padding: 4px 10px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.package-includes span i { color: var(--accent-dark); font-size: .7rem; }
.package-price {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 14px;
}
.package-price .price { font-size: 1.2rem; font-weight: 700; color: var(--accent-dark); }
.package-price .price small { font-size: .73rem; color: var(--text-muted); font-weight: 400; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  border-left: 4px solid var(--accent);
  height: 100%;
}
.testimonial-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.quote-icon {
  font-size: 2.5rem;
  color: var(--accent);
  opacity: .4;
  line-height: 1;
  margin-bottom: 12px;
  font-family: Georgia, serif;
}
.testimonial-text {
  font-size: .92rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 20px;
  font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.author-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--accent);
}
.author-info .author-name { font-weight: 700; font-size: .95rem; color: var(--primary); }
.author-info .author-location { font-size: .78rem; color: var(--text-muted); }
.star-rating { color: var(--accent); font-size: .85rem; margin-bottom: 12px; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-accordion .accordion-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm) !important;
  margin-bottom: 12px;
  overflow: hidden;
}
.faq-accordion .accordion-button {
  font-weight: 600;
  font-size: .95rem;
  color: var(--primary);
  background: var(--white);
  padding: 18px 22px;
  box-shadow: none !important;
}
.faq-accordion .accordion-button:not(.collapsed) {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: var(--white);
}
.faq-accordion .accordion-button::after {
  filter: none;
}
.faq-accordion .accordion-button:not(.collapsed)::after {
  filter: brightness(0) invert(1);
}
.faq-accordion .accordion-body {
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.7;
  padding: 18px 22px;
  background: var(--light-bg);
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact-info-card {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  height: 100%;
  color: var(--white);
}
.contact-info-card h3 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.contact-info-card p { color: rgba(255,255,255,.7); font-size: .9rem; margin-bottom: 30px; }
.contact-info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 24px;
}
.ci-icon {
  width: 46px; height: 46px;
  background: rgba(245,166,35,.15);
  border: 1px solid rgba(245,166,35,.3);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--accent);
  flex-shrink: 0;
}
.ci-text .ci-label { font-size: .78rem; color: rgba(255,255,255,.5); text-transform: uppercase; letter-spacing: 1px; }
.ci-text .ci-value { font-size: .95rem; color: var(--white); font-weight: 500; line-height: 1.5; margin-top: 2px; }
.social-links-contact { display: flex; gap: 12px; margin-top: 28px; }
.social-link-btn {
  width: 42px; height: 42px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1rem;
  transition: var(--transition);
}
.social-link-btn:hover { background: var(--accent); border-color: var(--accent); color: var(--primary); }
.contact-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  box-shadow: var(--shadow-md);
  height: 100%;
}
.contact-form-card h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 6px;
}
.contact-form-card .sub-text { font-size: .9rem; color: var(--text-muted); margin-bottom: 28px; }
.form-floating label { font-size: .9rem; color: var(--text-muted); }
.form-floating .form-control:focus,
.form-floating .form-select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(245,166,35,.18);
}

/* ============================================================
   POPULAR ROUTES
   ============================================================ */
.route-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 20px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 16px;
  border: 1px solid var(--border);
}
.route-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--accent); }
.route-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, rgba(245,166,35,.12), rgba(26,58,107,.1));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--accent-dark);
  flex-shrink: 0;
  transition: var(--transition);
}
.route-card:hover .route-icon {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: var(--primary);
}
.route-info .route-name { font-weight: 700; font-size: .95rem; color: var(--primary); }
.route-info .route-distance { font-size: .8rem; color: var(--text-muted); }
.route-price { margin-left: auto; text-align: right; }
.route-price .price { font-weight: 700; color: var(--accent-dark); font-size: 1rem; }
.route-price small { font-size: .72rem; color: var(--text-muted); display: block; }

/* ============================================================
   MAP SECTION
   ============================================================ */
.map-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.map-wrapper iframe { display: block; width: 100%; height: 420px; border: none; }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,22,40,.65);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .3s ease;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay i { font-size: 2rem; color: var(--white); }

/* ============================================================
   FOOTER
   ============================================================ */
#mainFooter {
  background: linear-gradient(180deg, #0A1628 0%, #060e1a 100%);
  padding: 70px 0 0;
  color: rgba(255,255,255,.75);
}
.footer-brand .brand-desc { font-size: .87rem; line-height: 1.75; color: rgba(255,255,255,.55); margin: 14px 0 22px; max-width: 280px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 38px; height: 38px;
  background: rgba(255,255,255,.07);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.7);
  font-size: .95rem;
  transition: var(--transition);
}
.footer-social a:hover { background: var(--accent); color: var(--primary); }
.footer-heading {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}
.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 36px; height: 2px;
  background: var(--accent);
  border-radius: 2px;
}
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  color: rgba(255,255,255,.55);
  font-size: .87rem;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 7px;
}
.footer-links a:hover { color: var(--accent); padding-left: 4px; }
.footer-links a i { font-size: .65rem; color: var(--accent); }
.footer-contact-item {
  display: flex; align-items: flex-start; gap: 12px;
  margin-bottom: 16px;
}
.footer-contact-item i { color: var(--accent); font-size: 1rem; margin-top: 2px; flex-shrink: 0; }
.footer-contact-item span { font-size: .87rem; color: rgba(255,255,255,.55); line-height: 1.6; }
.footer-contact-item a { color: rgba(255,255,255,.55); }
.footer-contact-item a:hover { color: var(--accent); }
.footer-bottom {
  background: rgba(0,0,0,.35);
  margin-top: 50px;
  padding: 18px 0;
  border-top: 1px solid rgba(255,255,255,.06);
}
.footer-bottom p { font-size: .83rem; color: rgba(255,255,255,.4); margin: 0; }
.footer-bottom a { color: var(--accent); }
.footer-bottom a:hover { text-decoration: underline; }

/* ============================================================
   FLOATING BUTTONS
   ============================================================ */
.floating-whatsapp {
  position: fixed;
  bottom: 30px; right: 24px;
  z-index: 9999;
  width: 58px; height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 22px rgba(37,211,102,.5);
  color: var(--white);
  font-size: 1.7rem;
  transition: var(--transition);
  animation: pulseGreen 2.5s infinite;
}
.floating-whatsapp:hover { transform: scale(1.12); color: var(--white); background: #1ebe5d; }
.floating-call {
  position: fixed;
  bottom: 100px; right: 24px;
  z-index: 9999;
  width: 52px; height: 52px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 22px rgba(245,166,35,.5);
  color: var(--primary);
  font-size: 1.35rem;
  transition: var(--transition);
  animation: pulseGold 2.5s infinite 1s;
}
.floating-call:hover { transform: scale(1.12); color: var(--primary); }
@keyframes pulseGreen {
  0%, 100% { box-shadow: 0 4px 22px rgba(37,211,102,.5); }
  50%       { box-shadow: 0 4px 36px rgba(37,211,102,.8); }
}
@keyframes pulseGold {
  0%, 100% { box-shadow: 0 4px 22px rgba(245,166,35,.5); }
  50%       { box-shadow: 0 4px 36px rgba(245,166,35,.8); }
}
.scroll-top {
  position: fixed;
  bottom: 30px; left: 24px;
  z-index: 9999;
  width: 44px; height: 44px;
  background: var(--secondary);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow-md);
  cursor: pointer;
}
.scroll-top.visible { opacity: 1; visibility: visible; }
.scroll-top:hover { background: var(--accent); color: var(--primary); transform: translateY(-3px); }

/* ============================================================
   PAGE HEADER (inner pages)
   ============================================================ */
.page-header {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  padding: 120px 0 60px;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  background: rgba(245,166,35,.05);
  border-radius: 50%;
}
.page-header h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}
.breadcrumb-nav .breadcrumb { margin: 0; padding: 0; }
.breadcrumb-nav .breadcrumb-item,
.breadcrumb-nav .breadcrumb-item a { color: rgba(255,255,255,.6); font-size: .85rem; }
.breadcrumb-nav .breadcrumb-item.active { color: var(--accent); }
.breadcrumb-nav .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,.35); }

/* ============================================================
   LOADING SCREEN
   ============================================================ */
#pageLoader {
  position: fixed;
  inset: 0;
  background: var(--primary);
  z-index: 99999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity .5s ease;
}
#pageLoader.hide { opacity: 0; pointer-events: none; }
.loader-logo {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--white);
  font-weight: 700;
  margin-bottom: 24px;
}
.loader-logo span { color: var(--accent); }
.loader-bar {
  width: 200px; height: 3px;
  background: rgba(255,255,255,.1);
  border-radius: 3px;
  overflow: hidden;
}
.loader-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent), var(--accent-dark));
  border-radius: 3px;
  animation: loadProgress 1.5s ease-in-out forwards;
}
@keyframes loadProgress {
  0% { width: 0; }
  100% { width: 100%; }
}

/* ============================================================
   MISCELLANEOUS
   ============================================================ */
.highlight-bg {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
}
.cta-section {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  padding: 70px 0;
  text-align: center;
}
.cta-section h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 14px;
}
.cta-section p { color: rgba(10,22,40,.75); font-size: 1.05rem; margin-bottom: 30px; }

.counter-section { background: var(--light-bg); padding: 60px 0; }
.counter-box { text-align: center; padding: 20px; }
.counter-number {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--accent-dark);
  display: block;
  line-height: 1;
}
.counter-label { font-size: .85rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; margin-top: 8px; font-weight: 600; }

/* About Page Specific */
.about-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.about-img-wrap img { border-radius: var(--radius-lg); }
.about-badge-float {
  position: absolute;
  bottom: 24px; left: 24px;
  background: var(--accent);
  color: var(--primary);
  padding: 12px 20px;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: .9rem;
  box-shadow: var(--shadow-md);
}
.about-badge-float span { display: block; font-size: 1.6rem; font-family: var(--font-heading); line-height: 1; }
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: .95rem;
  color: var(--text-dark);
}
.check-list li i { color: var(--accent-dark); font-size: 1rem; margin-top: 2px; flex-shrink: 0; }

/* Privacy / Terms */
.legal-content h3 { font-size: 1.2rem; font-weight: 700; color: var(--primary); margin: 28px 0 10px; }
.legal-content p, .legal-content li { font-size: .93rem; color: var(--text-muted); line-height: 1.8; }
.legal-content ul { list-style: disc; padding-left: 20px; }
