/* main.css - Custom styles for Aaradhya Tour & Travels Private Limited */

: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: 'Roboto', sans-serif;
}

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

/* ---------- TOPBAR ---------- */
.topbar {
  background: #181818;
  color: #fff;
  font-size: 0.82rem;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  letter-spacing: 0.02em;
}

.topbar-text {
  color: #aaa;
  font-weight: 400;
  display: flex;
  align-items: center;
}

.topbar-text i {
  color: #ff9800;
  font-size: 0.9rem;
  filter: drop-shadow(0 0 5px rgba(255, 180, 0, 0.3));
}

/* ---------- NAVBAR ---------- */
.navbar {
  background: #ffffff;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
  padding: 0.6rem 0;
  transition: all 0.3s ease;
}

.navbar.stuck {
  padding: 0.4rem 0;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.navbar-brand img {
  filter: drop-shadow(0 2px 8px rgba(255, 180, 0, 0.18));
  transition: transform 0.2s ease;
}

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

.navbar-toggler {
  border-color: rgba(0, 0, 0, 0.15) !important;
}

.navbar-toggler-icon {
  filter: none;
}

.navbar-nav .nav-link {
  font-weight: 500;
  font-size: 0.9rem;
  margin: 0 0.4rem;
  color: #333 !important;
  padding: 0.6rem 1.2rem;
  border-radius: 50px;
  position: relative;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar-nav .nav-link i {
  color: #ff9800;
  font-size: 0.85rem;
  margin-right: 6px;
  transition: all 0.3s ease;
}

.navbar-nav .nav-link::after {
  content: '';
  display: block;
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #ff9800, #ff5733);
  border-radius: 10px;
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  width: 30%;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: #ff5733 !important;
  background: rgba(255, 87, 51, 0.04);
}

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

.contact-chip {
  display: flex;
  align-items: center;
  overflow: hidden;
  text-decoration: none;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.03);
  margin-left: 10px;
}

.contact-chip:hover {
  border-color: #ff9800;
  transform: translateY(-1px);
  background: rgba(255, 152, 0, 0.05);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.contact-chip span:first-child {
  background: rgba(255, 152, 0, 0.1);
  color: #ff9800;
  padding: 4px 12px;
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-chip span:last-child {
  color: #eee;
  padding: 4px 12px;
  font-size: 0.8rem;
  font-weight: 500;
}


/* ---------- OFFCANVAS ---------- */
.offcanvas {
  background: #ffffff !important;
}

.offcanvas-header {
  border-bottom: 1px solid #eee;
}

.offcanvas-header .btn-close {
  filter: none;
}

.offcanvas-body .nav-link {
  padding: 0.75rem 0.5rem;
  font-size: 0.97rem;
  font-weight: 600;
  color: #222222 !important;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border-bottom: 1px solid #eee;
  transition: color 0.2s, padding-left 0.2s;
}

.offcanvas-body .nav-link:hover {
  color: #ff5733 !important;
  background: rgba(255, 87, 51, 0.06);
  padding-left: 1rem;
}

@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: 'Roboto', '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;
  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;
  }
}

/* ========== OUR SERVICES (PREMIUM ALTERNATING LAYOUT) ========== */
.services-section {
  background-color: #fcfcfc;
}

.service-premium-img-box {
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.service-premium-img-box img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.service-premium-img-box:hover img {
  transform: scale(1.05);
}



.service-details-box {
  padding: 1.5rem 0;
}

@media (min-width: 992px) {
  .service-details-box {
    padding: 2rem 1rem 2rem 2.5rem;
  }

  .flex-lg-row-reverse .service-details-box {
    padding: 2rem 2.5rem 2rem 1rem;
  }
}

.service-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #111e2d;
  margin-bottom: 1rem;
  text-transform: capitalize;
  letter-spacing: -0.5px;
  position: relative;
  display: inline-block;
  padding-bottom: 0.5rem;
}

.service-details-box .service-title {
  font-size: 1.5rem;
}

.service-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 3px;
  background: #FF5733;
  border-radius: 2px;
}

.service-desc {
  font-size: 1rem;
  color: #555;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.service-feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin-bottom: 2.5rem;
}

@media (max-width: 576px) {
  .service-feature-grid {
    grid-template-columns: 1fr;
  }
}

.feature-item {
  display: flex;
  align-items: center;
  background: #ffffff;
  padding: 1rem 1.2rem;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
  border: 1px solid #f2f2f2;
  transition: all 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-3px);
  border-color: #ff9800;
  box-shadow: 0 8px 25px rgba(255, 152, 0, 0.12);
}

.feature-item i {
  color: #FF5733;
  font-size: 1.1rem;
  margin-right: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.feature-item span {
  font-weight: 600;
  color: #222;
  font-size: 0.95rem;
}

.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: 1rem;
  min-width: 1.3em;
}

.fa-phone-alt {
  transform: rotate(130deg);
}

.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.2rem 1.7rem 1.5rem 1.7rem;
  position: relative;
  min-height: 260px;
  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: 'Roboto', '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: 1rem;
  text-align: justify;
  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 .slick-track {
  display: flex !important;
}

.testimonial-slider .slick-slide {
  height: inherit !important;
  display: flex !important;
  justify-content: center;
}

.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;
  height: 100%;
}

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

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

/* ---- Testimonial Arrows ---- */
.testimonial-slider .slick-prev,
.testimonial-slider .slick-next {
  width: 46px;
  height: 46px;
  background: linear-gradient(135deg, #FF5733, #ff9800) !important;
  border-radius: 50%;
  z-index: 10;
  top: 50%;
  transform: translateY(-50%);
  display: flex !important;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(255, 87, 51, 0.35);
  transition: all 0.25s ease;
  outline: none !important;
}

.testimonial-slider .slick-prev:focus,
.testimonial-slider .slick-next:focus,
.testimonial-slider .slick-prev:active,
.testimonial-slider .slick-next:active {
  background: linear-gradient(135deg, #FF5733, #ff9800) !important;
  outline: none !important;
}

.testimonial-slider .slick-prev {
  left: -22px;
}

.testimonial-slider .slick-next {
  right: -22px;
}

.testimonial-slider .slick-prev:hover,
.testimonial-slider .slick-next:hover {
  background: linear-gradient(135deg, #e64a22, #e68900) !important;
  box-shadow: 0 6px 22px rgba(255, 87, 51, 0.5);
  transform: translateY(-50%) scale(1.08);
}

.testimonial-slider .slick-prev::before,
.testimonial-slider .slick-next::before {
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 14px;
  color: #fff;
  opacity: 1;
}

.testimonial-slider .slick-prev::before {
  content: '\f053';
}

.testimonial-slider .slick-next::before {
  content: '\f054';
}

.popular-place-title {
  font-size: 1.18rem;
  font-weight: 800;
  color: #222;
  letter-spacing: 0.5px;
  text-transform: capitalize;
  font-family: 'Roboto', '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;
}

.logoheight {
  height: 40px;
}

/* ========== DESTINATION & TOP SERVICES SLIDERS ========== */
.destinations-slider,
.top-services-slider {
  padding-bottom: 20px;
  position: relative;
}

.destinations-slider .slick-list,
.top-services-slider .slick-list {
  padding: 10px 0 !important;
  margin: -10px 0;
}

/* ---- Arrows ---- */
.destinations-slider .slick-prev,
.destinations-slider .slick-next,
.top-services-slider .slick-prev,
.top-services-slider .slick-next {
  width: 46px;
  height: 46px;
  background: linear-gradient(135deg, #FF5733, #ff9800) !important;
  border-radius: 50%;
  z-index: 10;
  top: 50%;
  transform: translateY(-50%);
  display: flex !important;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(255, 87, 51, 0.35);
  transition: all 0.25s ease;
  outline: none !important;
}

.destinations-slider .slick-prev:focus,
.destinations-slider .slick-next:focus,
.destinations-slider .slick-prev:active,
.destinations-slider .slick-next:active,
.top-services-slider .slick-prev:focus,
.top-services-slider .slick-next:focus,
.top-services-slider .slick-prev:active,
.top-services-slider .slick-next:active {
  background: linear-gradient(135deg, #FF5733, #ff9800) !important;
  outline: none !important;
}

.destinations-slider .slick-prev,
.top-services-slider .slick-prev {
  left: -22px;
}

.destinations-slider .slick-next,
.top-services-slider .slick-next {
  right: -22px;
}

.destinations-slider .slick-prev:hover,
.destinations-slider .slick-next:hover,
.top-services-slider .slick-prev:hover,
.top-services-slider .slick-next:hover {
  background: linear-gradient(135deg, #e64a22, #e68900) !important;
  box-shadow: 0 6px 22px rgba(255, 87, 51, 0.5);
  transform: translateY(-50%) scale(1.08);
}

.destinations-slider .slick-prev::before,
.destinations-slider .slick-next::before,
.top-services-slider .slick-prev::before,
.top-services-slider .slick-next::before {
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 14px;
  color: #fff;
  opacity: 1;
}

.destinations-slider .slick-prev::before,
.top-services-slider .slick-prev::before {
  content: '\f053';
}

.destinations-slider .slick-next::before,
.top-services-slider .slick-next::before {
  content: '\f054';
}

/* ---- Dots ---- */
.destinations-slider .slick-dots,
.top-services-slider .slick-dots {
  bottom: -8px;
}

.destinations-slider .slick-dots li button::before,
.top-services-slider .slick-dots li button::before {
  font-size: 9px;
  color: #ccc;
  opacity: 1;
  transition: all 0.2s;
}

.destinations-slider .slick-dots li.slick-active button::before,
.top-services-slider .slick-dots li.slick-active button::before {
  color: #FF5733;
  opacity: 1;
  font-size: 12px;
}

/* TOP SERVICE CARD */
.category-card-wrap {
  position: relative;
  margin: 0 8px;
  cursor: pointer;
}

.top-service-card {
  border-radius: 1.2rem;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.category-card-wrap:hover .top-service-card {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
}

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

.category-card-wrap:hover .top-service-card img {
  transform: scale(1.08);
}

/* CUSTOM ENQUIRE HOVER BUTTON — Fresh Design */
.custom-enquire-btn-container {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 20;
  opacity: 0;
  visibility: hidden;
  transform: translateY(100%);
  transition: opacity 0.35s ease, transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.35s;
  pointer-events: none;
}

.category-card-wrap:hover .custom-enquire-btn-container {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.custom-enquire-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 14px 20px;
  background: linear-gradient(90deg, rgba(255, 87, 34, 0.95) 0%, rgba(255, 152, 0, 0.95) 100%);
  backdrop-filter: blur(8px);
  color: #fff !important;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-top: 2px solid rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: background 0.25s ease;
}

.custom-enquire-btn i {
  font-size: 1rem;
  animation: planePulse 1.4s ease-in-out infinite;
}

@keyframes planePulse {

  0%,
  100% {
    transform: translateX(0);
    opacity: 1;
  }

  50% {
    transform: translateX(5px);
    opacity: 0.7;
  }
}

.category-card-wrap:hover .custom-enquire-btn:hover {
  background: linear-gradient(90deg, rgba(229, 57, 20, 0.98) 0%, rgba(230, 126, 0, 0.98) 100%);
}


.dest-overlay-card {
  position: relative;
  border-radius: 1.2rem;
  overflow: hidden;
  height: 360px;
  cursor: pointer;
  text-align: center;
  margin: 0 8px;
}

.dest-overlay-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  display: block;
}

.dest-overlay-card:hover img {
  transform: scale(1.08);
}

.dest-overlay-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.35) 55%, transparent 100%);
  transition: background 0.4s ease;
}

.dest-overlay-card:hover .dest-overlay-gradient {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.55) 65%, rgba(0, 0, 0, 0.1) 100%);
}

.dest-overlay-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(255, 152, 0, 0.92);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.28rem 0.8rem;
  border-radius: 50px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  backdrop-filter: blur(4px);
}

.dest-overlay-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.4rem 1.4rem 1rem;
  height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  transform: translateY(140px);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
}

.dest-overlay-card:hover .dest-overlay-content {
  transform: translateY(0);
}

.dest-overlay-title {
  color: #fff;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  letter-spacing: 0.01em;
  text-align: center;
}

.dest-overlay-desc {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.85rem;
  line-height: 1.55;
  margin-bottom: 1rem;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.35s ease 0.1s, transform 0.35s ease 0.1s;
}

.dest-overlay-card:hover .dest-overlay-desc {
  opacity: 1;
  transform: translateY(0);
}

.dest-overlay-btn {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(135deg, #FF5733, #ff9800);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.45rem 1.2rem;
  border-radius: 50px;
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: box-shadow 0.2s, transform 0.2s;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s ease 0.18s, transform 0.3s ease 0.18s, box-shadow 0.2s;
  max-width: fit-content;
  margin: 0 auto;
}

.dest-overlay-card:hover .dest-overlay-btn {
  opacity: 1;
  transform: translateY(0);
}

.dest-overlay-btn:hover {
  box-shadow: 0 4px 16px rgba(255, 87, 51, 0.45);
  color: #fff;
}

/* ========== ABOUT / SEO PREMIUM SECTION ========== */
.about-premium-section {
  background: #f9f9fb;
  border-top: 1px solid #efefef;
}

.about-img-wrapper {
  position: relative;
}

.about-hero-img {
  width: 100%;
  border-radius: 1.4rem;
  object-fit: cover;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.13);
}

.about-stats-float {
  position: absolute;
  bottom: -22px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border-radius: 1rem;
  padding: 1rem 1.8rem;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  white-space: nowrap;
}

.about-stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.about-stat-num {
  font-size: 1.5rem;
  font-weight: 800;
  color: #ff5733;
  line-height: 1.1;
}

.about-stat-label {
  font-size: 0.72rem;
  color: #888;
  font-weight: 500;
  margin-top: 2px;
  text-align: center;
}

.about-stat-divider {
  width: 1px;
  height: 36px;
  background: #eee;
}

.about-label {
  display: inline-block;
  background: rgba(255, 87, 51, 0.1);
  color: #ff5733;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.3rem 0.9rem;
  border-radius: 50px;
  margin-bottom: 1rem;
}

.about-heading {
  font-size: 2rem;
  font-weight: 800;
  color: #111;
  line-height: 1.25;
  margin-bottom: 1rem;
}

.about-heading-accent {
  color: #ff5733;
}

.about-body-text {
  color: #555;
  font-size: 0.97rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.about-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 0.5rem;
  text-align: left;
}

.about-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  background: #fff;
  border-radius: 0.8rem;
  padding: 0.85rem 1rem;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.2s, transform 0.2s;
}

.about-feature-item:hover {
  box-shadow: 0 6px 20px rgba(255, 87, 51, 0.1);
  transform: translateY(-2px);
}

.about-feature-icon {
  width: 38px;
  height: 38px;
  min-width: 38px;
  background: linear-gradient(135deg, #FF5733, #ff9800);
  border-radius: 0.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.95rem;
}

.about-feature-title {
  font-size: 0.88rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 0.1rem;
}

.about-feature-desc {
  font-size: 0.77rem;
  color: #777;
  line-height: 1.4;
}

.btn-about-outline {
  background: transparent;
  border: 2px solid #ff5733;
  color: #ff5733;
  font-weight: 600;
  border-radius: 50px;
  font-size: 0.95rem;
  transition: all 0.22s ease;
}

.btn-about-outline:hover {
  background: #ff5733;
  color: #fff;
}

/* ==========================================================================
   SEO Links Section (Redesigned)
   ========================================================================== */
.seo-links-section {
  background-color: #f8f9fa !important;
  border-top: 1px solid #f0f0f0;
  padding-top: 4rem !important;
  padding-bottom: 4rem !important;
}

.seo-intro-card {
  border: 1px solid #eaeaea;
  transition: all 0.3s ease;
}

.seo-intro-card img {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.seo-link-box {
  border: 1px solid #eaeaea;
  transition: all 0.3s ease;
}

.seo-link-box:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06) !important;
  border-color: #FF5733;
}

.seo-link {
  font-size: 0.9rem;
  color: #555 !important;
  transition: all 0.2s ease-in-out;
  display: flex;
  align-items: center;
  padding: 0.3rem 0;
  text-decoration: none !important;
}

.seo-link i {
  color: #FF5733 !important;
  transition: transform 0.2s ease;
}

.seo-link:hover {
  color: #FF5733 !important;
  text-decoration: none !important;
  transform: translateX(4px);
}

.seo-link:hover i {
  color: #FF5733 !important;
  transform: translateX(3px);
}

.seo-intro-card p {
  text-align: justify;
}

.fa-phone {
  transform: rotate(35deg);
}

.current-price {
  padding: 5px;
}

/* ---------- ROUTE DESCRIPTION FIXED DESIGN ---------- */
.service-redesign-container {
  padding: 1rem 0;
}

.bg-light-gradient {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  border-left: 5px solid #ff9800 !important;
}

.text-orange {
  color: #ff9800 !important;
}

.text-gradient-orange {
  background: linear-gradient(135deg, #ea6f66 0%, #ff9800 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.btn-orange {
  background: linear-gradient(135deg, #ea6f66 0%, #ff9800 100%);
  color: white;
  border: none;
  transition: all 0.3s ease;
}

.btn-orange:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 152, 0, 0.4);
  color: white;
}

.attraction-card-simple {
  transition: all 0.3s ease;
  border: 1px solid #f0f0f0;
}

.attraction-card-simple:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08) !important;
  border-color: #ff9800;
}

.service-redesign-container p {
  color: #555 !important;
}