/* ==========================================================
   SURREY TRAVELS — Premium Luxury Taxi Theme
   Black #111111 | Yellow #FFC107 | White #FFFFFF
   Design by Joboo Web | jobooweb.com
========================================================== */

:root {
  --black: #111111;
  --black-2: #1a1a1a;
  --black-3: #222222;
  --yellow: #FFC107;
  --yellow-dark: #e6a800;
  --white: #FFFFFF;
  --grey: #6c6c6c;
  --grey-light: #f6f6f4;
  --radius: 18px;
  --radius-sm: 12px;
  --shadow: 0 10px 40px rgba(17, 17, 17, .10);
  --shadow-lg: 0 20px 60px rgba(17, 17, 17, .18);
  --shadow-yellow: 0 10px 30px rgba(255, 193, 7, .35);
  --transition: all .35s cubic-bezier(.22, .68, .36, 1);
}

* { -webkit-tap-highlight-color: transparent; }

html { scroll-behavior: smooth; scroll-padding-top: 90px; }

body {
  font-family: 'Poppins', sans-serif;
  color: var(--black);
  background: var(--white);
  overflow-x: hidden;
}

img { max-width: 100%; }
a { text-decoration: none; transition: var(--transition); }

::selection { background: var(--yellow); color: var(--black); }

/* Scrollbar */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--yellow); border-radius: 10px; border: 2px solid var(--black); }

/* ============ PRELOADER ============ */
#preloader {
  position: fixed; inset: 0; z-index: 99999;
  background: var(--black);
  display: flex; align-items: center; justify-content: center;
  transition: opacity .6s ease, visibility .6s ease;
}
#preloader.hidden { opacity: 0; visibility: hidden; }
.preloader-inner { text-align: center; color: var(--white); }
.preloader-inner span {
  display: block; margin-top: 16px; font-weight: 800; letter-spacing: 6px; font-size: 14px;
  color: var(--yellow); animation: pulseText 1.4s ease infinite;
}
.taxi-loader {
  width: 84px; height: 84px; margin: 0 auto;
  border: 3px solid rgba(255, 193, 7, .25); border-top-color: var(--yellow);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  animation: spin 1.1s linear infinite;
}
.taxi-loader i { font-size: 30px; color: var(--yellow); animation: spinReverse 1.1s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes spinReverse { to { transform: rotate(-360deg); } }
@keyframes pulseText { 0%, 100% { opacity: 1; } 50% { opacity: .45; } }

/* ============ TOPBAR ============ */
.topbar {
  background: var(--black); color: #ccc;
  font-size: 13px; padding: 8px 0;
  border-bottom: 1px solid rgba(255, 193, 7, .18);
}
.topbar i { color: var(--yellow); margin-right: 6px; }
.topbar-left span { margin-right: 22px; }
.topbar-right a { color: #ccc; margin-left: 22px; }
.topbar-right a:hover { color: var(--yellow); }

/* ============ HEADER ============ */
.main-header {
  position: sticky; top: 0; z-index: 1030;
  background: rgba(17, 17, 17, .92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 193, 7, .15);
  transition: var(--transition);
}
.main-header.scrolled { box-shadow: 0 6px 30px rgba(0, 0, 0, .45); background: rgba(17, 17, 17, .98); }
.main-header .navbar { padding: 12px 0; }

.navbar-brand { display: flex; align-items: center; gap: 12px; }
.logo-icon {
  width: 48px; height: 48px; flex: 0 0 48px;
  background: linear-gradient(135deg, var(--yellow), var(--yellow-dark));
  border-radius: 13px; display: flex; align-items: center; justify-content: center;
  font-size: 22px; color: var(--black);
  box-shadow: var(--shadow-yellow);
  transform: rotate(-6deg); transition: var(--transition);
}
.navbar-brand:hover .logo-icon { transform: rotate(6deg) scale(1.06); }
.logo-text { line-height: 1.15; }
.logo-name { display: block; font-weight: 800; font-size: 19px; color: var(--white); letter-spacing: .5px; }
.logo-name em { font-style: normal; color: var(--yellow); }
.logo-tag { display: block; font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase; color: #999; }

.main-nav .nav-link {
  color: #ddd; font-weight: 500; font-size: 14.5px;
  padding: 8px 13px !important; position: relative;
}
.main-nav .nav-link::after {
  content: ''; position: absolute; left: 13px; right: 13px; bottom: 2px; height: 2px;
  background: var(--yellow); border-radius: 2px;
  transform: scaleX(0); transform-origin: left; transition: var(--transition);
}
.main-nav .nav-link:hover { color: var(--yellow); }
.main-nav .nav-link:hover::after, .main-nav .nav-link.active::after { transform: scaleX(1); }

.header-cta { gap: 10px; }

.navbar-toggler { border: none; color: var(--yellow); font-size: 26px; padding: 4px 8px; }
.navbar-toggler:focus { box-shadow: none; }

/* ============ BUTTONS ============ */
.btn { border-radius: 50px; font-weight: 600; transition: var(--transition); }

.btn-book {
  background: linear-gradient(135deg, var(--yellow), var(--yellow-dark));
  color: var(--black); border: none; padding: 11px 26px;
  box-shadow: var(--shadow-yellow);
  position: relative; overflow: hidden;
}
.btn-book::before {
  content: ''; position: absolute; top: 0; left: -80%;
  width: 50%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, .55), transparent);
  transform: skewX(-25deg); transition: .6s;
}
.btn-book:hover::before { left: 130%; }
.btn-book:hover { transform: translateY(-3px); box-shadow: 0 14px 34px rgba(255, 193, 7, .5); color: var(--black); }

.btn-call {
  background: transparent; color: var(--yellow);
  border: 2px solid var(--yellow); padding: 9px 22px;
}
.btn-call:hover { background: var(--yellow); color: var(--black); transform: translateY(-3px); box-shadow: var(--shadow-yellow); }

.btn-whatsapp {
  background: #25D366; color: var(--white); border: none; padding: 11px 26px;
  box-shadow: 0 10px 26px rgba(37, 211, 102, .38);
}
.btn-whatsapp:hover { background: #1eb955; color: var(--white); transform: translateY(-3px); }

.btn-dark-outline { border: 2px solid var(--black); color: var(--black); padding: 9px 22px; }
.btn-dark-outline:hover { background: var(--black); color: var(--yellow); transform: translateY(-3px); }

.btn-hero-call { border-radius: 50px; border-width: 2px; font-weight: 600; }
.btn-hero-call:hover { background: var(--white); color: var(--black); }

/* ============ MOBILE MENU ============ */
.mobile-menu { background: var(--black); color: var(--white); width: 300px !important; }
.mobile-menu .offcanvas-header { border-bottom: 1px solid rgba(255, 193, 7, .18); padding: 18px 20px; }
.btn-close-menu { background: none; border: none; color: var(--yellow); font-size: 24px; }
.mobile-nav { list-style: none; padding: 0; margin: 0 0 22px; }
.mobile-nav li a {
  display: flex; align-items: center; gap: 12px;
  color: #ddd; padding: 13px 8px; font-weight: 500;
  border-bottom: 1px solid rgba(255, 255, 255, .06);
}
.mobile-nav li a i { color: var(--yellow); width: 20px; text-align: center; }
.mobile-nav li a:hover { color: var(--yellow); padding-left: 14px; }

/* ============ HERO SLIDER ============ */
.hero-section { position: relative; }
.heroSwiper { height: 92vh; min-height: 560px; max-height: 860px; }
.hero-slide {
  position: relative; display: flex; align-items: center;
  background-size: cover; background-position: center;
}
.hero-slide-1 { background-image: linear-gradient(rgba(10,10,10,.2), rgba(10,10,10,.2)), url('https://images.unsplash.com/photo-1549194388-f61be84f6d9d?q=80&w=1920&auto=format&fit=crop'); }
.hero-slide-2 { background-image: linear-gradient(rgba(10,10,10,.2), rgba(10,10,10,.2)), url('https://images.unsplash.com/photo-1494976388531-d1058494cdd8?q=80&w=1920&auto=format&fit=crop'); }
.hero-slide-3 { background-image: linear-gradient(rgba(10,10,10,.2), rgba(10,10,10,.2)), url('https://images.unsplash.com/photo-1626621341517-bbf3d9990a23?q=80&w=1920&auto=format&fit=crop'); }

.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(17,17,17,.92) 0%, rgba(17,17,17,.72) 45%, rgba(17,17,17,.35) 100%);
}
.hero-content { position: relative; z-index: 2; color: var(--white); max-width: 1140px; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255, 193, 7, .14); border: 1px solid rgba(255, 193, 7, .5);
  color: var(--yellow); font-size: 13px; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase;
  padding: 8px 18px; border-radius: 50px; margin-bottom: 22px;
  backdrop-filter: blur(6px);
}
.hero-title {
  font-size: clamp(2.4rem, 6vw, 4.6rem);
  font-weight: 900; line-height: 1.05; letter-spacing: 1px;
  margin-bottom: 18px; text-transform: uppercase;
}
.hero-title span {
  color: var(--yellow); position: relative; display: inline-block;
  text-shadow: 0 0 40px rgba(255, 193, 7, .45);
}
.hero-sub { font-size: clamp(1rem, 2vw, 1.25rem); color: #e8e8e8; line-height: 1.7; margin-bottom: 30px; font-weight: 300; }
.hero-btns { display: flex; flex-wrap: wrap; gap: 14px; }

/* Slide text animation */
.hero-badge, .hero-title, .hero-sub, .hero-btns { opacity: 0; transform: translateY(36px); transition: none; }
.swiper-slide-active .hero-badge { animation: heroUp .8s .15s forwards; }
.swiper-slide-active .hero-title { animation: heroUp .8s .35s forwards; }
.swiper-slide-active .hero-sub   { animation: heroUp .8s .55s forwards; }
.swiper-slide-active .hero-btns  { animation: heroUp .8s .75s forwards; }
@keyframes heroUp { to { opacity: 1; transform: translateY(0); } }

.heroSwiper .swiper-pagination-bullet { background: var(--white); opacity: .5; width: 26px; height: 5px; border-radius: 5px; transition: var(--transition); }
.heroSwiper .swiper-pagination-bullet-active { background: var(--yellow); opacity: 1; width: 44px; }
.heroSwiper .swiper-button-prev, .heroSwiper .swiper-button-next {
  width: 52px; height: 52px; border-radius: 50%;
  background: rgba(255, 255, 255, .08); border: 1px solid rgba(255, 193, 7, .4);
  backdrop-filter: blur(8px); color: var(--yellow); transition: var(--transition);
}
.heroSwiper .swiper-button-prev::after, .heroSwiper .swiper-button-next::after { font-size: 18px; font-weight: 800; }
.heroSwiper .swiper-button-prev:hover, .heroSwiper .swiper-button-next:hover { background: var(--yellow); color: var(--black); }

/* ============ SECTION BASE ============ */
.section-pad { padding: 90px 0; }
.section-tag {
  display: inline-block; background: rgba(255, 193, 7, .16);
  color: var(--yellow-dark); border: 1px solid rgba(255, 193, 7, .5);
  font-size: 12px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase;
  padding: 7px 18px; border-radius: 50px; margin-bottom: 14px;
}
.section-tag.dark { background: rgba(17, 17, 17, .08); color: var(--black); border-color: rgba(17, 17, 17, .3); }
.section-title { font-size: clamp(1.7rem, 3.6vw, 2.6rem); font-weight: 800; line-height: 1.2; }
.section-title span { color: transparent; background: linear-gradient(135deg, var(--yellow-dark), var(--yellow)); -webkit-background-clip: text; background-clip: text; }
.section-title.light { color: var(--white); }

.bg-dark-tex {
  background:
    radial-gradient(circle at 15% 20%, rgba(255, 193, 7, .07), transparent 40%),
    radial-gradient(circle at 85% 85%, rgba(255, 193, 7, .05), transparent 45%),
    var(--black);
}
.bg-yellow-tex {
  background:
    radial-gradient(circle at 90% 10%, rgba(17, 17, 17, .05), transparent 40%),
    linear-gradient(160deg, #FFF8E1 0%, #FFECB3 100%);
}
.bg-light-tex { background: var(--grey-light); }

/* Glassmorphism */
.glass-card {
  background: rgba(255, 255, 255, .82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, .7);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* ============ BOOKING FORM ============ */
.booking-section { margin-top: -90px; position: relative; z-index: 10; padding-bottom: 20px; }
.booking-card { padding: 38px 36px; border-top: 5px solid var(--yellow); }
.booking-head p { color: var(--grey); font-size: 14px; }
.booking-head { margin-bottom: 22px; }

.hp-field { position: absolute !important; left: -9999px !important; opacity: 0; height: 0; width: 0; }

.booking-card .form-label { font-weight: 600; font-size: 13px; margin-bottom: 6px; }
.booking-card .form-label i { color: var(--yellow-dark); margin-right: 4px; }
.booking-card .form-control, .booking-card .form-select {
  border: 1.6px solid #e4e4e4; border-radius: var(--radius-sm);
  padding: 12px 15px; font-size: 14px; background: rgba(255, 255, 255, .9);
  transition: var(--transition);
}
.booking-card .form-control:focus, .booking-card .form-select:focus {
  border-color: var(--yellow); box-shadow: 0 0 0 4px rgba(255, 193, 7, .18);
}
.booking-note { font-size: 12.5px; color: var(--grey); }
.booking-note i { color: #1eb955; }

.booking-alert { border-radius: var(--radius-sm); font-size: 14px; }

/* ============ ABOUT ============ */
.about-visual { position: relative; padding: 0 30px 30px 0; }
.about-img-main {
  height: 420px; border-radius: var(--radius);
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 193, 7, .25), transparent 55%),
    linear-gradient(145deg, var(--black), var(--black-3));
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-lg); overflow: hidden; position: relative;
}
.about-img-main::before {
  content: ''; position: absolute; inset: 0;
  background-image: repeating-linear-gradient(45deg, rgba(255, 193, 7, .05) 0 2px, transparent 2px 22px);
}
.about-img-main i { font-size: 130px; color: var(--yellow); filter: drop-shadow(0 14px 34px rgba(255, 193, 7, .5)); animation: floatY 3.5s ease-in-out infinite; }
@keyframes floatY { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-16px); } }

.about-exp-badge {
  position: absolute; bottom: 0; right: 0;
  background: var(--yellow); color: var(--black);
  border-radius: var(--radius); padding: 20px 24px;
  display: flex; align-items: center; gap: 12px;
  box-shadow: var(--shadow-yellow); border: 4px solid var(--white);
}
.about-exp-badge strong { font-size: 40px; font-weight: 900; line-height: 1; }
.about-exp-badge span { font-size: 13px; font-weight: 600; line-height: 1.3; }

.about-point { font-size: 14px; font-weight: 500; }
.about-point i { color: var(--yellow-dark); margin-right: 7px; }

/* ============ SERVICES ============ */
.service-card {
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .1);
  padding: 28px 24px; height: 100%;
  transition: var(--transition); position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 4px;
  background: linear-gradient(90deg, var(--yellow), var(--yellow-dark));
  transform: scaleX(0); transform-origin: left; transition: var(--transition);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover { transform: translateY(-8px); background: rgba(255, 255, 255, .09); border-color: rgba(255, 193, 7, .45); }
.service-icon {
  width: 62px; height: 62px; border-radius: 16px;
  background: rgba(255, 193, 7, .14); border: 1px solid rgba(255, 193, 7, .4);
  display: flex; align-items: center; justify-content: center;
  font-size: 25px; color: var(--yellow); margin-bottom: 18px;
  transition: var(--transition);
}
.service-card:hover .service-icon { background: var(--yellow); color: var(--black); transform: rotate(-8deg) scale(1.08); box-shadow: var(--shadow-yellow); }
.service-card h5 { color: var(--white); font-weight: 700; font-size: 17px; }
.service-card p { color: #a9a9a9; font-size: 13.5px; line-height: 1.65; margin-bottom: 14px; }
.service-link { color: var(--yellow); font-size: 13px; font-weight: 600; }
.service-link i { transition: var(--transition); margin-left: 4px; }
.service-link:hover i { transform: translateX(6px); }
.service-link:hover { color: var(--white); }

/* ============ FLEET ============ */
.fleet-card {
  background: var(--white); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); border: 1px solid #efefef;
  transition: var(--transition); height: 100%;
  display: flex; flex-direction: column;
}
.fleet-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); border-color: rgba(255, 193, 7, .5); }
.fleet-img {
  height: 190px; position: relative;
  background:
    radial-gradient(circle at 65% 35%, rgba(255, 193, 7, .3), transparent 55%),
    linear-gradient(145deg, var(--black), var(--black-3));
  display: flex; align-items: center; justify-content: center;
}
.fleet-img i { font-size: 78px; color: var(--yellow); filter: drop-shadow(0 10px 26px rgba(255, 193, 7, .5)); transition: var(--transition); }
.fleet-card:hover .fleet-img i { transform: scale(1.12) translateX(8px); }
.fleet-badge {
  position: absolute; top: 14px; right: 14px;
  background: var(--yellow); color: var(--black);
  font-size: 11px; font-weight: 800; letter-spacing: 1.4px; text-transform: uppercase;
  padding: 5px 13px; border-radius: 50px;
}
.fleet-body { padding: 22px; display: flex; flex-direction: column; flex: 1; }
.fleet-body h5 { font-weight: 800; }
.fleet-desc { color: var(--grey); font-size: 13.5px; line-height: 1.6; }
.fleet-features {
  list-style: none; padding: 0; margin: 4px 0 18px;
  display: flex; flex-wrap: wrap; gap: 8px;
}
.fleet-features li {
  background: var(--grey-light); border: 1px solid #ececec;
  font-size: 12px; font-weight: 600; padding: 6px 12px; border-radius: 50px;
}
.fleet-features li i { color: var(--yellow-dark); margin-right: 5px; }
.fleet-body .btn { margin-top: auto; }

.fleet-card-cta {
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 193, 7, .18), transparent 50%),
    var(--black);
  display: flex; align-items: center; justify-content: center;
  border: 1px dashed rgba(255, 193, 7, .5);
}
.fleet-cta-inner { text-align: center; padding: 40px 26px; color: var(--white); }
.fleet-cta-inner > i { font-size: 52px; color: var(--yellow); margin-bottom: 16px; }
.fleet-cta-inner h5 { font-weight: 800; }
.fleet-cta-inner p { color: #aaa; font-size: 13.5px; }

/* ============ ROUTES ============ */
.route-search-wrap {
  max-width: 520px; margin: 0 auto; position: relative;
}
.route-search-wrap i {
  position: absolute; left: 20px; top: 50%; transform: translateY(-50%);
  color: var(--yellow-dark); font-size: 16px;
}
.route-search-wrap input {
  width: 100%; border: 2px solid rgba(17, 17, 17, .12); border-radius: 50px;
  padding: 15px 22px 15px 50px; font-size: 14.5px;
  background: var(--white); box-shadow: var(--shadow); outline: none;
  transition: var(--transition);
}
.route-search-wrap input:focus { border-color: var(--yellow); box-shadow: 0 0 0 5px rgba(255, 193, 7, .22); }

.route-card {
  display: block; background: var(--white);
  border: 1.6px solid rgba(17, 17, 17, .08);
  border-radius: var(--radius-sm); padding: 18px 20px;
  box-shadow: 0 6px 18px rgba(17, 17, 17, .06);
  transition: var(--transition); height: 100%;
}
.route-card:hover {
  border-color: var(--black); background: var(--black);
  transform: translateY(-5px); box-shadow: var(--shadow-lg);
}
.route-cities {
  display: flex; align-items: center; gap: 10px;
  font-weight: 700; font-size: 15px; color: var(--black);
  transition: var(--transition);
}
.route-cities i { color: var(--yellow-dark); }
.route-card:hover .route-cities { color: var(--white); }
.route-card:hover .route-cities i { color: var(--yellow); transform: translateX(4px); }
.route-label { display: block; margin-top: 7px; font-size: 12px; color: var(--grey); transition: var(--transition); }
.route-label i { margin-right: 4px; color: var(--yellow-dark); }
.route-card:hover .route-label { color: var(--yellow); }
.route-card:hover .route-label i { color: var(--yellow); }
.route-more { font-size: 14.5px; }
.route-more a { color: var(--black); font-weight: 700; }
.route-more a:hover { color: var(--yellow-dark); }

/* ============ WHY CHOOSE US ============ */
.why-card {
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--radius-sm);
  padding: 24px 12px; text-align: center; height: 100%;
  transition: var(--transition);
}
.why-card:hover {
  background: var(--yellow); border-color: var(--yellow);
  transform: translateY(-7px); box-shadow: var(--shadow-yellow);
}
.why-card i { display: block; font-size: 28px; color: var(--yellow); margin-bottom: 12px; transition: var(--transition); }
.why-card:hover i { color: var(--black); transform: scale(1.15); }
.why-card span { color: #ddd; font-size: 12.8px; font-weight: 600; line-height: 1.35; display: block; transition: var(--transition); }
.why-card:hover span { color: var(--black); }

/* ============ TOURS ============ */
.tour-card {
  position: relative; border-radius: var(--radius); overflow: hidden;
  min-height: 330px; display: flex; align-items: flex-end;
  background-size: cover; background-position: center;
  box-shadow: var(--shadow); transition: var(--transition);
}
.tour-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); }
.tour-shimla      { background-image: url('https://images.unsplash.com/photo-1597074866923-dc0589150358?q=80&w=800&auto=format&fit=crop'); }
.tour-manali      { background-image: url('https://images.unsplash.com/photo-1626621341517-bbf3d9990a23?q=80&w=800&auto=format&fit=crop'); }
.tour-dalhousie   { background-image: url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?q=80&w=800&auto=format&fit=crop'); }
.tour-dharamshala { background-image: url('https://images.unsplash.com/photo-1512036666432-2181c1f26420?q=80&w=800&auto=format&fit=crop'); }
.tour-kashmir     { background-image: url('https://images.unsplash.com/photo-1566837945700-30057527ade0?q=80&w=800&auto=format&fit=crop'); }
.tour-amritsar    { background-image: url('https://images.unsplash.com/photo-1514222134-b57cbb8ce073?q=80&w=800&auto=format&fit=crop'); }
.tour-katra       { background-image: url('https://images.unsplash.com/photo-1544735716-392fe2489ffa?q=80&w=800&auto=format&fit=crop'); }

.tour-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(17,17,17,.95) 8%, rgba(17,17,17,.45) 55%, rgba(17,17,17,.15) 100%);
  transition: var(--transition);
}
.tour-card:hover .tour-overlay { background: linear-gradient(to top, rgba(17,17,17,.97) 15%, rgba(17,17,17,.6) 65%, rgba(17,17,17,.25) 100%); }
.tour-content { position: relative; z-index: 2; padding: 24px; color: var(--white); width: 100%; }
.tour-icon {
  width: 48px; height: 48px; border-radius: 13px;
  background: rgba(255, 193, 7, .2); border: 1px solid rgba(255, 193, 7, .55);
  backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; color: var(--yellow); margin-bottom: 13px;
}
.tour-content h5 { font-weight: 800; }
.tour-content p { font-size: 13px; color: #d9d9d9; line-height: 1.55; margin-bottom: 14px; }
.tour-card-cta { background: linear-gradient(150deg, var(--black-2), var(--black)); border: 1px dashed rgba(255, 193, 7, .5); align-items: center; }
.tour-cta-icon { font-size: 50px; color: #25D366; margin-bottom: 14px; display: inline-block; }

/* ============ COUNTERS ============ */
.counter-section {
  background:
    radial-gradient(circle at 20% 30%, rgba(17, 17, 17, .10), transparent 45%),
    linear-gradient(135deg, var(--yellow), var(--yellow-dark));
  padding: 64px 0;
}
.counter-box { color: var(--black); }
.counter-box i { font-size: 34px; margin-bottom: 12px; opacity: .85; }
.counter-box h3 { font-size: clamp(2rem, 4vw, 2.9rem); font-weight: 900; margin-bottom: 4px; }
.counter-box p { font-weight: 600; font-size: 14.5px; letter-spacing: .4px; margin: 0; }

/* ============ TESTIMONIALS ============ */
.testimonialSwiper { padding: 10px 6px 56px; }
.testimonial-card { padding: 30px 28px; height: 100%; border-top: 4px solid var(--yellow); }
.testi-stars { color: var(--yellow-dark); margin-bottom: 14px; letter-spacing: 3px; }
.testi-text { font-size: 14.5px; color: #444; line-height: 1.75; font-style: italic; min-height: 128px; }
.testi-user { display: flex; align-items: center; gap: 14px; margin-top: 14px; }
.testi-avatar {
  width: 52px; height: 52px; border-radius: 50%;
  background: linear-gradient(135deg, var(--black), var(--black-3));
  color: var(--yellow); font-weight: 800; font-size: 20px;
  display: flex; align-items: center; justify-content: center;
  border: 2.5px solid var(--yellow);
}
.testi-user h6 { margin: 0; font-weight: 700; }
.testi-user small { color: var(--grey); font-size: 12px; }
.testi-user small i { color: var(--yellow-dark); }
.testi-pagination .swiper-pagination-bullet { background: var(--black); }
.testi-pagination .swiper-pagination-bullet-active { background: var(--yellow-dark); width: 26px; border-radius: 6px; }

/* ============ FAQ ============ */
.faq-accordion .accordion-item {
  border: 1px solid #eaeaea; border-radius: var(--radius-sm) !important;
  margin-bottom: 14px; overflow: hidden; box-shadow: 0 4px 16px rgba(17, 17, 17, .05);
}
.faq-accordion .accordion-button {
  font-weight: 700; font-size: 15.5px; padding: 19px 22px;
  background: var(--white); color: var(--black); box-shadow: none;
}
.faq-accordion .accordion-button i { color: var(--yellow-dark); }
.faq-accordion .accordion-button:not(.collapsed) { background: var(--black); color: var(--yellow); }
.faq-accordion .accordion-button:not(.collapsed) i { color: var(--yellow); }
.faq-accordion .accordion-button::after { filter: hue-rotate(190deg); }
.faq-accordion .accordion-button:not(.collapsed)::after { filter: invert(1) sepia(1) saturate(6) hue-rotate(5deg); }
.faq-accordion .accordion-body { color: #555; font-size: 14px; line-height: 1.75; padding: 20px 22px; }

/* ============ CONTACT ============ */
.contact-info-card { padding: 34px 30px; height: 100%; border-top: 5px solid var(--yellow); }
.contact-info-card h4 { font-weight: 800; margin-bottom: 22px; }
.contact-list { list-style: none; padding: 0; margin: 0; }
.contact-list li { display: flex; gap: 15px; margin-bottom: 20px; }
.ci-icon {
  width: 48px; height: 48px; flex: 0 0 48px; border-radius: 13px;
  background: rgba(255, 193, 7, .16); border: 1px solid rgba(255, 193, 7, .5);
  display: flex; align-items: center; justify-content: center;
  color: var(--yellow-dark); font-size: 18px;
}
.contact-list small { display: block; color: var(--grey); font-size: 12px; text-transform: uppercase; letter-spacing: 1.2px; font-weight: 600; }
.contact-list a, .contact-list span { display: block; color: var(--black); font-weight: 600; font-size: 14.5px; }
.contact-list a:hover { color: var(--yellow-dark); }

.map-wrap {
  border-radius: var(--radius); overflow: hidden; height: 100%; min-height: 420px;
  box-shadow: var(--shadow); border: 5px solid var(--white); outline: 1px solid #ececec;
}
.map-wrap iframe { min-height: 420px; filter: grayscale(20%); transition: var(--transition); }
.map-wrap:hover iframe { filter: grayscale(0%); }

/* ============ THANK YOU ============ */
.thankyou-section { padding: 80px 0 100px; background: radial-gradient(circle at 50% 0%, rgba(255,193,7,.12), transparent 55%), var(--grey-light); min-height: 70vh; }
.thankyou-card { padding: 48px 40px; border-top: 6px solid var(--yellow); }
.ty-check i { font-size: 84px; color: #1eb955; animation: popIn .6s cubic-bezier(.2, 1.6, .4, 1) both; }
@keyframes popIn { from { transform: scale(0); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.ty-title { font-weight: 900; font-size: clamp(1.7rem, 4vw, 2.4rem); margin: 18px 0 10px; }
.ty-sub { color: #555; line-height: 1.7; }
.ty-booking-id {
  display: inline-flex; flex-direction: column; gap: 3px;
  background: var(--black); color: var(--white);
  border-radius: var(--radius-sm); padding: 14px 36px; margin: 16px 0 24px;
  border: 2px dashed var(--yellow);
}
.ty-booking-id span { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: #999; }
.ty-booking-id strong { font-size: 26px; color: var(--yellow); letter-spacing: 2.5px; font-weight: 800; }
.ty-details { max-width: 520px; margin: 0 auto 20px; text-align: left; }
.ty-row {
  display: flex; justify-content: space-between; gap: 14px; align-items: center;
  padding: 11px 4px; border-bottom: 1px dashed #e2e2e2; font-size: 14px;
}
.ty-row span { color: var(--grey); }
.ty-row span i { color: var(--yellow-dark); margin-right: 6px; }
.ty-whatsapp-note {
  background: rgba(37, 211, 102, .1); border: 1px solid rgba(37, 211, 102, .4);
  border-radius: var(--radius-sm); padding: 14px 18px;
  font-size: 14px; color: #128C4B; font-weight: 600;
}
.ty-whatsapp-note i { font-size: 18px; }
.ty-whatsapp-note small { color: #4a8a67; font-weight: 400; }
.ty-mail-note { font-size: 13.5px; color: var(--grey); }
.ty-mail-note i { color: var(--yellow-dark); }

/* ============ FOOTER ============ */
.main-footer {
  background:
    radial-gradient(circle at 85% 15%, rgba(255, 193, 7, .06), transparent 40%),
    var(--black);
  color: #b9b9b9;
}
.footer-top { padding: 70px 0 40px; }
.footer-logo { display: flex; align-items: center; gap: 12px; }
.footer-about { font-size: 13.5px; line-height: 1.75; margin-top: 14px; }
.footer-social { display: flex; gap: 10px; margin-top: 18px; }
.footer-social a {
  width: 42px; height: 42px; border-radius: 12px;
  background: rgba(255, 255, 255, .07); border: 1px solid rgba(255, 255, 255, .12);
  display: flex; align-items: center; justify-content: center;
  color: var(--yellow); font-size: 17px;
}
.footer-social a:hover { background: var(--yellow); color: var(--black); transform: translateY(-4px); box-shadow: var(--shadow-yellow); }
.footer-title {
  color: var(--white); font-weight: 700; font-size: 16px;
  margin-bottom: 20px; position: relative; padding-bottom: 10px;
}
.footer-title::after { content: ''; position: absolute; left: 0; bottom: 0; width: 34px; height: 3px; background: var(--yellow); border-radius: 3px; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: #b9b9b9; font-size: 13.5px; }
.footer-links a::before { content: '›'; color: var(--yellow); margin-right: 8px; font-weight: 800; }
.footer-links a:hover { color: var(--yellow); padding-left: 6px; }

.footer-contact-strip {
  display: flex; flex-wrap: wrap; gap: 22px;
  background: rgba(255, 255, 255, .05); border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--radius-sm); padding: 20px 24px; height: 100%;
  align-items: center;
}
.fc-item { display: flex; gap: 12px; align-items: center; }
.fc-item > i { font-size: 22px; color: var(--yellow); }
.fc-item small { display: block; font-size: 11px; text-transform: uppercase; letter-spacing: 1.4px; color: #888; }
.fc-item a, .fc-item span { color: var(--white); font-weight: 600; font-size: 13.5px; }
.fc-item a:hover { color: var(--yellow); }

.newsletter-box {
  background: rgba(255, 193, 7, .1); border: 1px solid rgba(255, 193, 7, .35);
  border-radius: var(--radius-sm); padding: 20px 24px; height: 100%;
}
.newsletter-box h6 { color: var(--white); font-weight: 700; margin-bottom: 12px; }
.newsletter-box h6 i { color: var(--yellow); }
.newsletter-form { display: flex; gap: 8px; }
.newsletter-form input {
  flex: 1; border: 1px solid rgba(255, 255, 255, .18); background: rgba(0, 0, 0, .35);
  border-radius: 50px; padding: 11px 18px; color: var(--white); font-size: 13.5px; outline: none;
}
.newsletter-form input::placeholder { color: #888; }
.newsletter-form input:focus { border-color: var(--yellow); }
.newsletter-form button {
  border: none; background: var(--yellow); color: var(--black);
  font-weight: 700; border-radius: 50px; padding: 11px 22px; font-size: 13.5px;
  transition: var(--transition);
}
.newsletter-form button:hover { background: var(--yellow-dark); transform: translateY(-2px); }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding: 18px 0; font-size: 13px;
}
.footer-bottom a { color: var(--yellow); font-weight: 600; }
.footer-bottom a:hover { color: var(--white); }

/* ============ FLOATING BUTTONS ============ */
.float-btn {
  position: fixed; right: 22px; z-index: 1050;
  width: 56px; height: 56px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; color: var(--white); border: none;
  box-shadow: 0 10px 28px rgba(0, 0, 0, .3);
  transition: var(--transition);
}
.float-whatsapp { bottom: 96px; background: #25D366; animation: waPulse 2s infinite; }
.float-call { bottom: 24px; background: var(--yellow); color: var(--black); }
.float-top {
  bottom: 168px; background: var(--black); color: var(--yellow);
  opacity: 0; visibility: hidden; transform: translateY(14px);
  border: 1px solid rgba(255, 193, 7, .4); font-size: 18px;
}
.float-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.float-btn:hover { transform: scale(1.1); color: inherit; }
.float-whatsapp:hover { color: var(--white); }

@keyframes waPulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, .55); }
  70% { box-shadow: 0 0 0 18px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}
.float-tooltip {
  position: absolute; right: 68px; white-space: nowrap;
  background: var(--black); color: var(--white);
  font-size: 12px; font-weight: 600; padding: 7px 14px; border-radius: 8px;
  opacity: 0; visibility: hidden; transition: var(--transition);
}
.float-btn:hover .float-tooltip { opacity: 1; visibility: visible; right: 66px; }

/* ============ INQUIRY POPUP ============ */
.inquiry-popup {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(17, 17, 17, .7); backdrop-filter: blur(6px);
  display: none; align-items: center; justify-content: center; padding: 20px;
}
.inquiry-popup.show { display: flex; animation: fadeIn .35s ease; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.inquiry-card {
  position: relative; background: var(--white);
  border-radius: var(--radius); padding: 40px 34px;
  max-width: 400px; width: 100%; text-align: center;
  border-top: 6px solid var(--yellow);
  animation: slideUp .45s cubic-bezier(.2, 1.2, .4, 1);
  box-shadow: var(--shadow-lg);
}
@keyframes slideUp { from { transform: translateY(46px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.inquiry-close {
  position: absolute; top: 14px; right: 16px;
  background: none; border: none; color: var(--grey); font-size: 22px;
  transition: var(--transition);
}
.inquiry-close:hover { color: var(--black); transform: rotate(90deg); }
.inquiry-icon {
  width: 72px; height: 72px; margin: 0 auto 18px; border-radius: 20px;
  background: linear-gradient(135deg, var(--yellow), var(--yellow-dark));
  display: flex; align-items: center; justify-content: center;
  font-size: 30px; color: var(--black); box-shadow: var(--shadow-yellow);
  transform: rotate(-6deg);
}
.inquiry-card h4 { font-weight: 800; }
.inquiry-card p { color: var(--grey); font-size: 14px; }

/* ============ LAZY / MISC ============ */
[data-aos] { will-change: transform, opacity; }

/* ============ RESPONSIVE ============ */
@media (max-width: 991.98px) {
  .heroSwiper { height: 84vh; min-height: 520px; }
  .booking-section { margin-top: -60px; }
  .booking-card { padding: 28px 22px; }
  .section-pad { padding: 66px 0; }
  .about-img-main { height: 330px; }
  .heroSwiper .swiper-button-prev, .heroSwiper .swiper-button-next { display: none; }
}
@media (max-width: 575.98px) {
  .heroSwiper { height: 78vh; min-height: 500px; }
  .hero-btns .btn { padding: 11px 22px; font-size: 14.5px; }
  .booking-section { margin-top: -40px; }
  .about-exp-badge { padding: 14px 18px; }
  .about-exp-badge strong { font-size: 30px; }
  .thankyou-card { padding: 34px 20px; }
  .float-btn { width: 50px; height: 50px; font-size: 21px; right: 16px; }
  .float-whatsapp { bottom: 86px; }
  .float-top { bottom: 150px; }
  .footer-contact-strip { flex-direction: column; align-items: flex-start; gap: 16px; }
}
