/* ===========================
   Base + Design Tokens
=========================== */

:root {
  --color-primary: #f4a200; /* saffron/yellow */
  --color-primary-soft: #fff3cd;
  --color-dark: #22252d; /* charcoal */
  --color-muted: #6c757d;
  --color-bg-light: #f8f9fa;
  --color-white: #ffffff;

  --radius-sm: 0.375rem;
  --radius-md: 0.75rem;
  --radius-lg: 1.25rem;

  --shadow-soft: 0 8px 20px rgba(0, 0, 0, 0.06);
  --shadow-strong: 0 16px 40px rgba(0, 0, 0, 0.12);

  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2.5rem;
}

/* ===========================
   Global
=========================== */

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", "Inter", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  color: var(--color-dark);
  background-color: #ffffff;
  line-height: 1.6;
}

/* Smaller top/bottom spacing between sections by default */
section {
  scroll-margin-top: 80px; /* for anchor nav */
}

/* Links */
a {
  color: var(--color-primary);
}

a:hover {
  color: #d98600;
}

/* ===========================
   Top Info Bar
=========================== */

.top-info-bar {
  background: #1f2329;
  font-size: 0.85rem;
}

/* ===========================
   Navbar
=========================== */

.navbar {
  font-size: 0.95rem;
}

.navbar .navbar-brand {
  padding-top: 0.35rem;
  padding-bottom: 0.35rem;
}

.brand-icon {
  width: 38px;
  height: 38px;
  font-size: 1.1rem;
}

.navbar-nav .nav-link {
  padding: 0.5rem 0.9rem;
  color: var(--color-dark);
  font-weight: 500;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link:focus,
.navbar-nav .nav-link:hover {
  color: var(--color-primary);
}

/* ===========================
   Buttons
=========================== */

.btn-primary-custom {
  background: linear-gradient(135deg, #ffb300, #ff9100);
  border: none;
  color: #222;
  font-weight: 600;
  padding: 0.6rem 1.4rem;
  border-radius: 999px;
  box-shadow: 0 6px 18px rgba(255, 179, 0, 0.35);
  transition: all 0.2s ease-in-out;
}

.btn-primary-custom:hover,
.btn-primary-custom:focus {
  background: linear-gradient(135deg, #ff9100, #ffb300);
  color: #222;
  transform: translateY(-1px);
  box-shadow: 0 10px 25px rgba(255, 179, 0, 0.4);
}

.btn-outline-custom {
  border-radius: 999px;
  border-width: 1.5px;
  border-color: rgba(0, 0, 0, 0.08);
  color: var(--color-dark);
  padding: 0.55rem 1.3rem;
  background-color: #ffffff;
  transition: all 0.2s ease-in-out;
}

.btn-outline-custom:hover,
.btn-outline-custom:focus {
  border-color: var(--color-primary);
  color: var(--color-dark);
  box-shadow: var(--shadow-soft);
}

/* ===========================
   Hero Section
=========================== */

.hero-section {
  background: radial-gradient(circle at top left, #fff6de, #ffffff);
  padding-top: var(--space-xl);
  padding-bottom: var(--space-xl);
}

.hero-section h1 {
  font-size: clamp(2rem, 2.7vw + 1.4rem, 2.9rem);
  font-weight: 700;
}

.hero-section .lead {
  font-size: 1rem;
}

.hero-list li {
  margin-bottom: 0.35rem;
  font-size: 0.95rem;
}

/* Booking Card */

.booking-card {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-strong);
}

.booking-card .form-label {
  font-size: 0.9rem;
  font-weight: 500;
}

.booking-card .form-control,
.booking-card .form-select,
#contactForm .form-control,
#contactForm .form-select {
  border-radius: var(--radius-sm);
  border-color: #dee2e6;
  font-size: 0.9rem;
}

.booking-card .form-control:focus,
.booking-card .form-select:focus,
#contactForm .form-control:focus,
#contactForm .form-select:focus {
  border-color: rgba(244, 162, 0, 0.6);
  box-shadow: 0 0 0 0.15rem rgba(244, 162, 0, 0.25);
}

/* ===========================
   Packages
=========================== */

.package-card {
  border-radius: var(--radius-md);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.package-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-strong);
}

/* ===========================
   Offer Banner
=========================== */

.offer-banner {
  background: radial-gradient(circle at right, #ffbb33, #f39c12);
}

.offer-banner-inner {
  color: var(--color-white);
}

.offer-banner .btn-light {
  border-radius: 999px;
  padding-inline: 1.5rem;
}

/* ===========================
   About
=========================== */

.about-image-wrapper img {
  border-radius: var(--radius-lg);
}

/* ===========================
   Why Choose Us
=========================== */

.feature-card {
  background-color: #ffffff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(0, 0, 0, 0.02);
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-primary-soft);
  color: #c27a00;
  font-size: 1.3rem;
}

/* ===========================
   Fleet
=========================== */

#fleet .nav-pills .nav-link {
  border-radius: 999px;
  padding: 0.35rem 1.1rem;
  font-size: 0.9rem;
  color: var(--color-dark);
  border: 1px solid transparent;
}

#fleet .nav-pills .nav-link.active {
  background-color: var(--color-primary-soft);
  color: #c27a00;
  border-color: rgba(244, 162, 0, 0.45);
}

.fleet-card {
  border-radius: var(--radius-md);
}

/* ===========================
   Testimonials
=========================== */

.testimonial-card {
  border-radius: var(--radius-md);
  background-color: #ffffff;
}

/* Carousel controls color tweak for light background */
#testimonialsCarousel .carousel-control-prev-icon,
#testimonialsCarousel .carousel-control-next-icon {
  filter: invert(1) grayscale(100);
}

/* ===========================
   FAQ
=========================== */

#faqAccordion .accordion-button {
  font-weight: 500;
}

#faqAccordion .accordion-button:focus {
  box-shadow: 0 0 0 0.15rem rgba(244, 162, 0, 0.25);
}

/* ===========================
   Contact Section
=========================== */

#contact .card {
  border-radius: var(--radius-md);
}

.map-placeholder {
  padding: 0.6rem 0.75rem;
  border-radius: var(--radius-sm);
  border: 1px dashed rgba(0, 0, 0, 0.12);
}

/* ===========================
   Footer
=========================== */

.footer-section {
  background-color: #11141a;
  color: #d3d5db;
  font-size: 0.9rem;
}

.footer-section h3,
.footer-section h4 {
  color: #ffffff;
}

.footer-section p,
.footer-section li,
.footer-section a {
  color: #9ea2b1;
}

.footer-section a:hover {
  color: var(--color-primary);
}

/* ===========================
   Mobile Call & WhatsApp Bar
=========================== */

.mobile-call-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ffffff;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.12);
  padding: 0.45rem 0;
  z-index: 1030;
}

.mobile-call-bar .call-btn {
  border-radius: 0.75rem;
  font-weight: 600;
}

.mobile-call-bar .whatsapp-btn {
  border-radius: 0.75rem;
  font-weight: 600;
}

/* Ensure content isn't hidden behind bar on small screens */
@media (max-width: 767.98px) {
  body {
    padding-bottom: 64px; /* approx height of bar */
  }
}

/* ===========================
   Back to Top Button
=========================== */

.back-to-top-btn {
  position: fixed;
  right: 1rem;
  bottom: 1.2rem;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: none;
  background-color: var(--color-primary);
  color: #222;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  display: none; /* shown via JS */
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 1030;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.back-to-top-btn:hover {
  background-color: #ff9100;
  transform: translateY(-1px);
}

/* ===========================
   Utility Tweaks
=========================== */

.bg-warning-subtle {
  background-color: var(--color-primary-soft) !important;
}

.text-warning {
  color: #f4a200 !important;
}

/* Reduce card padding slightly on small devices */
@media (max-width: 575.98px) {
  .card-body {
    padding: 1.1rem;
  }
}

/* ===========================
   Typography / Layout Media
=========================== */

/* Medium screens */
@media (min-width: 768px) and (max-width: 991.98px) {
  .hero-section {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .booking-card {
    margin-top: 1rem;
  }
}

/* Large screens and up */
@media (min-width: 992px) {
  .hero-section {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}

/* Slightly tighter footer on very small screens */
@media (max-width: 575.98px) {
  .footer-section {
    padding-top: 2.25rem;
    padding-bottom: 2rem;
  }
}

/* ===========================
   Form Error State (for JS)
=========================== */

.form-control.is-invalid,
.form-select.is-invalid {
  border-color: #dc3545 !important;
}

.form-control.is-invalid:focus,
.form-select.is-invalid:focus {
  box-shadow: 0 0 0 0.15rem rgba(220, 53, 69, 0.25) !important;
}
/* Fleet visual improvements */

/* Fleet tabs */
.fleet-nav .nav-link {
  border-radius: 999px;
  padding: 0.4rem 1.4rem;
  font-weight: 500;
  color: #555;
  background: #f5f5f5;
  margin: 0 0.25rem;
}

.fleet-nav .nav-link.active {
  background: #ffcf5c;
  color: #1d1d1d;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.08);
}

/* Card shell */
.fleet-card {
  border-radius: 24px;
  overflow: hidden;
}

/* Image side */
.fleet-img-wrapper {
  position: relative;
}

.fleet-hero-img {
  display: block;
}

.fleet-img-gradient {
  position: absolute;
  inset: auto 0 0 0;
  height: 40%;
  background: linear-gradient(to top, rgba(0,0,0,0.55), transparent);
  pointer-events: none;
}

.fleet-img-badges {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.fleet-pill-badge {
  background: rgba(255, 207, 92, 0.95);
  color: #7a4b00;
  font-size: 0.7rem;
  font-weight: 600;
  border-radius: 999px;
  padding: 0.25rem 0.8rem;
}

.fleet-capacity-badge {
  background: rgba(255, 255, 255, 0.95);
  color: #333;
  font-size: 0.7rem;
  border-radius: 999px;
  padding: 0.25rem 0.8rem;
}

/* Specs */
.fleet-spec-box {
  background: linear-gradient(90deg, #fff6df, #ffffff);
  border-radius: 18px;
  padding: 0.75rem 1rem;
}

.fleet-meta-list li {
  margin-bottom: 0.25rem;
}

.fleet-label {
  font-weight: 600;
  color: #444;
}

.fleet-value {
  color: #555;
}

/* Tags */
.fleet-tag {
  background: #f5f3ff;
  color: #4b3cbf;
  font-size: 0.7rem;
  font-weight: 500;
  border-radius: 999px;
  padding: 0.3rem 0.8rem;
}

/* Responsive tweaks */
@media (max-width: 767.98px) {
  .fleet-card {
    border-radius: 18px;
  }
  .fleet-spec-box {
    padding: 0.75rem;
  }
}
/* ===========================
   GLOBAL SECTION HEADINGS
   =========================== */

/* =========================================
   GLOBAL SECTION HEADING SYSTEM
   ========================================= */

/* ================ SECTION HEADINGS ================ */

.section-heading {
  max-width: 720px;
  margin: 0 auto 3rem;
}

.section-subtitle {
  display: block;
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: #f5a623; /* same gold you used */
  margin-bottom: 0.4rem;
}

.section-title {
  font-size: 2.1rem;
  font-weight: 700;
  color: #f5a623;
  margin-bottom: 0.75rem;
}

@media (min-width: 992px) {
  .section-title {
    font-size: 2.4rem;
  }
}

/* Yellow bar under title */
.section-title::after {
  content: "";
  width: 60px;
  height: 3px;
  background: #f4b000;
  border-radius: 999px;
  display: block;
  margin: 0.5rem auto 0 auto;
}

/* Description */
.section-desc {
  font-size: 0.95rem;
  color: #6a6a6a;
  margin-top: 0.5rem;
}

/* Responsive tweak */
@media (max-width: 576px) {
  .section-title {
    font-size: 1.7rem;
  }
  .section-subtitle {
    font-size: 0.72rem;
    letter-spacing: 0.12em;
  }
}

/* ===========================
   PACKAGES SECTION
   =========================== */

.package-card {
  border-radius: 20px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.package-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.09);
}

/* Image wrapper with overlay badges */
.package-img-wrapper {
  position: relative;
  overflow: hidden;
}

.package-img {
  height: 230px;
  width: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.package-card:hover .package-img {
  transform: scale(1.05);
}

.package-price-badge {
  position: absolute;
  left: 16px;
  bottom: 16px;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  background: rgba(255, 205, 80, 0.95);
  color: #3b2b00;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.package-label-badge {
  position: absolute;
  right: 16px;
  top: 16px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: rgba(15, 23, 42, 0.86);
  color: #fff;
}

/* Text styles */
.package-title {
  color: #141414;
  font-weight: 600;
}

.package-subtitle {
  color: #7a7a7a;
}

/* Bullet list with spacing */
.package-points {
  padding-left: 1.1rem;
}

.package-points li + li {
  margin-top: 0.2rem;
}

/* Mobile tweaks */
@media (max-width: 576px) {
  .package-img {
    height: 200px;
  }
  .package-card {
    border-radius: 16px;
  }
}

/* ========================
   HERO SECTION
========================= */

.hero-section {
  position: relative;
  padding-top: 6rem;
  padding-bottom: 6rem;
  color: #000;
  overflow: hidden;
}

/* Background Image */
.hero-bg {
  background-image: url('https://images.pexels.com/photos/452738/pexels-photo-452738.jpeg');
  background-size: cover;
  background-position: center;
  position: absolute;
  inset: 0;
  z-index: 1;
}

/* Dark Overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(1px);
  z-index: 2;
}

/* Foreground Content */
.hero-section .container {
  position: relative;
  z-index: 3;
}

/* Badge */
.hero-badge {
  display: inline-block;
  background: rgba(255, 193, 7, 0.25);
  color: #ffcd3c;
  padding: 0.35rem 0.9rem;
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: 999px;
}

/* Title */
.hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffffff;
}

/* Lead */
.hero-lead {
  font-size: 1.1rem;
  color: #e5e5e5;
}

/* Bullet list */
.hero-list li {
  font-size: 0.95rem;
  margin-bottom: 0.4rem;
  color: #f1f1f1;
}

/* Supporting text */
.hero-small {
  font-size: 0.85rem;
  color: #ccc;
}

/* Booking Form Style: Glass effect */
.glass-card {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-radius: 18px;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
  }
}

/* ============ OFFER BANNER ============ */

.offer-banner {
  background: radial-gradient(circle at top left, #ffc857 0, #ffb347 18%, #f39c12 40%, #e67e22 65%, #d35400 100%);
  position: relative;
  overflow: hidden;
}

/* subtle pattern / glow */
.offer-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 10% 10%, rgba(255,255,255,0.18), transparent 60%),
    radial-gradient(circle at 90% 80%, rgba(0,0,0,0.22), transparent 60%);
  opacity: 0.7;
  pointer-events: none;
}

.offer-banner-inner {
  position: relative;
  z-index: 1;
  padding: 1.5rem 1.75rem;
  border-radius: 1.5rem;
  background: linear-gradient(135deg, rgba(0,0,0,0.25), rgba(0,0,0,0.08));
  box-shadow: 0 18px 35px rgba(0,0,0,0.22);
}

/* Badge on left */
.offer-badge {
  display: inline-flex;
  align-items: center;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  background: rgba(0,0,0,0.3);
  color: #ffdd7c;
}

.offer-badge i {
  font-size: 0.9rem;
}

/* Headline highlight */
.offer-highlight {
  color: #ffe9b3;
}

/* % OFF text */
.offer-percent {
  font-weight: 700;
  color: #ffffff;
}

/* Right-side small helper text */
.offer-tag {
  max-width: 220px;
}

/* Call button */
.btn-offer-call {
  border-radius: 999px;
  font-weight: 600;
  padding: 0.65rem 1.6rem;
  border: none;
  background: #ffffff;
  color: #e67e22;
  box-shadow: 0 8px 18px rgba(0,0,0,0.25);
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.btn-offer-call:hover,
.btn-offer-call:focus {
  background: #fff7ea;
  color: #d35400;
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.3);
}

/* Responsive tweaks */
@media (max-width: 767.98px) {
  .offer-banner-inner {
    padding: 1.25rem 1.25rem;
  }
  
  .offer-tag {
    text-align: left !important;
    max-width: 100%;
  }
}
/* ------ Why section background ------ */
.why-section {
  background: linear-gradient(180deg, #f8fafc 0%, #f4f5f7 100%);
}

/* ------ Reusable section heading style (you can reuse for other sections too) ------ */
.section-heading {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.section-kicker {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: #f5a623; /* warm accent */
  margin-bottom: 0.4rem;
}

.section-title {
  font-size: clamp(1.75rem, 2vw + 1rem, 2.2rem);
  font-weight: 700;
  color: #141821;
  margin-bottom: 0.35rem;
}

.section-subtitle {
  font-size: 0.95rem;
  color: #f5a623;
  margin-bottom: 0;
}

/* small underline accent under title */


/* ------ Feature cards (Why choose) ------ */

.feature-card-why {
  position: relative;
  padding: 2.3rem 1.9rem 2rem;
  border-radius: 1.6rem;
  background: #ffffff;
  box-shadow:
    0 18px 42px rgba(15, 23, 42, 0.06),
    0 0 0 1px rgba(148, 163, 184, 0.16);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
  border: 1px solid transparent;
  overflow: hidden;
}

.feature-card-why::before {
  /* subtle top highlight */
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(245, 166, 35, 0.18), transparent 55%);
  opacity: 0;
  transition: opacity 0.2s ease;
  pointer-events: none;
}

.feature-card-why:hover {
  transform: translateY(-6px);
  box-shadow:
    0 26px 55px rgba(15, 23, 42, 0.12),
    0 0 0 1px rgba(245, 166, 35, 0.25);
}

.feature-card-why:hover::before {
  opacity: 1;
}

/* Icon styles */
.feature-icon-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 1.1rem;
}

.feature-icon {
  width: 64px;
  height: 64px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at 30% 20%, #ffe9b0 0%, #ffc857 40%, #f5a623 100%);
  box-shadow: 0 8px 16px rgba(245, 166, 35, 0.35);
  color: #7b4a00;
  font-size: 1.5rem;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.feature-card-why:hover .feature-icon {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 12px 24px rgba(245, 166, 35, 0.5);
}

/* Text */
.feature-title {
  font-size: 1rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 0.4rem;
}

.feature-text {
  font-size: 0.9rem;
  color: #6b7280;
  margin-bottom: 0;
}

/* mobile tweaks */
@media (max-width: 575.98px) {
  .feature-card-why {
    padding: 1.8rem 1.4rem 1.6rem;
  }

  .feature-title {
    font-size: 0.98rem;
  }

  .feature-text {
    font-size: 0.86rem;
  }
}
/* Contact section background */
.contact-section {
  background: radial-gradient(circle at top left, #fff7e6 0, #f7fafc 45%, #f3f4f8 100%);
}

/* Shared contact cards */
.contact-card {
  border-radius: 18px;
  border: 1px solid rgba(15, 23, 42, 0.03);
}

.contact-form-card {
  backdrop-filter: blur(4px);
}

/* Small gold badge at top-right */
.contact-badge {
  background: #fff7e0;
  color: #c27c00;
  font-size: 0.7rem;
  border-radius: 999px;
  padding: 0.25rem 0.75rem;
}

/* Info rows */
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1.1rem;
}

.contact-info-icon {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: rgba(212, 155, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #d49b00;
  flex-shrink: 0;
}

.contact-info-title {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.2rem;
}

/* Map pill */
.map-placeholder {
  background: #fffaf1;
  border-radius: 999px;
  padding: 0.65rem 0.9rem;
  border: 1px dashed rgba(212, 155, 0, 0.35);
}

.map-icon {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: #ffd272;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #7a4a00;
}

/* Bottom CTA strip */
.contact-cta-strip {
  background: linear-gradient(135deg, #ffb52c, #ff930f);
  border-radius: 14px;
  padding: 0.9rem 1rem;
  color: #fff;
  box-shadow: 0 12px 25px rgba(255, 159, 36, 0.45);
}

.contact-cta-icon {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

/* Form tweaks */
#contactForm .form-control {
  border-radius: 10px;
  border-color: rgba(148, 163, 184, 0.4);
  transition: all 0.15s ease;
}

#contactForm .form-control:focus {
  border-color: #d49b00;
  box-shadow: 0 0 0 0.2rem rgba(212, 155, 0, 0.18);
}

/* Small responsive spacing improvement */
@media (max-width: 767.98px) {
  .contact-section .section-heading {
    margin-bottom: 2.25rem;
  }
}
/* Fix button height & baseline alignment */
.action-btn {
  height: 52px;               /* same height for both */
  padding: 0 28px;            /* consistent padding */
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  white-space: nowrap;
}

/* Align form footer row perfectly */
.form-actions {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

/* Fix text alignment vertical centering */
.form-actions span {
  line-height: 1.4;
}

/* Prevent uneven alignment on mobile */
@media (max-width: 768px) {
  .action-btn {
    width: 100%;
    height: 48px;
  }
}
.contact-card .card-body {
  padding: 28px;
}

.contact-form-card .card-body {
  padding: 28px 32px;
}
.contact-cta-strip {
  padding: 18px 20px;
  border-radius: 16px;
}

.contact-cta-strip .btn {
  height: 46px;
  padding: 0 22px;
  border-radius: 10px;
  font-weight: 600;
}
.map-placeholder {
  display: flex;
  align-items: center;
  padding: 12px 16px;
  border-radius: 12px;
  margin-bottom: 18px;
}
/* FAQ – container */
.faq-accordion {
  max-width: 900px;
  margin: 0 auto;
}

/* FAQ card */
.faq-item {
  border: none;
  border-radius: 16px;
  margin-bottom: 1rem;
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.05);
  overflow: hidden;
}

/* Question row */
.faq-question {
  font-weight: 500;
  font-size: 1rem;
  padding: 1.1rem 1.5rem;
  background-color: #ffffff;
  color: #111827;
  box-shadow: none;
  transition: background-color 0.2s ease, color 0.2s ease,
              padding-left 0.2s ease;
}

/* Remove default Bootstrap chevron image */
.faq-question::after {
  background-image: none !important;
  content: "+";
  font-size: 1.25rem;
  font-weight: 600;
  color: #f4aa1b;
  transform: none;
  transition: transform 0.2s ease, color 0.2s ease;
}

/* Hover state */
.faq-question:hover {
  background-color: #fffaf1;
  padding-left: 1.8rem;
}

/* Open (active) state */
.faq-question:not(.collapsed) {
  background-color: #fff4dd;
  color: #111827;
}

/* Change + to – when open */
.faq-question:not(.collapsed)::after {
  content: "–";
  color: #e09609;
}

/* Answer body */
.faq-answer {
  padding: 0.75rem 1.5rem 1.3rem;
  background: #fffdf8;
  border-top: 1px solid rgba(249, 168, 38, 0.25);
  font-size: 0.95rem;
  color: #4b5563;
  line-height: 1.6;
}

/* Small screens – keep it clean */
@media (max-width: 768px) {
  .faq-question {
    font-size: 0.98rem;
    padding: 1rem 1.25rem;
  }
  .faq-answer {
    padding: 0.75rem 1.25rem 1.2rem;
  }
}
/* === Testimonials section === */

.testimonial-slider {
  position: relative;
}

/* Card look */
.testimonial-card {
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.09);
  padding: 2.25rem 2.5rem;
  position: relative;
  overflow: hidden;
}

/* soft gradient strip at bottom */
.testimonial-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 4px;
  background: linear-gradient(90deg, #f59e0b, #facc15);
}

/* quote icon badge */
.testimonial-quote-icon {
  position: absolute;
  top: 18px;
  left: 22px;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: #fff7e6;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f59e0b;
  font-size: 1.1rem;
}

/* push real content slightly to the right of the icon */
.testimonial-card .card-body {
  padding-left: 4.2rem;
}

/* rating row */
.testimonial-rating i {
  font-size: 0.9rem;
}

/* main testimonial copy */
.testimonial-text {
  font-size: 1.02rem;
  line-height: 1.7;
  color: #4b5563;
}

/* arrows */
.testimonial-control {
  width: auto;
}

.testimonial-arrow {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid #d1d5db;
  background: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.08);
  transition: all 0.2s ease;
}

.testimonial-arrow i {
  font-size: 1rem;
  color: #6b7280;
}

.testimonial-control.carousel-control-prev {
  left: 8%;
}

.testimonial-control.carousel-control-next {
  right: 8%;
}

.testimonial-arrow:hover {
  border-color: #f59e0b;
  transform: translateY(-2px);
}

.testimonial-arrow:hover i {
  color: #f59e0b;
}

/* hide default bootstrap icon bg */
.carousel-control-prev-icon,
.carousel-control-next-icon {
  display: none;
}

/* mobile */
@media (max-width: 768px) {
  .testimonial-card {
    padding: 1.8rem 1.6rem;
  }

  .testimonial-card .card-body {
    padding-left: 3.6rem;
  }

  .testimonial-control.carousel-control-prev {
    left: 3%;
  }

  .testimonial-control.carousel-control-next {
    right: 3%;
  }

  .testimonial-arrow {
    width: 38px;
    height: 38px;
  }
}
/* === Footer === */

.footer-section {
  background: #020617; /* very dark navy */
  color: #e5e7eb;
  font-size: 0.9rem;
}

.footer-top {
  padding-bottom: 0.5rem;
}

.footer-logo-icon {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: radial-gradient(circle at 20% 0, #facc15, #f59e0b);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #111827;
  font-size: 1.2rem;
}

.footer-pill-badge {
  background: rgba(250, 204, 21, 0.12);
  color: #facc15;
  border-radius: 999px;
  padding: 0.1rem 0.7rem;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.text-footer-muted {
  color: #9ca3af;
}

.footer-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.footer-chip {
  background: rgba(15, 23, 42, 0.8);
  border-radius: 999px;
  padding: 0.25rem 0.65rem;
  font-size: 0.75rem;
  color: #e5e7eb;
}

.footer-links li {
  margin-bottom: 0.35rem;
}

.footer-link {
  color: #9ca3af;
  text-decoration: none;
  transition: color 0.15s ease, transform 0.15s ease;
}

.footer-links i {
  color: #facc15;
}

.footer-link:hover {
  color: #facc15;
  transform: translateX(2px);
}

.footer-visitors .visitor-count-number {
  font-weight: 600;
  color: #facc15;
}

.footer-divider {
  border-color: rgba(148, 163, 184, 0.3);
}

.footer-bottom {
  color: #9ca3af;
}

.footer-credit-link {
  color: #facc15;
  font-weight: 600;
  text-decoration: none;
}

.footer-credit-link:hover {
  text-decoration: underline;
}

/* === Mobile call bar === */

.mobile-call-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.6rem 0;
  background: transparent;
  z-index: 1050;
}

.mobile-call-inner {
  background: linear-gradient(90deg, #f97316, #facc15);
  border-radius: 999px;
  padding: 0.45rem 0.75rem;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

.mobile-call-inner .btn {
  font-size: 0.82rem;
  padding: 0.35rem 0.45rem;
}

/* keep existing .call-btn / .whatsapp-btn styles if you have them; optional tweaks: */
.call-btn {
  border-radius: 999px;
  font-weight: 500;
}

.whatsapp-btn {
  border-radius: 999px;
  font-weight: 500;
}

/* Responsive */
@media (max-width: 576px) {
  .footer-section {
    padding-bottom: 4.5rem; /* space for mobile bar */
  }

  .footer-top {
    text-align: left;
  }
}
/* === Sticky Floating Buttons === */

.sticky-actions {
  position: fixed;
  right: 20px;
  bottom: 120px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 99999;
}

/* Base button style */
.sticky-btn {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: white;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

/* Call button */
.sticky-call {
  background: #f59e0b; /* Sannidhi Yellow-orange */
}

/* WhatsApp button */
.sticky-whatsapp {
  background: #25D366;
}

/* Hover animation */
.sticky-btn:hover {
  transform: translateY(-3px) scale(1.07);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
}

/* Mobile adjustments */
@media (max-width: 576px) {
  .sticky-actions {
    right: 15px;
    bottom: 95px;
  }

  .sticky-btn {
    width: 48px;
    height: 48px;
    font-size: 20px;
  }
}
.map-container {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}
/* Reduce overall section padding */
.contact-section {
  padding-top: 3rem !important;
  padding-bottom: 3rem !important;
}

/* Reduce spacing inside cards */
.contact-card .card-body {
  padding: 1.5rem 1.5rem !important;
}

/* Reduce spacing between elements */
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 0.9rem; /* Reduced from 1.4rem */
}

.contact-info-title {
  margin-bottom: 3px;
}

/* Map container spacing tightened */
.map-container {
  border-radius: 10px;
  overflow: hidden;
  margin-top: 1rem !important;
  height: 200px;
}

.map-container iframe {
  height: 200px !important;
}

/* CTA Strip spacing cleaned */


/* Fix form card spacing */
.contact-form-card .card-body {
  padding: 1.5rem !important;
}

.contact-form-card h3 {
  margin-bottom: 4px !important;
}

/* Reduce gap between form items */
#contactForm .mb-3 {
  margin-bottom: 0.9rem !important;
}

/* Action buttons alignment and spacing */
.form-actions {
  gap: 0.75rem !important;
}

.action-btn {
  padding: 0.55rem 1.2rem !important;
  font-size: 0.95rem !important;
}

/* Reduce section heading bottom margin */
.section-heading {
  margin-bottom: 2.5rem !important;
}

/* Card height fit-content */
.contact-card, 
.contact-form-card {
  height: auto !important;
}

/* On large screens reduce white gap */
@media (min-width: 992px) {
  .contact-section .row {
    align-items: flex-start !important;
  }
}
.contact-section {
  padding-top: 2rem !important;
  padding-bottom: 2rem !important;
}
/* --- Layout fix: because header is fixed --- */
body {
  padding-top: 120px; /* adjust if header height changes */
}

/* --- Fixed header wrapper --- */
.sh-header {
  background: #0b1120;
  z-index: 1060;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.4);
}

/* --- Top info bar --- */
.top-info-bar {
  background: transparent;
  color: #e5e7eb;
  font-size: 0.85rem;
  border-bottom: 1px solid rgba(148, 163, 184, 0.25);
}

.top-info-bar i {
  font-size: 0.9rem;
}

.top-info-left .separator {
  width: 1px;
  height: 18px;
  background: rgba(148, 163, 184, 0.6);
  display: inline-block;
}

.top-helpline-badge {
  background: #fbbf24;
  color: #111827;
  border-radius: 999px;
  font-weight: 600;
  padding: 0.25rem 0.8rem;
}

/* --- Main navbar --- */
.sh-navbar {
  background: transparent;
  padding-top: 0.45rem;
  padding-bottom: 0.7rem;
  transition: all 0.25s ease;
}

/* “Floating pill” nav container */
.sh-navbar .container {
  background: #ffffff;
  border-radius: 999px;
  padding: 0.4rem 1.25rem;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.22);
}

/* Shrink when scrolling */
.sh-header.scrolled .sh-navbar {
  padding-top: 0.25rem;
  padding-bottom: 0.4rem;
}
.sh-header.scrolled .sh-navbar .container {
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.32);
}

/* Brand */
.brand-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: radial-gradient(circle at 25% 25%, #ffe9b0, #f59e0b);
  color: #ffffff;
  font-size: 1.25rem;
  box-shadow: 0 10px 20px rgba(245, 158, 11, 0.6);
}

.brand-text span {
  color: #111827;
}
.brand-text small {
  color: #6b7280;
  font-size: 0.75rem;
}

/* Nav links */
.sh-navbar .nav-link {
  font-weight: 500;
  font-size: 0.95rem;
  color: #4b5563;
  padding: 0.35rem 0.9rem;
  position: relative;
  transition: color 0.2s ease;
}

.sh-navbar .nav-link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -0.35rem;
  width: 0;
  height: 2px;
  background: #f59e0b;
  border-radius: 999px;
  transform: translateX(-50%);
  transition: width 0.2s ease;
}

.sh-navbar .nav-link:hover,
.sh-navbar .nav-link:focus {
  color: #f59e0b;
}

.sh-navbar .nav-link.active {
  color: #111827;
  font-weight: 600;
}

.sh-navbar .nav-link.active::after,
.sh-navbar .nav-link:hover::after {
  width: 60%;
}

/* Call button */
.nav-call-btn {
  background: linear-gradient(135deg, #fbbf24, #f97316);
  color: #111827;
  border-radius: 999px;
  padding: 0.5rem 1.5rem;
  font-weight: 600;
  border: none;
  box-shadow: 0 12px 26px rgba(249, 115, 22, 0.55);
}
.nav-call-btn:hover {
  color: #111827;
  filter: brightness(1.04);
}

/* Mobile adjustments */
@media (max-width: 991.98px) {
  .sh-navbar .container {
    border-radius: 1rem;
  }
  .sh-navbar .nav-link {
    padding: 0.45rem 0;
  }
  .nav-call-btn {
    width: 100%;
    justify-content: center;
    margin-top: 0.4rem;
  }
}
/* Header really fixed */
.sh-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1060;
}

/* So content doesn’t hide under header */
body {
  padding-top: 120px;   /* tweak if needed */
}
.brand-logo-wrapper {
  display: flex;
  align-items: center;
}

.brand-logo {
  height: 60px;          /* adjust based on design */
  width: auto;
  object-fit: contain;
}
