/* main.css - Custom styles for Aaradhya Tour & Travel */

:root {
  --primary-color: #007bff;
  --cta-color: #FF5733;
  --text-dark: #222;
  --text-light: #666;
  --bg-light: #f8f9fa;
  --header-top-bg: #111;
  --header-top-color: #fff;
  --header-accent: #FFB400;
  --header-radius: 2.2rem;
}

* {
  font-family: 'Poppins', sans-serif;
}

body {
  line-height: 1.6;
  color: var(--text-dark);
}

/* ---------- TOPBAR ---------- */
.topbar {
  background: linear-gradient(135deg, #ff9800 0%, #FF5733 100%);
  color: #fff;
  font-size: 0.95rem;
}

.topbar-text {
  color: #ffffff;
  font-weight: 500;
}

/* ---------- NAVBAR ---------- */
.navbar {
  background: #ffffff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.navbar-nav .nav-link {
  font-weight: 500;
  font-size: 1.08rem;
  margin: 0 0.7rem;
  color: #333 !important;
  transition: 0.2s;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: #ff5733 !important;
}

.contact-chip {
  display: flex;
  align-items: center;
  overflow: hidden;
  text-decoration: none;
}

.contact-chip span:first-child {
  background: #fff;
  color: #ff5733;
  padding: 0.4rem 1rem;
}

.contact-chip span:last-child {
  color: #fff;
  padding: 0.4rem 1rem;
}


/* ---------- OFFCANVAS ---------- */
.offcanvas-body .nav-link {
  padding: 0.8rem 0;
  font-size: 1.1rem;
  border-bottom: 1px solid #f1f1f1;
}

.offcanvas-body .nav-link:hover {
  color: #ff5733 !important;
  background: #fff5f0;
}

@media (max-width: 991px) {
  .navbar-icons {
    display: none;
  }

  .topbar {
    text-align: center;
  }

  .topchip {
    width: 100%;
    justify-content: center;
  }

  .topbar-right {
    width: 100%;
    justify-content: center;
  }
}


/* --- BOOKING FORM CONTAINER (Positioning) --- */
.booking-form-container {
  position: absolute;
  bottom: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1140px;
  z-index: 20;
}

/* --- BOOKING FORM WRAPPER --- */
.booking-form-wrapper {
  position: relative;
  z-index: 10;
}

/* --- PREMIUM BOOKING FORM --- */
.booking-form {
  position: relative;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border: 1px solid rgba(255, 180, 0, 0.15);
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.15),
    0 8px 24px rgba(255, 180, 0, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  border-radius: 1.5rem !important;
  padding: 2.5rem 3rem !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.booking-form:hover {
  box-shadow:
    0 25px 70px rgba(0, 0, 0, 0.18),
    0 10px 30px rgba(255, 180, 0, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transform: translateY(-2px);
}

/* Gradient Accent Bar */
.booking-form-accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #FFB400 0%, #FF9800 50%, #FF5733 100%);
  border-radius: 1.5rem 1.5rem 0 0;
  box-shadow: 0 2px 8px rgba(255, 180, 0, 0.3);
}

.booking-form:focus-within {
  box-shadow:
    0 25px 70px rgba(0, 0, 0, 0.18),
    0 10px 30px rgba(255, 180, 0, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

/* --- BOOKING FORM TITLE --- */
.booking-form-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: #111;
  letter-spacing: 0.5px;
  margin-top: 0.5rem;
  margin-bottom: 2rem !important;
  position: relative;
  font-family: 'Poppins', 'Inter', sans-serif;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.booking-form-title::after {
  content: '';
  display: block;
  margin: 0.8rem auto 0 auto;
  width: 80px;
  height: 4px;
  border-radius: 3px;
  background: linear-gradient(90deg, #FFB400 0%, #FF9800 100%);
  box-shadow: 0 2px 6px rgba(255, 180, 0, 0.3);
}

/* --- PREMIUM TABS --- */
.booking-tabs {
  box-shadow: none;
  border-radius: 0.6rem;
  background: rgba(255, 251, 231, 0.3);
  padding: 0.4rem;
  margin-bottom: 1.5rem !important;
  gap: 0.5rem !important;
}

.booking-tabs .nav-link {
  border-radius: 10px !important;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.65rem 1.4rem;
  margin: 0;
  background: rgba(255, 255, 255, 0.8);
  color: #444;
  border: 2px solid transparent;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  outline: none;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.booking-tabs .nav-link i {
  font-size: 0.85rem;
  transition: transform 0.3s ease;
}

.booking-tabs .nav-link.active {
  background: linear-gradient(135deg, #FFB400 0%, #FF9800 100%);
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.3);
  box-shadow:
    0 6px 20px rgba(255, 180, 0, 0.35),
    0 2px 8px rgba(255, 152, 0, 0.2);
  transform: translateY(-2px) scale(1.02);
}

.booking-tabs .nav-link.active i {
  transform: scale(1.1);
}

.booking-tabs .nav-link:hover:not(.active) {
  background: rgba(255, 255, 255, 1);
  color: #FFB400;
  border: 2px solid rgba(255, 180, 0, 0.2);
  box-shadow: 0 4px 12px rgba(255, 180, 0, 0.15);
  transform: translateY(-1px);
}

/* --- FORM LABELS --- */
.form-label {
  font-weight: 600;
  color: #222;
  margin-bottom: 0.4rem;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
}

.form-label i {
  font-size: 0.8rem;
}

/* --- ICON-ENHANCED INPUTS --- */
.input-with-icon {
  position: relative;
  width: 100%;
}

.input-with-icon i {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #FFB400;
  font-size: 1rem;
  z-index: 10;
  transition: all 0.3s ease;
  pointer-events: none;
}

.input-with-icon input {
  padding-left: 42px !important;
  border: 2px solid #e8e8e8;
  border-radius: 10px;
  background: #fff;
  font-size: 0.9rem;
  padding: 0.7rem 0.9rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  color: #222;
  font-weight: 500;
}

.input-with-icon input::placeholder {
  color: #999;
  font-weight: 400;
  font-size: 0.85rem;
}

.input-with-icon input:focus {
  border-color: #FFB400;
  background: #fffef9;
  box-shadow:
    0 0 0 4px rgba(255, 180, 0, 0.08),
    0 4px 12px rgba(255, 180, 0, 0.12);
  transform: translateY(-1px);
  outline: none;
}

.input-with-icon input:focus+i,
.input-with-icon:focus-within i {
  color: #FF9800;
  transform: translateY(-50%) scale(1.1);
}

/* --- PREMIUM BUTTON --- */
.booking-btn-overlap {
  position: relative;
  z-index: 3;
  margin-top: 2.5rem;
}

.booking-btn-overlap-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
  border-radius: 50px;
  padding: 1.1rem 3.5rem;
  background: linear-gradient(135deg, #FF5733 0%, #FF9800 100%);
  color: #fff;
  box-shadow:
    0 8px 0 #d1452a,
    0 12px 35px rgba(255, 87, 51, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  border: none;
  position: relative;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-transform: uppercase;
  letter-spacing: 1px;
  overflow: hidden;
  animation: pulse-button 2.5s infinite;
}

@keyframes pulse-button {

  0%,
  100% {
    box-shadow:
      0 8px 0 #d1452a,
      0 12px 35px rgba(255, 87, 51, 0.4),
      inset 0 1px 0 rgba(255, 255, 255, 0.3);
  }

  50% {
    box-shadow:
      0 8px 0 #d1452a,
      0 12px 45px rgba(255, 87, 51, 0.6),
      inset 0 1px 0 rgba(255, 255, 255, 0.3);
  }
}

.booking-btn-overlap-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: left 0.6s;
}

.booking-btn-overlap-btn:hover::before {
  left: 100%;
}

.booking-btn-overlap-btn:hover,
.booking-btn-overlap-btn:focus {
  background: linear-gradient(135deg, #e64a2b 0%, #FF9800 100%);
  color: #fff;
  box-shadow:
    0 12px 0 #d1452a,
    0 16px 45px rgba(255, 87, 51, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
  transform: translateY(-3px) scale(1.02);
}

.booking-btn-overlap-btn:active {
  box-shadow:
    0 4px 0 #d1452a,
    0 8px 25px rgba(255, 87, 51, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transform: translateY(-1px);
}

.booking-btn-overlap-btn i {
  margin-right: 0.6rem;
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.booking-btn-overlap-btn:hover i {
  transform: translateX(3px);
}

/* --- TAB CONTENT --- */
.tab-content .tab-pane {
  border-top: 2px solid rgba(255, 180, 0, 0.1);
  padding-top: 1.8rem;
  margin-top: 1.5rem;
  animation: fadeInUp 0.4s ease;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.tab-content .tab-pane:first-child {
  border-top: none;
  padding-top: 0;
  margin-top: 0;
}

/* --- RESPONSIVE --- */
@media (max-width: 991.98px) {
  .booking-form {
    padding: 2rem 1.5rem !important;
  }

  .booking-form-title {
    font-size: 1.6rem;
  }

  .booking-form-title::after {
    width: 60px;
    height: 3px;
  }

  .booking-tabs {
    padding: 0.4rem;
    gap: 0.4rem !important;
  }

  .booking-tabs .nav-link {
    font-size: 0.95rem;
    padding: 0.7rem 1.2rem;
  }

  .booking-btn-overlap-btn {
    font-size: 1.1rem;
    padding: 1rem 2.5rem;
  }

  .input-with-icon input {
    font-size: 0.95rem;
    padding: 0.75rem 1rem;
  }
}

@media (max-width: 768px) {
  .booking-form {
    padding: 1.5rem 1rem !important;
  }

  .booking-tabs .nav-link {
    font-size: 0.85rem;
    padding: 0.6rem 1rem;
  }

  .booking-tabs .nav-link i {
    font-size: 0.8rem;
  }
}


.slide-animate {
  opacity: 1;
  transition: all 1s cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* Fade Down (subtitle) */
.fade-down.animate-ready {
  opacity: 0;
  transform: translateY(-40px);
}

.fade-down.animated {
  opacity: 1;
  transform: translateY(0);
}

/* Fade Up (heading, description, button) */
.fade-up.animate-ready {
  opacity: 0;
  transform: translateY(40px);
}

.fade-up.animated {
  opacity: 1;
  transform: translateY(0);
}

/* Button pop effect */
.fade-up.btn.animate-ready {
  opacity: 0;
  transform: translateY(40px) scale(0.95);
}

.fade-up.btn.animated {
  opacity: 1;
  transform: translateY(0) scale(1.08);
  box-shadow: 0 8px 32px rgba(255, 87, 51, 0.18), 0 2px 16px rgba(0, 0, 0, 0.07);
}

.carousel-item {
  transition: all 0.6s ease-in-out;
}

/* --- END CUSTOM SLIDE ANIMATIONS --- */

.tab-content .tab-pane {
  border-top: 1.5px solid #f0f0f0;
  padding-top: 1.5rem;
  margin-top: 1.2rem;
}

.tab-content .tab-pane:first-child {
  border-top: none;
  padding-top: 0;
  margin-top: 0;
}

.booking-form form .row {
  justify-content: center !important;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 991.98px) {
  .booking-form form .row {
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
}


.services-section {
  position: relative;
  background: url('data:image/svg+xml;utf8,<svg width="40" height="40" viewBox="0 0 40 40" fill="none" xmlns="http://www.w3.org/2000/svg"><rect x="0" y="0" width="40" height="40" fill="%23fff"/><circle cx="20" cy="20" r="1.5" fill="%23FFB400" fill-opacity="0.18"/></svg>');
  background-size: 80px 80px;
  background-repeat: repeat;
  z-index: 1;
}

.services-section .card {
  background: #fff;
  border-radius: 1.3rem;
  box-shadow: 0 6px 32px rgba(0, 0, 0, 0.07);
  border: none;
  padding: 2.2rem 1.2rem 1.5rem 1.2rem;
  position: relative;
  transition: box-shadow 0.18s, transform 0.18s;
}

.services-section .card:hover {
  box-shadow: 0 12px 40px rgba(255, 180, 0, 0.13), 0 6px 24px rgba(0, 0, 0, 0.10);
  transform: translateY(-4px) scale(1.03);
}

.services-section .feature-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #fffbe7 60%, #ffb400 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.7rem;
  box-shadow: 0 2px 8px rgba(255, 180, 0, 0.10);
  font-size: 2.1rem;
  color: #ffb400;
  position: relative;
}

.services-section .feature-icon::after {
  content: '';
  display: block;
  width: 32px;
  height: 4px;
  border-radius: 2px;
  background: #ffb400;
  opacity: 0.18;
  position: absolute;
  left: 50%;
  bottom: -12px;
  transform: translateX(-50%);
}

.services-section .card-title {
  font-size: 1.18rem;
  font-weight: 700;
  margin-top: 1.2rem;
  margin-bottom: 0.7rem;
  color: #222;
}

.services-section .card-text {
  color: #666;
  font-size: 1.03rem;
  margin-bottom: 0;
}

.service-card {
  border-radius: 1.7rem;
  box-shadow: 0 8px 36px rgba(0, 0, 0, 0.10);
  background: #fff;
  overflow: visible;
  position: relative;
  transition: box-shadow 0.18s, transform 0.18s;
  padding: 0 1.5rem 2.2rem 1.5rem;
}

.service-card:hover {
  box-shadow: 0 20px 56px rgba(255, 180, 0, 0.14), 0 10px 36px rgba(0, 0, 0, 0.13);
  transform: translateY(-6px) scale(1.035);
}

.service-card-img {
  border-top-left-radius: 1.7rem;
  border-top-right-radius: 1.7rem;
  height: 180px;
  object-fit: cover;
  width: 100%;
  margin-bottom: 0;
}

.service-icon-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  position: relative;
  height: 0;
}

.service-icon-circle {
  position: absolute;
  top: -36px;
  left: 50%;
  transform: translateX(-50%);
  width: 72px;
  height: 72px;
  background: #FFB400;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 32px rgba(255, 180, 0, 0.22), 0 2px 8px rgba(0, 0, 0, 0.10);
  font-size: 2.2rem;
  color: #222;
  border: 6px solid #fff;
  z-index: 3;
}

@media (max-width: 991.98px) {
  .service-card-img {
    height: 130px;
  }

  .service-icon-circle {
    width: 56px;
    height: 56px;
    font-size: 1.4rem;
    top: -28px;
    border-width: 4px;
  }
}

.service-card .card-body {
  padding-top: 2.7rem !important;
  text-align: left;
}

.service-card .card-title {
  font-size: 1.22rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 0.6rem;
}

.service-card .card-text {
  color: #666;
  font-size: 1.07rem;
  margin-bottom: 0;
}

.btn-service {
  background: #FFB400;
  color: #222;
  font-weight: 700;
  border-radius: 999px;
  padding: 0.8rem 2.1rem;
  font-size: 1.08rem;
  border: none;
  box-shadow: 0 2px 12px rgba(255, 180, 0, 0.13);
  text-transform: uppercase;
  letter-spacing: 0.7px;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s, transform 0.15s;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  margin-top: 1.2rem;
}

.btn-service:hover,
.btn-service:focus {
  background: #ff9800;
  color: #fff;
  box-shadow: 0 8px 28px rgba(255, 180, 0, 0.18);
  transform: translateY(-2px) scale(1.04);
  text-decoration: none;
}

.service-simple-card {
  background: #fff;
  border-radius: 1.3rem;
  box-shadow: 0 6px 32px rgba(44, 62, 80, 0.10);
  padding: 2.2rem 1.2rem 2rem 1.2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  transition: box-shadow 0.18s, transform 0.18s;
}

.service-simple-card:hover {
  box-shadow: 0 12px 40px rgba(255, 180, 0, 0.13), 0 6px 24px rgba(0, 0, 0, 0.10);
  transform: translateY(-4px) scale(1.03);
}

.service-simple-icon {
  width: 74px;
  height: 74px;
  background: linear-gradient(135deg, #ff9800 60%, #FFB400 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.3rem;
  color: #fff;
  box-shadow: 0 4px 18px rgba(255, 152, 0, 0.18);
  margin-bottom: 1.1rem;
}

.service-simple-title {
  font-size: 1.13rem;
  font-weight: 700;
  color: #222;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.7rem;
}

.service-simple-desc {
  color: #444;
  font-size: 1.01rem;
  margin-bottom: 0;
  text-align: center;
  font-weight: 400;
}

.section-title-underline {
  width: 60px;
  height: 4px;
  background: #2b9ba6;
  border-radius: 2px;
  margin-bottom: 0.7rem;
}

@media (max-width: 991.98px) {
  .service-simple-card {
    padding: 1.3rem 0.7rem 1.3rem 0.7rem;
  }

  .service-simple-icon {
    width: 54px;
    height: 54px;
    font-size: 1.4rem;
  }
}

.service-imgcard {
  background: #fff;
  border-radius: 1.3rem;
  box-shadow: 0 6px 32px rgba(44, 62, 80, 0.10);
  padding: 0 1.2rem 2rem 1.2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  transition: box-shadow 0.18s, transform 0.18s;
  position: relative;
  overflow: visible;
}

.service-imgcard:hover {
  box-shadow: 0 12px 40px rgba(255, 180, 0, 0.13), 0 6px 24px rgba(0, 0, 0, 0.10);
  transform: translateY(-4px) scale(1.03);
}

.service-imgcard-img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-top-left-radius: 1.3rem;
  border-top-right-radius: 1.3rem;
  margin-bottom: 0;
  display: block;
}

.service-imgcard-icon-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  position: relative;
  height: 0;
}

.service-imgcard-icon {
  position: absolute;
  top: -36px;
  left: 50%;
  transform: translateX(-50%);
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, #ff9800 60%, #FFB400 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.3rem;
  color: #fff;
  box-shadow: 0 4px 18px rgba(255, 152, 0, 0.18);
  border: 6px solid #fff;
  z-index: 3;
}

.service-imgcard-body {
  padding-top: 2.7rem;
  text-align: center;
}

.service-imgcard-title {
  font-size: 1.13rem;
  font-weight: 700;
  color: #222;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.7rem;
}

.service-imgcard-desc {
  color: #444;
  font-size: 1.01rem;
  margin-bottom: 0;
  text-align: center;
  font-weight: 400;
}

@media (max-width: 991.98px) {
  .service-imgcard {
    padding: 0 0.7rem 1.3rem 0.7rem;
  }

  .service-imgcard-img {
    height: 100px;
  }

  .service-imgcard-icon {
    width: 54px;
    height: 54px;
    font-size: 1.4rem;
    top: -28px;
    border-width: 4px;
  }

  .service-imgcard-body {
    padding-top: 2.1rem;
  }
}

.bg-footer-dark {
  background: #181818 !important;
}

.footer-modern {
  color: #fff;
  font-size: 1.04rem;
  background: #181818;
  position: relative;
  z-index: 1;
}

.footer-brand {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  gap: 0.5rem;
}

.footer-logo-icon {
  font-size: 2.2rem;
  color: #FFB400;
  background: #222;
  border-radius: 50%;
  padding: 0.3rem 0.6rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.footer-logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 1px;
}

.footer-logo-accent {
  color: #FFB400;
  font-weight: 700;
}

.footer-about {
  color: #ccc;
  font-size: 1.01rem;
  margin-bottom: 1.2rem;
}

.footer-contact {
  color: #fff;
  font-size: 1.01rem;
  margin-bottom: 0;
  padding-left: 0;
}

.footer-contact li {
  margin-bottom: 1.1rem;
}

.footer-contact-icon {
  color: #FFB400;
  font-size: 1.1rem;
  min-width: 1.3em;
}

.footer-title {
  font-size: 1.13rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.2rem;
}

.footer-title-underline {
  width: 38px;
  height: 3px;
  background: #FFB400;
  border-radius: 2px;
  margin-bottom: 0.7rem;
}

.footer-links {
  padding-left: 0;
  margin-bottom: 0;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  font-size: 1.01rem;
  transition: color 0.18s;
  position: relative;
  padding-left: 1.1em;
}

.footer-links a:before {
  content: '\f105';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  color: #FFB400;
  position: absolute;
  left: 0;
  top: 0.1em;
  font-size: 0.95em;
}

.footer-links a:hover {
  color: #FFB400;
}

.footer-news-desc {
  color: #ccc;
  font-size: 0.98rem;
}

.footer-news-form {
  margin-top: 0.7rem;
}

.footer-news-input {
  border-radius: 0.7rem;
  border: none;
  padding: 0.7rem 1.1rem;
  font-size: 1.01rem;
  background: #222;
  color: #fff;
  box-shadow: none;
}

.footer-news-input:focus {
  outline: none;
  border: 1.5px solid #FFB400;
  background: #181818;
  color: #fff;
}

.btn-footer-news {
  background: #FFB400;
  color: #181818;
  font-weight: 700;
  border-radius: 2rem;
  padding: 0.7rem 1.2rem;
  font-size: 1.01rem;
  border: none;
  box-shadow: 0 2px 12px rgba(255, 180, 0, 0.10);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s, transform 0.15s;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.2rem;
}

.btn-footer-news:hover,
.btn-footer-news:focus {
  background: #ff9800;
  color: #fff;
  box-shadow: 0 6px 24px rgba(255, 180, 0, 0.18);
  transform: translateY(-2px) scale(1.04);
  text-decoration: none;
}

.footer-bottom-bar {
  background: #111;
  position: relative;
  z-index: 2;
  margin-top: 2.5rem;
  padding-bottom: 0.5rem;
  border-top: 1.5px solid #222;
}

.footer-bottom-accent {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 260px;
  height: 100%;
  background: #FFB400;
  clip-path: polygon(40% 0, 100% 0, 100% 100%, 0 100%);
  z-index: 1;
}

.footer-bottom-bar .row {
  justify-content: center !important;
}

.footer-bottom-bar .col-md-6,
.footer-bottom-bar .col-md-12 {
  text-align: center !important;
  margin-bottom: 0.7rem;
}

.footer-bottom-bar .footer-social-icons {
  justify-content: center;
}

.footer-social-icons {
  gap: 0.7rem;
}

.footer-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: #FFB400;
  color: #181818;
  border-radius: 50%;
  font-size: 1.15rem;
  margin-right: 0.2rem;
  transition: background 0.18s, color 0.18s, transform 0.15s;
  text-decoration: none !important;
  border-bottom: none !important;
}

.footer-social:hover {
  background: #fff;
  color: #FFB400;
  transform: scale(1.08);
  text-decoration: none !important;
  border-bottom: none !important;
}

.footer-backtotop {
  position: absolute;
  right: 30px;
  bottom: 18px;
  width: 48px;
  height: 48px;
  background: #FFB400;
  color: #181818;
  border: none;
  border-radius: 50%;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(255, 180, 0, 0.18);
  cursor: pointer;
  z-index: 10;
  opacity: 0.92;
  transition: background 0.18s, color 0.18s, transform 0.15s;
}

.footer-backtotop:hover {
  background: #fff;
  color: #FFB400;
  transform: scale(1.08);
}

@media (max-width: 991.98px) {
  .footer-brand {
    font-size: 1.3rem;
  }

  .footer-logo-icon {
    font-size: 1.3rem;
    padding: 0.2rem 0.4rem;
  }

  .footer-logo-text {
    font-size: 1.1rem;
  }

  .footer-bottom-accent {
    width: 120px;
  }

  .footer-backtotop {
    right: 12px;
    bottom: 12px;
    width: 38px;
    height: 38px;
    font-size: 1.1rem;
  }
}

.footer-contact-detail {
  color: #ccc;
  font-size: 0.98rem;
  font-weight: 400;
  display: block;
  margin-bottom: 0.5rem;
  margin-top: 0.1rem;
}

.testimonials-section {
  position: relative;
  min-height: 520px;
  z-index: 1;
  overflow: hidden;
}

.testimonials-bg {
  position: absolute;
  inset: 0;
  background: url('../images/bg.png') center center/cover no-repeat;
  z-index: 1;
}

.testimonials-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.78);
  z-index: 2;
}

.testimonials-section .container {
  position: relative;
  z-index: 3;
}

.testimonials-label {
  font-size: 1.01rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: #FFB400;
  text-transform: uppercase;
}

.testimonials-title {
  font-size: 2.3rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.5px;
}

.testimonials-title-underline {
  width: 60px;
  height: 4px;
  background: #FFB400;
  border-radius: 2px;
  margin-bottom: 0.7rem;
}

.testimonial-card {
  background: #fff;
  border-radius: 2rem;
  box-shadow: 0 16px 48px rgba(44, 62, 80, 0.18), 0 2px 8px rgba(255, 180, 0, 0.07);
  padding: 2.6rem 1.7rem 2.3rem 1.7rem;
  position: relative;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  overflow: visible;
  border: 1.5px solid #ffe7b3;
  transition: box-shadow 0.22s, transform 0.22s, border 0.18s;
}

.testimonial-card:hover {
  box-shadow: 0 32px 80px 0 rgba(255, 180, 0, 0.22), 0 16px 48px rgba(44, 62, 80, 0.18);
  border: 1.5px solid #ffe7b3;
  outline: 0.5rem solid #fffbe7;
  outline-offset: -1.2rem;
}

.testimonial-card-topline {
  display: none !important;
}

.testimonial-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #FFB400;
  box-shadow: 0 4px 16px rgba(255, 180, 0, 0.13);
  margin-right: 0.7rem;
}

.testimonial-card .testimonial-quote-bg {
  position: absolute;
  bottom: 22px;
  right: 22px;
  font-size: 5.5rem;
  color: #FFB40022;
  font-family: 'Poppins', 'Inter', sans-serif;
  font-weight: 800;
  z-index: 1;
  pointer-events: none;
  content: "\201C";
  line-height: 1;
}

.testimonial-card::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 38px;
  border-radius: 0 0 2rem 2rem;
  background: linear-gradient(0deg, #fffbe7 60%, transparent 100%);
  z-index: 2;
  pointer-events: none;
}

.testimonial-name {
  font-size: 1.13rem;
  font-weight: 700;
  color: #222;
}

.testimonial-role {
  font-size: 1.01rem;
  font-weight: 600;
  color: #FFB400;
}

.testimonial-text {
  color: #444;
  font-size: 1.07rem;
  margin-bottom: 0.9rem;
  min-height: 80px;
  z-index: 3;
  position: relative;
}

.testimonial-stars {
  font-size: 1.18rem;
  color: #FFB400;
  z-index: 3;
  position: relative;
}

@media (max-width: 991.98px) {
  .testimonial-card {
    padding: 1.3rem 0.7rem 1.3rem 0.7rem;
    min-height: 220px;
  }

  .testimonial-avatar {
    width: 44px;
    height: 44px;
    border-width: 3px;
  }

  .testimonial-card-topline {
    width: 40px;
    height: 4px;
  }

  .testimonial-card .testimonial-quote-bg {
    font-size: 3.2rem;
    bottom: 8px;
    right: 8px;
  }

  .testimonial-card::after {
    height: 22px;
  }
}

.testimonial-slider {
  padding-left: 10px;
  padding-right: 10px;
}

.testimonial-slider .testimonial-card {
  max-width: 370px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

@media (max-width: 991.98px) {
  .testimonial-slider {
    padding-left: 0;
    padding-right: 0;
  }

  .testimonial-slider .testimonial-card {
    max-width: 98vw;
  }
}

.popular-place-title {
  font-size: 1.18rem;
  font-weight: 800;
  color: #222;
  letter-spacing: 0.5px;
  text-transform: capitalize;
  font-family: 'Poppins', 'Inter', sans-serif;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  justify-content: center;
}

/* Enhanced Book Now Button for Popular Places */
.popular-places-section .btn-cta {
  background: linear-gradient(135deg, #FF5733 0%, #FFB400 100%);
  color: #fff !important;
  border: none;
  border-radius: 25px;
  padding: 0.6rem 1.5rem;
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(255, 87, 51, 0.3);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.popular-places-section .btn-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.popular-places-section .btn-cta:hover::before {
  left: 100%;
}

.popular-places-section .btn-cta:hover,
.popular-places-section .btn-cta:focus {
  background: linear-gradient(135deg, #FFB400 0%, #FF5733 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 87, 51, 0.4);
  color: #fff !important;
}

.popular-places-section .card-text {
  text-align: justify;
}

/* Destination Cards Styles */
.destination-card {
  transition: all 0.3s ease;
  border: none;
  background: #fff;
  overflow: hidden;
}

.destination-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1) !important;
}

.destination-card-header {
  position: relative;
  height: 160px;
  overflow: hidden;
}

.destination-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.destination-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 40px;
  height: 40px;
  background: rgba(255, 180, 0, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
  z-index: 2;
}

.destination-badge i {
  font-size: 16px;
}

.destination-details {
  margin: 20px 0;
}

.detail-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.detail-item i {
  font-size: 18px;
  width: 20px;
  text-align: center;
}

.price-display {
  background: #f8f9fa;
  border: 1px solid #e9ecef;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.price-display::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 180, 0, 0.1), transparent);
  transition: left 0.5s;
}

.price-amount {
  font-size: 1.8rem;
  margin-top: 0.5rem;
  color: #ffb400 !important;
}

.destination-card:hover .price-display {
  background: #fff3cd;
  border-color: #ffb400;
  box-shadow: 0 4px 12px rgba(255, 180, 0, 0.2);
}

.destination-card:hover .price-display::before {
  left: 100%;
}

/* Why Aaradhya Section */
.why-aaradhya-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.why-card {
  background: #fff;
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1rem;
}

.why-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.why-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #FFB400 0%, #FF5733 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  font-size: 2rem;
  color: #fff;
  box-shadow: 0 4px 15px rgba(255, 180, 0, 0.3);
  flex-shrink: 0;
}

.why-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 0;
}

.why-desc {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.5;
}


/* Explore Destinations Button */
.btn-explore-destinations {
  background: #FF5733;
  color: #fff !important;
  font-size: 1rem;
  transition: all 0.2s ease;
  text-transform: none;
  letter-spacing: normal;
}

.btn-explore-destinations:hover {
  background: transparent;
  border: 1px solid #FF5733;
  color: #FF5733 !important;
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(255, 87, 51, 0.2);
}

.destination-card .card-title {
  color: #000000 !important;
  font-size: 1.25rem;
  position: relative;
  text-align: center;
}

.destination-card .card-title::after {
  content: '';
  position: absolute;
  bottom: 0px;
  left: 40%;
  transform: translate(10px, 10px);
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, #FFB400, #FF5733);
  border-radius: 2px;
}

.destination-card .btn-cta {
  width: 100%;
  margin: 0;
  padding: 12px 20px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.destination-card .btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 87, 51, 0.3);
}

/* Popular Destinations Section */
.popular-destinations-section {
  position: relative;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.popular-destinations-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml;utf8,<svg width="60" height="60" viewBox="0 0 60 60" fill="none" xmlns="http://www.w3.org/2000/svg"><circle cx="30" cy="30" r="2" fill="%23FFB400" fill-opacity="0.1"/></svg>');
  background-size: 60px 60px;
  background-repeat: repeat;
  opacity: 0.5;
  pointer-events: none;
}

.popular-destinations-section .container {
  position: relative;
  z-index: 2;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .destination-card-header {
    height: 160px;
  }

  .destination-card .card-title {
    font-size: 1.1rem;
  }

  .detail-item {
    flex-direction: column;
    text-align: center;
    gap: 5px;
  }

  .detail-item i {
    font-size: 16px;
  }
}

@media (max-width: 576px) {
  .destination-card-header {
    height: 140px;
  }

  .destination-badge {
    width: 35px;
    height: 35px;
  }

  .destination-badge i {
    font-size: 14px;
  }
}


/* CTA Section Styles */
.cta-section {
  padding: 3rem 0;
  background: url('../images/bg.png') center center/cover no-repeat;
  position: relative;
  min-height: 300px;
  display: flex;
  align-items: center;
}

.cta-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgb(0 0 0 / 85%) 0%, rgb(66 65 60 / 85%) 100%);
  z-index: 1;
}

.cta-section .container {
  position: relative;
  z-index: 2;
}

.cta-heading {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.cta-tagline {
  font-size: 1.1rem;
  font-weight: 400;
  margin-bottom: 2rem;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.btn-cta {
  background: linear-gradient(135deg, #FF5733 0%, #FF8C42 100%);
  color: #fff !important;
  border: 2px solid #FF5733;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(255, 87, 51, 0.3);
}

.btn-cta:hover,
.btn-cta:focus {
  background: linear-gradient(135deg, #FF8C42 0%, #FF5733 100%);
  color: #fff !important;
  border-color: #FF5733;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 87, 51, 0.5);
}


/* WhatsApp Floating Button */
.cta-whatsapp-btn {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 54px;
  height: 54px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  font-size: 2rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18);
  z-index: 1050;
  transition: transform 0.18s;
  animation: whatsapp-float 1.6s infinite ease-in-out alternate;
}

.cta-whatsapp-btn:hover {
  color: #fff;
  background: #1ebe5d;
  transform: scale(1.08);
}

@keyframes whatsapp-float {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-10px);
  }
}

@media (max-width: 767.98px) {
  .cta-heading {
    font-size: 1.8rem;
  }

  .cta-tagline {
    font-size: 1rem;
  }

  .btn-cta {
    font-size: 0.95rem;
    padding: 0.7rem 1.5rem;
  }
}

@media (max-width: 576px) {
  .cta-heading {
    font-size: 1.6rem;
  }

  .cta-tagline {
    font-size: 0.95rem;
  }

  .btn-cta {
    font-size: 0.9rem;
    padding: 0.6rem 1.2rem;
  }
}

.badge-wrapper {
  z-index: 2;
  margin-top: -22px;
}

.google-rating-badge {
  display: flex;
  align-items: center;
  background-color: #fff;
  border-radius: 50px;
  padding: 10px 20px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  color: inherit;
  min-width: 280px;
  max-width: 90vw;
}

.google-rating-badge:hover {
  transform: scale(1.03);
  box-shadow: 0 10px 30px rgba(255, 180, 0, 0.15);
  text-decoration: none;
}

.google-logo {
  height: 38px;
  width: auto;
  margin-right: 12px;
}

.google-text {
  font-size: 16px;
  color: #000;
}

.stars i {
  color: #FFB400;
  font-size: 15px;
}

.review-count {
  font-size: 13px;
}

@media (max-width: 576px) {
  .google-rating-badge {
    padding: 8px 16px;
    font-size: 0.95rem;
  }

  .google-logo {
    height: 32px;
    margin-right: 10px;
  }

  .stars i {
    font-size: 13px;
  }

  .review-count {
    font-size: 12px;
  }
}

.section-title {
  font-weight: 700;
}

/* Image style */
/* Overlay Gradient */
.overlay-gradient {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.15));
  height: 100%;
}

/* Glassmorphism Title Bar */
.glass-title {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: #fff;
  font-size: 1.2rem;
  font-weight: 500;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0px 0px 30px 30px;
}

.city-text {
  font-weight: 900;
  font-size: 2rem;
  text-transform: uppercase;
  color: white;
  position: absolute;
  z-index: 2;
  top: 12%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.city-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.6);
  /* dark overlay */
  z-index: 1;
}

/* ========================================
   ROUTES PAGE STYLES
   ======================================== */

/* Hero Section */
.hero-content-wrapper {
  background: #e8e8e8;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  margin-top: 15px;
  padding: 15px;
  border-radius: 10px;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.hero-content .hero-title {
  color: #363636;
  text-shadow: none;
  font-size: 2.5rem;
  font-weight: 600;
}

.hero-subtitle {
  font-size: 15px;
  opacity: 0.95;
}

/* Routes Section */
.routes-section {
  padding: 40px 0;
}

/* Accordion Styles */
.accordion-item {
  background: #e8e8e8;
  border-radius: 6px;
  margin-bottom: 10px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: all 0.3s ease;
}

.accordion-item:hover {
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.accordion-header {
  width: 100%;
  padding: 12px 16px;
  background: #e8e8e8;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  color: #222;
  transition: all 0.3s ease;
}

.accordion-header:hover {
  background: #ddd;
}

.accordion-header.active {
  background: linear-gradient(135deg, #fb7602 0%, #fb7602 100%);
  color: white;
}

.accordion-header i {
  transition: transform 0.3s ease;
  font-size: 12px;
}

.accordion-header.active i {
  transform: rotate(180deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: #f9f9f9;
}

.accordion-content.active {
  max-height: 1000px;
}

/* Routes Table */
.routes-table {
  width: 100%;
  border-collapse: collapse;
}

.routes-table thead {
  background: #e8e8e8;
}

.routes-table th {
  padding: 10px 12px;
  text-align: left;
  font-size: 11px;
  font-weight: 600;
  color: #555;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.routes-table td {
  padding: 10px 12px;
  border-bottom: 1px solid #e0e0e0;
  font-size: 13px;
  color: #333;
}

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

.routes-table tbody tr:hover {
  background: #f0f0f0;
}

.route-name {
  font-weight: 500;
  color: #222;
}

.price {
  font-weight: 700;
  color: #ff9304;
  font-size: 14px;
}

.btn-book {
  display: inline-block;
  padding: 6px 16px;
  background: #ff9304;
  color: white;
  text-decoration: none;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 600;
  transition: all 0.3s ease;
  text-transform: uppercase;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.btn-book:hover {
  background: #e68503;
  transform: translateY(-1px);
  box-shadow: 0 2px 5px rgba(255, 147, 4, 0.3);
  color: white;
}

/* Responsive Design for Routes Page */
@media (max-width: 768px) {
  .hero-title {
    font-size: 32px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .routes-section {
    padding: 40px 0;
  }

  .routes-table {
    font-size: 12px;
  }

  .routes-table th,
  .routes-table td {
    padding: 10px 8px;
  }

  .btn-book {
    padding: 6px 12px;
    font-size: 11px;
  }

  /* Stack table on mobile */
  .routes-table thead {
    display: none;
  }

  .routes-table tr {
    display: block;
    margin-bottom: 15px;
    border: 1px solid #f0f0f0;
    border-radius: 8px;
    padding: 10px;
  }

  .routes-table td {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border: none;
  }

  .routes-table td:before {
    content: attr(data-label);
    font-weight: 600;
    color: #666;
    text-transform: uppercase;
    font-size: 11px;
  }
}

/* ========================================
   IMPROVED CTA SECTION STYLES
   ======================================== */

/* CTA Feature Boxes */
.cta-feature-box {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 1.5rem 1rem;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  height: 100%;
}

.cta-feature-box:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cta-feature-icon {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.5rem;
  color: #ff9304;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.cta-feature-text {
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
}

/* CTA Buttons */
.btn-cta-primary {
  background: linear-gradient(135deg, #FF5733 0%, #ff9304 100%);
  color: #fff;
  border: none;
  font-weight: 700;
  border-radius: 50px;
  box-shadow: 0 8px 25px rgba(255, 87, 51, 0.4);
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-cta-primary:hover {
  background: linear-gradient(135deg, #e64a2b 0%, #e68503 100%);
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(255, 87, 51, 0.5);
  color: #fff;
}

.btn-cta-secondary {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.5);
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.btn-cta-secondary:hover {
  background: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.8);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
  color: #fff;
}

/* Responsive Design for CTA */
@media (max-width: 768px) {
  .cta-feature-box {
    padding: 1rem 0.5rem;
  }

  .cta-feature-icon {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
  }

  .cta-feature-text {
    font-size: 0.875rem;
  }

  .btn-cta-primary,
  .btn-cta-secondary {
    width: 100%;
    max-width: 350px;
  }
}

/* Gradient Underline for Section Titles */
.gradient-underline {
  width: 80px;
  height: 3px;
  background: linear-gradient(135deg, #ffa000 0%, #ff6e26 100%);
  margin: 0 auto;
}