

@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400..700;1,400..700&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400..700;1,400..700&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/* ============================================
   OM SAI RAM TRAVELS — PREMIUM STYLESHEET
   ============================================ */

:root {
  --primary:       #0D2340;
  --primary-dark:  #081729;
  --primary-light: #1D3B66;
  --accent:        #E67E22;
  --accent-dark:   #C96A15;
  --accent-light:  #F39A46;
  --gold:          #C89B3C;
  --white:         #FFFFFF;
  --light-bg:      #F4F7FB;
  --text-dark:     #1A1A1A;
  --text-body:     #4B5563;
  --shadow-md:     0 6px 18px rgba(13,35,64,.12);
  --shadow-lg:     0 12px 32px rgba(13,35,64,.16);
  --radius-md:     12px;
  --radius-lg:     18px;
  --transition:    all 0.35s cubic-bezier(.4,0,.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

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

h1,h2,h3,h4,h5 {
  font-family: 'Lora', serif;
  color: var(--text-dark);
  font-weight: 700;
}

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

/* ============ UTILITIES ============ */
.text-accent  { color: var(--accent) !important; }
.text-gold    { color: var(--gold) !important; }
.text-primary-c { color: var(--primary) !important; }
.bg-primary-c { background: var(--primary) !important; }
.fw-600       { font-weight: 600; }
.section-pad  { padding: 90px 0; }
.section-pad-sm { padding: 60px 0; }

.section-label {
  display: inline-block;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: .75rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.2;
  margin-bottom: 1.25rem;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--text-body);
  max-width: 620px;
}

.section-divider {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 2rem;
}
.section-divider::after {
  content: '';
  flex: 1;
  height: 2px;
  background: linear-gradient(to right, var(--accent), transparent);
}
.section-divider span {
  width: 40px; height: 3px;
  background: var(--accent);
  border-radius: 2px;
}

/* ============ BUTTONS ============ */
.btn-accent {
  background: var(--accent);
  color: var(--white);
  border: none;
  padding: .65rem 1.6rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: .9rem;
  transition: var(--transition);
  box-shadow: 0 4px 14px rgba(230,126,34,.35);
}
.btn-accent:hover {
  background: var(--accent-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(230,126,34,.45);
}

.btn-outline-nav {
  border: 1.5px solid rgba(255,255,255,.35);
  color: var(--white);
  padding: .6rem 1.3rem;
  border-radius: 8px;
  font-weight: 500;
  font-size: .88rem;
  transition: var(--transition);
}
.btn-outline-nav:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(230,126,34,.08);
}

.btn-primary-c {
  background: var(--primary);
  color: var(--white);
  border: 2px solid var(--primary);
  padding: .75rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  transition: var(--transition);
}
.btn-primary-c:hover {
  background: transparent;
  color: var(--primary);
}

.btn-outline-white {
  border: 2px solid var(--white);
  color: var(--white);
  padding: .75rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  transition: var(--transition);
}
.btn-outline-white:hover {
  background: var(--white);
  color: var(--primary);
}

/* ============ SCROLL PROGRESS ============ */
#scroll-progress {
  position: fixed;
  top: 0; left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(to right, var(--accent), var(--gold));
  z-index: 9999;
  transition: width .1s;
}

/* ============ NAVBAR ============ */
#mainNav {
  background: transparent;
  padding: 1.1rem 0;
  transition: var(--transition);
  z-index: 1050;
}
#mainNav.scrolled {
  background: var(--primary-dark);
  padding: .7rem 0;
  box-shadow: 0 4px 24px rgba(0,0,0,.3);
}
.navbar-nav .nav-link {
  color: rgba(255,255,255,.85) !important;
  font-weight: 500;
  font-size: .92rem;
  padding: .5rem 1rem !important;
  position: relative;
  letter-spacing: .02em;
}
.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  width: 0; height: 2px;
  background: var(--accent);
  transform: translateX(-50%);
  transition: width .3s;
}
.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after { width: 60%; }
.navbar-nav .nav-link.active { color: var(--white) !important; }
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255,255,255,0.85)' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
.offcanvas { background: var(--primary-dark); }
.offcanvas-header { background: var(--primary); }
.offcanvas-header .btn-close { filter: invert(1); }
.nav-link-mobile {
  color: rgba(255,255,255,.8) !important;
  padding: .75rem 1rem !important;
  border-radius: 8px;
  font-size: .95rem;
}
.nav-link-mobile:hover { background: rgba(255,255,255,.08); color: var(--white) !important; }

/* ============ FLOATING BUTTONS ============ */
.whatsapp-float {
  position: fixed;
  bottom: 90px; right: 20px;
  width: 54px; height: 54px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; color: var(--white);
  box-shadow: 0 4px 20px rgba(37,211,102,.45);
  z-index: 999;
  animation: pulse-green 2.5s infinite;
  transition: var(--transition);
}
.whatsapp-float:hover { transform: scale(1.1); color: var(--white); }

.call-float {
  position: fixed;
  bottom: 25px; right: 20px;
  width: 54px; height: 54px;
  background: var(--accent);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; color: var(--white);
  box-shadow: 0 4px 20px rgba(230,126,34,.45);
  z-index: 999;
  animation: pulse-orange 2.5s infinite;
  transition: var(--transition);
}
.call-float:hover { transform: scale(1.1); color: var(--white); }

#backToTop {
  position: fixed;
  bottom: 25px; right: 20px;
  width: 46px; height: 46px;
  background: var(--primary);
  border: none; border-radius: 50%;
  color: var(--white); font-size: 1.1rem;
  cursor: pointer;
  display: none;
  z-index: 998;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}
#backToTop:hover { background: var(--accent); transform: translateY(-3px); }
#backToTop.show { display: flex; align-items: center; justify-content: center; }

@keyframes pulse-green {
  0%,100% { box-shadow: 0 0 0 0 rgba(37,211,102,.4); }
  50% { box-shadow: 0 0 0 12px rgba(37,211,102,0); }
}
@keyframes pulse-orange {
  0%,100% { box-shadow: 0 0 0 0 rgba(230,126,34,.4); }
  50% { box-shadow: 0 0 0 12px rgba(230,126,34,0); }
}


:root{
  --primary:#0b1220;
  --primary-dark:#07111f;
  --accent:#f59e0b;
  --accent-2:#fb923c;
  --white:#ffffff;
  --text-soft:rgba(255,255,255,.78);
  --border-soft:rgba(255,255,255,.12);
  --shadow-lg:0 20px 60px rgba(0,0,0,.35);
  --radius-xl:28px;
}

.hero-section{
  position:relative;
  min-height:100vh;
  overflow:hidden;
  background:linear-gradient(180deg,#08111f 0%,#0b1220 100%);
  display:flex;
  align-items:center;
}

.hero-bg{
  position:absolute;
  inset:0;
  z-index:0;
}

.hero-slide{
  position:absolute;
  inset:0;
  background-size:cover;
  background-position:center;
  opacity:0;
  transform:scale(1.08);
  transition:opacity 1.1s ease, transform 7s ease;
  will-change:transform, opacity;
}

.hero-slide.active{
  opacity:1;
  transform:scale(1);
}

.hero-overlay{
  position:absolute;
  inset:0;
  background:
    linear-gradient(120deg, rgba(6,12,22,.92) 0%, rgba(10,20,35,.78) 45%, rgba(10,20,35,.42) 100%),
    radial-gradient(circle at top right, rgba(245,158,11,.18), transparent 30%),
    radial-gradient(circle at bottom left, rgba(59,130,246,.12), transparent 26%);
}

.hero-content{
  position:relative;
  z-index:2;
}

.hero-badge{
  display:inline-flex;
  align-items:center;
  gap:.55rem;
  padding:.6rem 1rem;
  border:1px solid rgba(245,158,11,.35);
  background:rgba(245,158,11,.10);
  color:#ffdca8;
  border-radius:999px;
  font-size:.82rem;
  font-weight:700;
  letter-spacing:.04em;
  margin-bottom:1.25rem;
  backdrop-filter:blur(12px);
}

.hero-badge i{
  color:var(--accent);
}

.hero-title{
  color:var(--white);  
  font-weight:900;
  line-height:1.02;
  font-size:clamp(2.5rem, 4vw, 4.3rem);
  margin-bottom:1rem;
  letter-spacing:-.03em;
}

.hero-title span{
  color:var(--accent);
}

.hero-sub{
  max-width:560px;
  color:var(--text-soft);
  font-size:1.05rem;
  line-height:1.75;
  margin-bottom:1.6rem;
}

.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:.85rem;
  margin-bottom:1.35rem;
}

.btn-accent{
  background:linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  color:#111827;
  border:none;
  font-weight:800;
  border-radius:14px;
  padding:.9rem 1.35rem;
  box-shadow:0 14px 30px rgba(245,158,11,.24);
}

.btn-accent:hover{
  color:#111827;
  transform:translateY(-1px);
}

.btn-outline-light{
  border:1px solid rgba(255,255,255,.22);
  color:var(--white);
  border-radius:14px;
  padding:.9rem 1.35rem;
  backdrop-filter:blur(10px);
}

.btn-outline-light:hover{
  background:rgba(255,255,255,.1);
  color:var(--white);
}

.hero-trust{
  display:flex;
  flex-wrap:wrap;
  gap:.75rem;
}

.hero-trust span{
  display:inline-flex;
  align-items:center;
  gap:.4rem;
  padding:.55rem .85rem;
  border-radius:999px;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.10);
  color:rgba(255,255,255,.88);
  font-size:.88rem;
  backdrop-filter:blur(10px);
}

.hero-trust i{
  color:#4ade80;
}

.hero-booking-card{
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.14);
  border-radius:var(--radius-xl);
  padding:1.5rem;
  box-shadow:var(--shadow-lg);
  backdrop-filter:blur(22px);
  -webkit-backdrop-filter:blur(22px);
}

.booking-card-header{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:1rem;
  margin-bottom:1.2rem;
}

.booking-card-header h3{
  margin:0;
  color:#fff;
  font-size:1.35rem;
  font-weight:800;
}

.booking-card-header p{
  margin:.25rem 0 0;
  color:rgba(255,255,255,.65);
  font-size:.92rem;
}

.booking-badge{
  display:inline-flex;
  align-items:center;
  padding:.45rem .8rem;
  border-radius:999px;
  background:rgba(245,158,11,.15);
  border:1px solid rgba(245,158,11,.3);
  color:#ffdca8;
  font-size:.8rem;
  font-weight:700;
}

.hero-booking-form .form-control,
.hero-booking-form .form-select{
  background:rgba(255,255,255,.09);
  border:1px solid rgba(255,255,255,.14);
  color:#fff;
  border-radius:14px;
  min-height:52px;
  padding:.85rem 1rem;
}

.hero-booking-form .form-control::placeholder{
  color:rgba(255,255,255,.48);
}

.hero-booking-form .form-control:focus,
.hero-booking-form .form-select:focus{
  background:rgba(255,255,255,.13);
  border-color:rgba(245,158,11,.75);
  box-shadow:0 0 0 .2rem rgba(245,158,11,.15);
  color:#fff;
}

.hero-booking-form .form-select option{
  background:#0b1220;
  color:#fff;
}

.hero-scroll{
  position:absolute;
  left:50%;
  bottom:18px;
  transform:translateX(-50%);
  z-index:2;
  width:28px;
  height:48px;
  border:1px solid rgba(255,255,255,.25);
  border-radius:999px;
  display:flex;
  justify-content:center;
  padding-top:8px;
}

.hero-scroll span{
  width:5px;
  height:10px;
  border-radius:999px;
  background:var(--accent);
  animation:scrollDot 1.6s infinite;
}

@keyframes scrollDot{
  0%{transform:translateY(0);opacity:1;}
  100%{transform:translateY(18px);opacity:0;}
}

@media (max-width: 991px){
  .hero-section{
    min-height:auto;
    padding:90px 0 60px;
  }

  .hero-title{
    font-size:clamp(2.2rem, 10vw, 4rem);
  }

  .hero-booking-card{
    margin-top:0;
  }
}

@media (max-width: 576px){
  .hero-actions{
    flex-direction:column;
  }

  .hero-actions .btn{
    width:100%;
  }

  .hero-trust{
    gap:.55rem;
  }

  .hero-trust span{
    width:100%;
    justify-content:flex-start;
  }

  .booking-card-header{
    flex-direction:column;
  }
}


/* ============ ABOUT ============ */
.about-section { background: var(--white); }
.about-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.about-img-wrap img {
  width: 100%; height: 520px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}
.about-experience-badge {
  position: absolute;
  bottom: -20px; right: -20px;
  background: var(--accent);
  color: var(--white);
  padding: 1.5rem;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.about-experience-badge .num {
  font-family: 'Lora', serif;
  font-size: 2.5rem; font-weight: 900; line-height: 1;
}
.about-check-item {
  display: flex; align-items: flex-start; gap: 12px;
  margin-bottom: 1rem;
}
.about-check-icon {
  width: 36px; height: 36px; min-width: 36px;
  background: rgba(230,126,34,.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
}
.counter-card {
  background: var(--light-bg);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  text-align: center;
  border-bottom: 3px solid var(--accent);
  transition: var(--transition);
}
.counter-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.counter-num {
  font-family: 'Lora', serif;
  font-size: 2.2rem; font-weight: 900;
  color: var(--primary);
  line-height: 1;
}
.counter-num span { color: var(--accent); }
.counter-label { font-size: .82rem; color: var(--text-body); margin-top: .4rem; font-weight: 500; }

/* ============ SERVICES ============ */
.services-section { background: var(--light-bg); }
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  height: 100%;
  border: 1px solid transparent;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 3px;
  background: var(--accent);
  transition: width .4s;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(230,126,34,.2);
}
.service-card:hover::after { width: 100%; }
.service-icon {
  width: 62px; height: 62px;
  background: rgba(13,35,64,.07);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  color: var(--primary);
  margin-bottom: 1.25rem;
  transition: var(--transition);
}
.service-card:hover .service-icon {
  background: var(--accent);
  color: var(--white);
}
.service-card h5 { font-size: 1.05rem; margin-bottom: .6rem; }
.service-card p { font-size: .88rem; color: var(--text-body); line-height: 1.6; margin: 0; }

/* ============ WHY CHOOSE US ============ */
.why-section { background: var(--primary-dark); overflow: hidden; }
.why-section .section-title { color: var(--white); }
.why-section .section-label { color: var(--accent-light); }
.why-section .section-sub { color: rgba(255,255,255,.65); }
.why-feature-line {
  display: flex; gap: 1.25rem; align-items: flex-start;
  padding: 1.4rem 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
  position: relative;
}
.why-feature-line:last-child { border-bottom: none; }
.why-icon-circle {
  width: 52px; height: 52px; min-width: 52px;
  border-radius: 50%;
  border: 2px solid rgba(230,126,34,.4);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; color: var(--accent);
  background: rgba(230,126,34,.08);
  transition: var(--transition);
}
.why-feature-line:hover .why-icon-circle {
  background: var(--accent); color: var(--white); border-color: var(--accent);
}
.why-feature-title { color: var(--white); font-size: 1rem; margin-bottom: .3rem; font-family: 'DM Sans', sans-serif; font-weight: 600; }
.why-feature-desc { color: rgba(255,255,255,.6); font-size: .87rem; line-height: 1.5; margin: 0; }

/* ============ FLEET ============ */
.fleet-section { background: var(--white); }
.fleet-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  height: 100%;
}
.fleet-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.fleet-img-wrap {
  position: relative;
  overflow: hidden;
  height: 200px;
}
.fleet-img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s ease;
}
.fleet-card:hover .fleet-img-wrap img { transform: scale(1.06); }
.fleet-badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--accent);
  color: var(--white);
  padding: .25rem .7rem;
  border-radius: 4px;
  font-size: .75rem; font-weight: 700;
  text-transform: uppercase;
}
.fleet-body { padding: 1.4rem; }
.fleet-body h5 { font-size: 1.1rem; margin-bottom: 1rem; }
.fleet-specs {
  display: flex; flex-wrap: wrap; gap: .5rem;
  margin-bottom: 1.25rem;
}
.fleet-spec {
  display: flex; align-items: center; gap: 5px;
  background: var(--light-bg);
  padding: .3rem .7rem;
  border-radius: 6px;
  font-size: .78rem; font-weight: 500;
  color: var(--text-body);
}
.fleet-spec i { color: var(--accent); font-size: .85rem; }

/* ============ ROUTES ============ */
.routes-section { background: var(--light-bg); }
.route-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  display: flex; align-items: center; justify-content: space-between;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  border-left: 4px solid var(--accent);
}
.route-card:hover { transform: translateX(4px); box-shadow: var(--shadow-lg); }
.route-cities {
  display: flex; align-items: center; gap: .75rem;
  font-weight: 700; color: var(--primary);
  font-family: 'Lora', serif;
}
.route-arrow { color: var(--accent); font-size: 1.1rem; }
.route-info { font-size: .82rem; color: var(--text-body); margin-top: .25rem; }
.route-price { text-align: right; }
.route-price-num { font-family: 'Lora', serif; font-size: 1.4rem; font-weight: 900; color: var(--primary); }
.route-price-label { font-size: .75rem; color: var(--text-body); }

/* ============ PACKAGES ============ */
.packages-section { background: var(--white); }
.package-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  position: relative;
  transition: var(--transition);
  height: 100%;
}
.package-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.package-img {
  height: 210px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.package-img::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(13,35,64,.9) 0%, transparent 60%);
}
.package-overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 1.25rem 1.5rem;
  z-index: 1;
}
.package-overlay h5 { color: var(--white); font-size: 1.1rem; margin-bottom: .25rem; }
.package-overlay p { color: rgba(255,255,255,.7); font-size: .82rem; margin: 0; }
.package-body {
  padding: 1.25rem 1.5rem;
  background: var(--white);
  border: 1px solid var(--light-bg);
  border-top: none;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}
.package-feature {
  display: flex; align-items: center; gap: 6px;
  font-size: .83rem; color: var(--text-body);
  margin-bottom: .4rem;
}
.package-feature i { color: var(--accent); }

/* ============ PROCESS ============ */
.process-section { background: var(--primary-dark); }
.process-section .section-title { color: var(--white); }
.process-section .section-label { color: var(--accent-light); }
.process-step {
  text-align: center;
  position: relative;
}
.process-step::after {
  content: '';
  position: absolute;
  top: 35px; left: calc(50% + 45px);
  width: calc(100% - 90px); height: 2px;
  background: linear-gradient(to right, var(--accent), rgba(230,126,34,.2));
}
.process-step:last-child::after { display: none; }
.process-num {
  width: 70px; height: 70px;
  border-radius: 50%;
  background: rgba(230,126,34,.12);
  border: 2px solid rgba(230,126,34,.35);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem;
  position: relative;
  z-index: 1;
}
.process-num span {
  font-family: 'Lora', serif;
  font-size: 1.5rem; font-weight: 900;
  color: var(--accent);
}
.process-icon {
  font-size: 1.4rem; color: var(--accent);
  position: absolute; bottom: -8px; right: -8px;
  width: 28px; height: 28px;
  background: var(--primary-dark);
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
}
.process-title { color: var(--white); font-size: 1rem; font-family: 'DM Sans',sans-serif; font-weight: 700; margin-bottom: .5rem; }
.process-desc { color: rgba(255,255,255,.6); font-size: .85rem; line-height: 1.5; }

/* ============ TESTIMONIALS ============ */
.testimonials-section { background: var(--light-bg); }
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-md);
  height: 100%;
}
.testimonial-stars { color: #F59E0B; margin-bottom: .75rem; }
.testimonial-text { font-size: .92rem; color: var(--text-body); line-height: 1.7; font-style: italic; margin-bottom: 1.25rem; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--primary);
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-weight: 700; font-size: 1.1rem;
}
.testimonial-name { font-weight: 700; font-size: .92rem; color: var(--text-dark); margin-bottom: 0; }
.testimonial-trip { font-size: .78rem; color: var(--text-body); }
.google-badge {
  display: flex; align-items: center; gap: 6px;
  background: #fff; border: 1px solid #e0e0e0;
  padding: .35rem .8rem; border-radius: 6px;
  font-size: .8rem; font-weight: 600; color: #333;
  margin-bottom: .75rem; width: fit-content;
}
.google-badge img { width: 16px; }

/* ============ GALLERY ============ */
.gallery-section { background: var(--white); }
.gallery-grid { columns: 3; gap: 16px; }
.gallery-item {
  break-inside: avoid;
  margin-bottom: 16px;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  position: relative;
}
.gallery-item img {
  width: 100%; display: block;
  transition: transform .5s ease;
}
.gallery-item::after {
  content: '\F52A';
  font-family: 'Bootstrap-Icons';
  position: absolute; inset: 0;
  background: rgba(13,35,64,.6);
  color: var(--white); font-size: 1.8rem;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity .3s;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item:hover::after { opacity: 1; }
@media (max-width: 768px) { .gallery-grid { columns: 2; } }
@media (max-width: 480px) { .gallery-grid { columns: 1; } }

/* Lightbox */
.lightbox {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,.92);
  z-index: 9999;
  align-items: center; justify-content: center;
}
.lightbox.active { display: flex; }
.lightbox img {
  max-width: 90vw; max-height: 85vh;
  border-radius: var(--radius-md);
  box-shadow: 0 20px 60px rgba(0,0,0,.5);
}
.lightbox-close {
  position: absolute; top: 20px; right: 25px;
  font-size: 2.5rem; color: var(--white);
  cursor: pointer; line-height: 1;
  transition: var(--transition);
}
.lightbox-close:hover { color: var(--accent); transform: rotate(90deg); }

/* ============ CTA ============ */
.cta-section {
  background: var(--primary-dark);
  position: relative; overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: rgba(230,126,34,.06);
}
.cta-section::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: rgba(230,126,34,.04);
}
.cta-section .section-title { color: var(--white); }
.cta-num {
  font-family: 'Lora', serif;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900; color: var(--accent);
  text-shadow: 0 0 40px rgba(230,126,34,.3);
}

/* ============ FAQ ============ */
.faq-section { background: var(--light-bg); }
.accordion-item {
  border: 1px solid rgba(13,35,64,.08) !important;
  border-radius: var(--radius-md) !important;
  margin-bottom: .75rem;
  overflow: hidden;
}
.accordion-button {
  font-weight: 600; color: var(--text-dark) !important;
  background: var(--white) !important;
  font-size: .95rem;
}
.accordion-button:not(.collapsed) { color: var(--accent) !important; background: rgba(230,126,34,.04) !important; }
.accordion-button::after { filter: none; }
.accordion-button:focus { box-shadow: none; }

/* ============ CONTACT ============ */
.contact-map iframe {
  width: 100%; height: 400px;
  border-radius: var(--radius-lg);
  border: none;
}
.contact-info-card {
  background: var(--primary);
  border-radius: var(--radius-lg);
  padding: 2rem;
  height: 100%;
}
.contact-info-card .section-title { color: var(--white); font-size: 1.8rem; }
.contact-info-item {
  display: flex; gap: 1rem;
  margin-bottom: 1.5rem;
}
.ci-icon {
  width: 44px; height: 44px; min-width: 44px;
  background: rgba(230,126,34,.15);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent); font-size: 1.1rem;
}
.ci-text { color: rgba(255,255,255,.85); font-size: .9rem; line-height: 1.6; }
.ci-text a { color: rgba(255,255,255,.85); }
.ci-text a:hover { color: var(--accent); }
.form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
}
.form-card .form-control,
.form-card .form-select {
  border: 1.5px solid #e5e7eb;
  border-radius: 8px;
  padding: .75rem 1rem;
  transition: var(--transition);
}
.form-card .form-control:focus,
.form-card .form-select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(230,126,34,.1);
}

/* ============ FOOTER ============ */
.footer-section { background: var(--primary-dark); }
.footer-top { padding: 70px 0 50px; }
.footer-heading {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.25rem;
  padding-bottom: .75rem;
  border-bottom: 2px solid rgba(230,126,34,.3);
  text-transform: uppercase;
  letter-spacing: .05em;
}
.footer-text { color: rgba(255,255,255,.6); font-size: .88rem; line-height: 1.7; }
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: .5rem; }
.footer-links a {
  color: rgba(255,255,255,.6);
  font-size: .88rem;
  transition: var(--transition);
  display: flex; align-items: center; gap: 6px;
}
.footer-links a i { font-size: .7rem; color: var(--accent); transition: var(--transition); }
.footer-links a:hover { color: var(--accent); padding-left: 4px; }

.social-btn {
  width: 38px; height: 38px;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1rem;
  transition: var(--transition);
  margin-right: .4rem;
  color: var(--white);
}
.whatsapp-btn { background: rgba(37,211,102,.15); }
.whatsapp-btn:hover { background: #25D366; color: var(--white); }
.call-btn { background: rgba(230,126,34,.15); }
.call-btn:hover { background: var(--accent); color: var(--white); }
.email-btn { background: rgba(255,255,255,.1); }
.email-btn:hover { background: var(--primary-light); color: var(--white); }

.footer-routes {
  background: rgba(0,0,0,.2);
  padding: .9rem 0;
  border-top: 1px solid rgba(255,255,255,.06);
}
.footer-routes a { color: rgba(255,255,255,.55); font-size: .82rem; transition: var(--transition); }
.footer-routes a:hover { color: var(--accent); }

.footer-bottom {
  padding: 1.25rem 0;
  background: rgba(0,0,0,.25);
  border-top: 1px solid rgba(255,255,255,.07);
}
.footer-bottom p { color: rgba(255,255,255,.5); margin: 0; }
.footer-bottom strong { color: rgba(255,255,255,.8); }

/* ============ PAGE HERO (inner pages) ============ */
.page-hero {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-light) 100%);
  padding: 130px 0 60px;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; top: 0; right: 0;
  width: 40%; height: 100%;
  background: url('../images/taxi-1280-960.jpg') center/cover;
  opacity: .08;
}
.page-hero-title { color: var(--white); font-size: clamp(2rem, 4vw, 3rem); }
.breadcrumb-item a { color: rgba(255,255,255,.6); }
.breadcrumb-item.active { color: var(--accent); }
.breadcrumb-divider { color: rgba(255,255,255,.4); }

/* ============ RESPONSIVE ============ */
@media (max-width: 991px) {
  .section-pad { padding: 65px 0; }
  .process-step::after { display: none; }
}
@media (max-width: 767px) {
  .section-pad { padding: 50px 0; }
  .hero-stats { gap: 1.5rem; }
  .booking-card { margin-top: 0; border-radius: var(--radius-md); }
  .about-img-wrap img { height: 320px; }
  .about-experience-badge { bottom: 10px; right: 10px; }
  .gallery-grid { columns: 2; }
  .whatsapp-float { bottom: 85px; }
  #backToTop { right: 20px; bottom: 25px; }
}

/* ============ ANIMATIONS ============ */
@keyframes fadeInUp {
  from { opacity:0; transform: translateY(30px); }
  to { opacity:1; transform: translateY(0); }
}
.animate-fadeInUp { animation: fadeInUp .8s ease both; }
.delay-1 { animation-delay: .15s; }
.delay-2 { animation-delay: .3s; }
.delay-3 { animation-delay: .45s; }
.delay-4 { animation-delay: .6s; }
