/* Bhagya Lakshami Travels — premium light theme */
:root {
  --navy: #16264a;
  --navy-2: #1f3565;
  --orange: #f2811d;
  --orange-light: #ffb066;
  --cream: #ffffff;
  --cream-2: #ffffff;
  --gold: #c99a3a;
  --text-dark: #1c2431;
  --text-muted: #5d6472;
  --white: #ffffff;
  --shadow: 0 20px 45px -20px rgba(22, 38, 74, 0.25);
  --radius: 18px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Inter', 'Segoe UI', sans-serif;
  color: var(--text-dark);
  background: #ffffff;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', 'Georgia', serif;
  margin: 0 0 .5rem;
  color: var(--navy);
}

p { line-height: 1.7; color: var(--text-muted); }

a { text-decoration: none; color: inherit; }

img { max-width: 100%; display: block; }

.container {
  width: 92%;
  max-width: 1200px;
  margin: 0 auto;
}

.section { padding: 90px 0; }
.section-alt { background: var(--cream-2); }

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 50px;
}

.eyebrow {
  display: inline-block;
  color: var(--orange);
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-size: .78rem;
  margin-bottom: 12px;
}

.section-head h2 { font-size: 2.4rem; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 50px;
  font-weight: 600;
  font-size: .95rem;
  transition: all .3s ease;
  border: 2px solid transparent;
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(135deg, var(--orange), #e06b0a);
  color: #fff;
  box-shadow: 0 12px 28px -10px rgba(242, 129, 29, 0.55);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 18px 34px -12px rgba(242, 129, 29, 0.65); }

.btn-outline {
  border-color: rgba(255,255,255,.6);
  color: #fff;
}
.btn-outline:hover { background: rgba(255,255,255,.15); transform: translateY(-3px); }

.service-card .btn-outline {
  color: #fff;
  background: var(--navy);
  border-color: var(--navy);
}
.service-card .btn-outline:hover {
  background: #1c3460;
}

.btn-navy {
  background: var(--navy);
  color: #fff;
}
.btn-navy:hover { background: var(--navy-2); transform: translateY(-3px); }

/* Top bar */
.topbar {
  background: var(--navy);
  color: #d9e0f2;
  font-size: .85rem;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  flex-wrap: wrap;
  gap: 6px;
}
.topbar a { color: #d9e0f2; }
.topbar .topbar-links { display: flex; gap: 22px; }
.topbar .topbar-links span, .topbar .topbar-links a { display: inline-flex; align-items: center; gap: 6px; }
.topbar .topbar-links:first-child span:first-child { cursor: pointer; }

/* Header */
header.site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: #ffffff;
  backdrop-filter: none;
  box-shadow: 0 4px 20px rgba(22,38,74,0.06);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}
header.site-header .container,
footer.site-footer .container {
  width: 100%;
  max-width: none;
  padding-left: 12px;
  padding-right: 12px;
}
.brand { display: flex; align-items: center; flex: 0 0 auto; }
.brand img {
  width: 250px;
  height: auto;
  max-height: 72px;
  object-fit: contain;
}

nav.main-nav ul {
  list-style: none;
  display: flex;
  gap: 34px;
  margin: 0;
  padding: 0;
}
nav.main-nav a {
  font-weight: 600;
  font-size: .95rem;
  color: var(--navy);
  position: relative;
  padding: 6px 0;
}
nav.main-nav a::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--orange);
  transition: width .3s ease;
}
nav.main-nav a:hover::after, nav.main-nav a.active::after { width: 100%; }
nav.main-nav a.active { color: var(--orange); }

nav.main-nav li.has-dropdown { position: relative; }
nav.main-nav li.has-dropdown > a::before {
  content: "▾";
  font-size: .7rem;
  margin-left: 5px;
  display: inline-block;
}
nav.main-nav .dropdown-menu {
  list-style: none;
  position: absolute;
  top: calc(100% + 18px);
  left: 0;
  background: #fff;
  min-width: 230px;
  border-radius: 12px;
  box-shadow: var(--shadow);
  padding: 10px;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all .2s ease;
  z-index: 40;
}
nav.main-nav li.has-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
nav.main-nav .dropdown-menu li a {
  display: block;
  padding: 9px 12px;
  border-radius: 8px;
  font-size: .88rem;
  font-weight: 500;
  color: var(--navy);
}
nav.main-nav .dropdown-menu li a::after { display: none; }
nav.main-nav .dropdown-menu li a:hover { background: var(--cream); color: var(--orange); }

@media (max-width: 992px) {
  nav.main-nav .dropdown-menu {
    position: static;
    opacity: 1; visibility: visible; transform: none;
    box-shadow: none;
    display: none;
    padding: 4px 0 4px 14px;
  }
  nav.main-nav li.has-dropdown.open .dropdown-menu { display: flex; }
}

.header-actions { display: flex; align-items: center; gap: 16px; }
.header-actions .call-btn { display: flex; flex-direction: column; text-align: right; }
.header-actions .call-btn small { color: var(--text-muted); font-size: .72rem; }
.header-actions .call-btn strong { color: var(--navy); font-size: .95rem; }

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.menu-toggle span { width: 26px; height: 2.5px; background: var(--navy); border-radius: 2px; }

/* Hero */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  color: #fff;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.hero-slides,
.hero-slide {
  position: absolute;
  inset: 0;
}
.hero-slides { z-index: 0; }
.hero-slide {
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease;
}
.hero-slide.active {
  opacity: 1;
}
.hero-slide-label {
  position: absolute;
  left: 32px;
  bottom: 28px;
  z-index: 3;
  color: #fff;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.3rem;
  letter-spacing: .5px;
  background: rgba(15,24,48,0.55);
  padding: 8px 18px;
  border-left: 3px solid var(--orange);
  border-radius: 0 6px 6px 0;
}
@media (max-width: 600px) {
  .hero-slide-label {
    left: 16px;
    bottom: 16px;
    font-size: 1rem;
    padding: 6px 14px;
  }
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(15,24,48,0.6) 0%, rgba(15,24,48,0.22) 46%, rgba(15,24,48,0) 100%);
  z-index: 1;
}
.hero .container { position: relative; z-index: 2; }
.hero-content { max-width: 640px; }
.hero-brand-label {
  display: block;
  margin-bottom: 10px;
  color: #fff;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  font-size: .78rem;
}
.hero .eyebrow-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.35);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: .8rem;
  letter-spacing: 1px;
  margin-bottom: 22px;
  color: #ffe3bc;
  background: rgba(242,129,29,.1);
  border-color: rgba(255,255,255,.38);
}
.hero h1 {
  color: #fff;
  font-size: 3.6rem;
  line-height: 1.15;
  margin-bottom: 18px;
}
.hero h1 span { color: var(--orange); }
.hero p {
  color: var(--orange);
  font-size: 1.1rem;
  font-weight: 800;
  max-width: 900px;
  margin-bottom: 34px;
  white-space: nowrap;
  -webkit-text-stroke: .35px #000;
  text-shadow: 0 2px 3px rgba(0,0,0,.75);
}
.hero-features {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  max-width: 900px;
  margin-bottom: 30px;
}
.hero-features div {
  border-left: 3px solid var(--orange);
  padding: 8px 12px;
  background: transparent;
  backdrop-filter: none;
}
.hero-features strong {
  display: block;
  color: #fff;
  font-size: .88rem;
  text-shadow: 0 2px 3px rgba(0,0,0,.65);
}
.hero-features span {
  color: #eef2ff;
  font-size: .76rem;
  text-shadow: 0 2px 3px rgba(0,0,0,.65);
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero .btn-outline {
  border-color: rgba(255,255,255,.72);
  color: #fff;
}
.hero .btn-outline:hover {
  background: rgba(255,255,255,.14);
}

.hero-stats {
  display: flex;
  gap: 28px;
  margin-top: 46px;
  flex-wrap: wrap;
}
.hero-stats div strong {
  display: block;
  font-size: 1.9rem;
  display: none;
}/* Trust strip */
.trust-strip {
  background: var(--white);
  border-bottom: 1px solid #eee1cd;
  display: none;
}
.trust-strip .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 34px 0;
}
.trust-strip .img img {
  width: 100%;
  max-width: 380px;
  height: auto;
  display: block;
}
@media (max-width: 600px) {
  .trust-strip {
    display: block !important;
  }
}
@media (min-width: 601px) {
  .trust-strip {
    display: none !important;
  }
}
.trust-item { display: flex; align-items: center; gap: 14px; }
.trust-item .icon-badge {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--cream-2);
  display: flex; align-items: center; justify-content: center;
  color: var(--orange);
  flex-shrink: 0;
}
.trust-item strong { display: block; color: var(--navy); font-size: .95rem; }
.trust-item span { font-size: .8rem; color: var(--text-muted); }

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-media {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.about-media img { height: 460px; object-fit: cover; width: 100%; }
.about-badge {
  position: absolute;
  bottom: 24px; left: 24px;
  background: rgba(22,38,74,0.9);
  color: #fff;
  padding: 16px 22px;
  border-radius: 14px;
  backdrop-filter: blur(6px);
}
.about-badge strong { font-family: 'Playfair Display', serif; font-size: 1.6rem; color: var(--orange-light); display:block; }
.about-badge span { font-size: .78rem; letter-spacing: .5px; }

.about-list { list-style: none; padding: 0; margin: 26px 0; display: grid; gap: 16px; }
.about-list li { display: flex; gap: 14px; align-items: flex-start; }
.about-list .tick {
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--orange); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: .8rem; flex-shrink: 0; margin-top: 2px;
}

/* Services / Yatra cards */
.pkg-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}
.pkg-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .35s ease;
  position: relative;
}
.pkg-card:hover { transform: translateY(-10px); }
.pkg-card .pkg-img { height: 210px; overflow: hidden; }
.pkg-card .pkg-img img { height: 100%; width: 100%; object-fit: cover; transition: transform .5s ease; }
.pkg-card:hover .pkg-img img { transform: scale(1.08); }
.pkg-card .pkg-body { padding: 22px; }
.pkg-card .pkg-tag {
  display: inline-block;
  font-size: .72rem;
  color: var(--orange);
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.pkg-card h3 { font-size: 1.15rem; margin-bottom: 6px; }
.pkg-card p { font-size: .88rem; margin-bottom: 0; }
.hot-destination-grid .pkg-card {
  background: var(--white);
  border: 1px solid #e1e6ee;
  border-radius: 8px;
  box-shadow: none;
  padding: 20px;
}
.hot-destination-grid .pkg-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 36px -24px rgba(0,0,0,.35);
}
.hot-destination-grid .pkg-img {
  height: 212px;
  border-radius: 8px;
  margin-bottom: 28px;
}
.hot-destination-grid .pkg-img img {
  border-radius: 8px;
}
.hot-destination-grid .pkg-card:hover .pkg-img img {
  transform: none;
}
.hot-destination-grid .pkg-body {
  padding: 0;
}
.hot-destination-grid .pkg-card h3 {
  font-family: 'Inter', 'Segoe UI', sans-serif;
  color: #00233f;
  font-size: 1.45rem;
  line-height: 1.25;
  margin-bottom: 14px;
}
.hot-destination-grid .pkg-rating {
  color: #00233f;
  font-size: .92rem;
  margin-bottom: 34px;
}
.hot-destination-grid .pkg-rating span {
  color: #ffb000;
  font-size: 1.15rem;
}
.hot-destination-grid .pkg-duration {
  display: block;
  color: #00233f;
  font-size: 1.85rem;
  line-height: 1.18;
  margin-bottom: 14px;
}
.hot-destination-grid .btn {
  border-radius: 4px;
  padding: 14px 26px;
  box-shadow: none;
}
/* ================= VEHICLE SECTION ================= */

.vehicle-grid{
    display:grid;
    grid-template-columns:repeat(4,minmax(0,1fr));
    gap:20px;
    margin-top:40px;
}

.vehicle-item{
    position:relative;
    overflow:hidden;
    border-radius:18px;
    height:360px;
    box-shadow:0 10px 25px rgba(0,0,0,.15);
}

.vehicle-item img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.5s;
}

.vehicle-item:hover img{
    transform:scale(1.08);
}

.vehicle-info{
    position:absolute;
    left:0;
    right:0;
    bottom:0;
    padding:20px;
    background:linear-gradient(to top,
        rgba(0,0,0,.92),
        rgba(0,0,0,.45),
        transparent);
    color:#fff;
}

.vehicle-info h3{
    margin:0 0 8px;
    color:#fff;
    font-size:22px;
}

.vehicle-info p{
    margin:0 0 12px;
    color:#fff;
    font-size:14px;
    line-height:1.5;
}

.vehicle-info span{
    display:inline-block;
    background:#f2811d;
    color:#fff;
    padding:7px 15px;
    border-radius:30px;
    font-size:13px;
    font-weight:600;
}

/* Tablet */

@media(max-width:992px){

.vehicle-grid{
grid-template-columns:repeat(2,1fr);
}

.vehicle-item{
height:300px;
}

}

/* Mobile */

@media(max-width:768px){

.vehicle-grid{
grid-template-columns:repeat(2,1fr);
gap:15px;
}

.vehicle-item{
height:220px;
}

.vehicle-info{
padding:12px;
}

.vehicle-info h3{
font-size:16px;
}

.vehicle-info p{
font-size:12px;
margin-bottom:8px;
}

.vehicle-info span{
font-size:11px;
padding:5px 10px;
}

}




/* ================= HOTEL SECTION ================= */

.hotel-grid{
    display:grid;
    grid-template-columns:repeat(4,minmax(0,1fr));
    gap:20px;
    margin-top:40px;
}

.hotel-card{
    position:relative;
    overflow:hidden;
    border-radius:18px;
    height:340px;
    box-shadow:0 10px 25px rgba(0,0,0,.15);
}

.hotel-card img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.5s;
}

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

.hotel-info{
    position:absolute;
    left:0;
    right:0;
    bottom:0;
    padding:20px;
    background:linear-gradient(to top,
        rgba(0,0,0,.92),
        rgba(0,0,0,.45),
        transparent);
}

.hotel-info h3{
    margin:0 0 8px;
    color:#fff;
    font-size:22px;
}

.hotel-info p{
    margin:0 0 15px;
    color:#fff;
    font-size:14px;
}

.hotel-info .btn{
    padding:10px 18px;
    font-size:13px;
}

/* Tablet */

@media(max-width:992px){

.hotel-grid{
grid-template-columns:repeat(2,1fr);
}

.hotel-card{
height:300px;
}

}

/* Mobile */

@media(max-width:768px){

.hotel-grid{
grid-template-columns:repeat(2,1fr);
gap:15px;
}

.hotel-card{
height:220px;
}

.hotel-info{
padding:12px;
}

.hotel-info h3{
font-size:16px;
}

.hotel-info p{
font-size:12px;
margin-bottom:10px;
}

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

}

.home-char-dham-grid .pkg-card {
  border: 1px solid rgba(40, 180, 170, .55);
  border-radius: 14px;
  box-shadow: none;
  padding: 34px 24px;
  text-align: center;
}
.home-char-dham-grid .pkg-card:hover { transform: translateY(-6px); }
.home-char-dham-grid .pkg-img {
  height: 84px;
  margin-bottom: 20px;
  overflow: visible;
}

.home-char-dham-grid .pkg-img img {
  display: none;
}
.home-char-dham-grid .pkg-img::before {
  content: "";
  display: block;
  width: 82px;
  height: 82px;
  margin: 0 auto;
  background: var(--orange);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Cpath d='M31 6h2v6h5l-6 6-6-6h5V6Zm-9 18h20l4 7H18l4-7Zm-4 10h28v5H18v-5Zm-6 8h40v5H12v-5Zm-4 8h48v6H8v-6Zm15-14h6v6h-6v-6Zm12 0h6v6h-6v-6Zm-6-14h6v6h-6v-6Z'/%3E%3C/svg%3E") center/contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Cpath d='M31 6h2v6h5l-6 6-6-6h5V6Zm-9 18h20l4 7H18l4-7Zm-4 10h28v5H18v-5Zm-6 8h40v5H12v-5Zm-4 8h48v6H8v-6Zm15-14h6v6h-6v-6Zm12 0h6v6h-6v-6Zm-6-14h6v6h-6v-6Z'/%3E%3C/svg%3E") center/contain no-repeat;
}
.home-char-dham-grid .pkg-body { padding: 0; }
.home-char-dham-grid .pkg-tag { display: none; }
.home-char-dham-grid .pkg-card h3 {
  font-family: 'Inter', 'Segoe UI', sans-serif;
  color: #00233f;
  font-size: 1.45rem;
  line-height: 1.18;
  margin: 0 auto 24px;
  max-width: 260px;
}
.home-char-dham-grid .pkg-card p {
  color: #24445c;
  font-size: 1.05rem;
  line-height: 1.55;
  max-width: 260px;
  margin: 0 auto;
}

/* Bike rental section */
.bike-section {
  background: linear-gradient(135deg, var(--navy) 0%, #223a6e 100%);
  color: #fff;
  border-radius: 28px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: stretch;
}
.bike-copy { padding: 60px; }
.bike-copy .eyebrow { color: var(--orange-light); }
.bike-copy h2 { color: #fff; font-size: 2.2rem; }
.bike-copy p { color: #d7dcee; }
.bike-note { margin-top: 18px; color: #f7f2d9; font-size: 0.95rem; line-height: 1.6; max-width: 520px; }
.bike-features { list-style: none; padding: 0; margin: 26px 0; display: grid; gap: 14px; }
.bike-features li { display: flex; gap: 12px; align-items: center; color: #eef0fa; font-size: .95rem; }
.bike-features li .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--orange); flex-shrink: 0; }

.pkg-info-icons {
  display: flex; flex-wrap: wrap; gap: 12px;
  margin: 18px 0 6px;
}
.pkg-info-icons span {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--cream); border-radius: 999px;
  padding: 8px 16px; font-size: .82rem; font-weight: 600; color: var(--navy);
}
.pkg-info-icons span.top-value { background: var(--orange); color: #fff; }

.itinerary-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 16px; }
.itinerary-list li {
  display: flex; gap: 16px; align-items: flex-start;
  background: var(--cream); border-radius: 14px; padding: 16px 20px;
}
.itinerary-list li .day-badge {
  flex-shrink: 0; width: 56px; height: 56px; border-radius: 50%;
  background: var(--navy); color: #fff; display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: .85rem; text-align: center; line-height: 1.1;
}
.itinerary-list li p { margin: 0; font-size: .93rem; color: var(--text-muted); }
.itinerary-list li strong { display: block; margin-bottom: 4px; color: var(--navy); }

.inex-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.inex-grid h4 { margin-bottom: 12px; }
.inex-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.inex-list li { display: flex; gap: 10px; align-items: flex-start; font-size: .92rem; color: var(--text-muted); }
.inex-list.includes li::before { content: "✓"; color: #2f9e5e; font-weight: 700; flex-shrink: 0; }
.inex-list.excludes li::before { content: "✕"; color: #d5493a; font-weight: 700; flex-shrink: 0; }

.travel-tips-box { background: var(--cream); border-radius: 16px; padding: 28px 30px; margin-top: 10px; }
.travel-tips-box ul { list-style: none; padding: 0; margin: 12px 0 0; display: grid; gap: 10px; }
.travel-tips-box li { display: flex; gap: 10px; align-items: flex-start; font-size: .92rem; color: var(--text-muted); }
.travel-tips-box li::before { content: "→"; color: var(--orange); font-weight: 700; flex-shrink: 0; }
.emergency-note { margin-top: 14px; font-size: .85rem; font-weight: 600; color: #d5493a; }

@media (max-width: 768px) {
  .inex-grid { grid-template-columns: 1fr; }
}

.faq-list { display: grid; gap: 12px; }
.faq-item {
  background: var(--cream); border-radius: 14px; padding: 4px 22px;
  border: 1px solid var(--cream-2);
}
.faq-item summary {
  cursor: pointer; list-style: none; padding: 16px 0;
  font-weight: 700; color: var(--navy); font-size: 1rem;
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-size: 1.4rem; color: var(--orange); flex-shrink: 0; }
.faq-item[open] summary::after { content: "−"; }
.faq-item p { margin: 0 0 18px; color: var(--text-muted); font-size: .93rem; }

.pkg-card .pkg-img, .hot-destination-grid .pkg-img { display: block; }
.pkg-card .pkg-img img { cursor: pointer; }
.bike-media { position: relative; min-height: 340px; }
.bike-media img { width: 100%; height: 100%; object-fit: cover; }
.bike-price-tag {
  position: absolute; top: 24px; right: 24px;
  background: var(--orange);
  padding: 12px 18px;
  border-radius: 14px;
  font-size: .85rem;
  font-weight: 700;
  box-shadow: 0 10px 24px -8px rgba(0,0,0,.4);
}

.bike-fleet {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 46px;
}
.fleet-card {
  background: var(--white);
  border-radius: 16px;
  padding: 26px 22px;
  box-shadow: var(--shadow);
  text-align: center;
}
.fleet-card .icon-badge {
  width: 56px; height: 56px; border-radius: 14px;
  background: var(--cream-2); color: var(--orange);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.fleet-card .fleet-thumb {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 16px;
}
.fleet-card h4 { font-size: 1.05rem; margin-bottom: 6px; }
.fleet-card .price { color: var(--orange); font-weight: 700; font-size: 1.1rem; margin-top: 8px; }

/* Process */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  counter-reset: step;
}
.process-card {
  background: var(--white);
  border-radius: 16px;
  padding: 30px 24px;
  box-shadow: var(--shadow);
  position: relative;
}
.process-card .step-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  color: var(--cream-2);
  -webkit-text-stroke: 2px var(--orange);
  color: transparent;
  margin-bottom: 6px;
  display: block;
}
.process-card h4 { font-size: 1.05rem; }

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 180px;
  gap: 16px;
}
.gallery-grid a {
  border-radius: 14px;
  overflow: hidden;
  display: block;
  position: relative;
}
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.gallery-grid a:hover img { transform: scale(1.1); }
.gallery-grid .tall { grid-row: span 2; }

/* Testimonials */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.testi-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow);
}
.testi-stars { color: var(--orange); letter-spacing: 3px; margin-bottom: 14px; }
.testi-card p { font-style: italic; color: var(--text-dark); }
.testi-person { display: flex; align-items: center; gap: 12px; margin-top: 20px; }
.testi-avatar {
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--navy); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-family: 'Playfair Display', serif;
}
.testi-person strong { display: block; font-size: .92rem; color: var(--navy); }
.testi-person span { font-size: .78rem; color: var(--text-muted); }

/* CTA band */
.cta-band {
  background: linear-gradient(135deg, var(--orange), #d9660a);
  border-radius: 28px;
  padding: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  color: #fff;
  flex-wrap: wrap;
}
.cta-band h2 { color: #fff; margin-bottom: 8px; font-size: 1.9rem; }
.cta-band p { color: #ffe9d6; margin: 0; }

.trust-strip {
  background: var(--white);
  border-bottom: 1px solid #eee1cd;
  display: none;
  justify-content: center;
}

.trust-strip .img {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.trust-strip .img img {
  width: 100%;
  max-width: 380px;
  height: auto;
  display: block;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 50px;
}
.contact-info { display: grid; gap: 20px; }
.contact-info .info-card {
  background: var(--white);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  box-shadow: var(--shadow);
}
.contact-info .icon-badge {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--cream-2); color: var(--orange);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-info h4 { font-size: 1rem; margin-bottom: 4px; }
.contact-info p, .contact-info a { margin: 0; font-size: .92rem; }

.contact-form {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 18px; }
.form-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 18px; }
.form-group label { font-size: .85rem; font-weight: 600; color: var(--navy); }
.form-group input, .form-group select, .form-group textarea {
  padding: 13px 16px;
  border-radius: 10px;
  border: 1.5px solid #ecdfc9;
  background: var(--cream);
  font-family: inherit;
  font-size: .95rem;
  color: var(--text-dark);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--orange);
}
.form-note { font-size: .78rem; color: var(--text-muted); margin-top: 10px; }
.form-success {
  background: #eafaf0; color: #1f7a44; padding: 14px 18px;
  border-radius: 10px; margin-bottom: 20px; font-size: .9rem;
}

/* Footer */
footer.site-footer {
  background: var(--navy);
  color: #c9d0e6;
  padding-top: 70px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-brand { display: flex; align-items: center; margin-bottom: 16px; }
.footer-brand img { width: 230px; height: auto; max-height: 70px; object-fit: contain; }
footer.site-footer h4 { color: #fff; font-size: 1rem; margin-bottom: 18px; }
footer.site-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
footer.site-footer ul a { font-size: .9rem; color: #c9d0e6; }
footer.site-footer ul a:hover { color: var(--orange-light); }
.footer-social { display: flex; gap: 12px; margin-top: 18px; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  transition: background .25s ease, transform .25s ease;
}
.footer-social a svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}
.footer-social a:hover { background: var(--orange); transform: translateY(-2px); }
.footer-bottom {
  padding: 22px 0;
  text-align: center;
  font-size: .82rem;
  color: #8f9ac0;
}
.footer-bottom a { color: #c9d0e6; }

/* Floating WhatsApp */
.whatsapp-float {
  position: fixed;
  bottom: 26px; right: 26px;
  width: 60px; height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 30px -8px rgba(37,211,102,.7);
  z-index: 1000;
  animation: pulse 2.4s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,.55); }
  70% { box-shadow: 0 0 0 16px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

/* Page header (inner pages) */
.page-header {
  background: linear-gradient(120deg, rgba(22,38,74,0.92), rgba(31,53,101,.85)), center/cover no-repeat;
  color: #fff;
  padding: 130px 0 70px;
  text-align: center;
}
.page-header h1 { color: #fff; font-size: 2.6rem; }
.breadcrumb { font-size: .85rem; color: #d9dff0; margin-top: 10px; }
.breadcrumb a { color: var(--orange-light); }

/* Reveal animation */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* Responsive */
@media (max-width: 992px) {
  .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .pkg-grid, .process-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-strip .container { grid-template-columns: repeat(2, 1fr); }
  .bike-section { grid-template-columns: 1fr; }
  .bike-copy { padding: 40px; }
  .bike-fleet { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .testi-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

.hero-location{
    margin:20px 0;
}

.hero-location span{
    display:inline-block;
    background:#f2811d;
    color:#fff;
    padding:10px 22px;
    border-radius:50px;
    font-size:28px;
    font-weight:700;
    box-shadow:0 8px 20px rgba(0,0,0,.25);
    animation:fadeSlide .8s;
}

@keyframes fadeSlide{
    from{
        opacity:0;
        transform:translateY(20px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

@media(max-width:768px){
.hero-location span{
    font-size:18px;
    padding:8px 18px;
}
}
@media (max-width: 768px) {
  .hero::before {
    background: linear-gradient(180deg, rgba(15,24,48,0.66) 0%, rgba(15,24,48,0.38) 58%, rgba(15,24,48,0.18) 100%);
  }
  .topbar .container {
    justify-content: center;
    gap: 12px;
    padding: 8px 10px;
  }
  .topbar .topbar-links {
    gap: 12px;
    align-items: center;
  }
  .topbar .topbar-links:nth-child(2) span {
    display: none;
  }
  .topbar .topbar-links:first-child span:first-child {
    width: 18px;
    overflow: hidden;
    white-space: nowrap;
    flex: 0 0 18px;
  }
  .topbar .topbar-links a {
    font-size: .78rem;
  }
  nav.main-nav {
    position: fixed;
    top: 84px; left: 0; right: 0;
    background: var(--cream);
    flex-direction: column;
    padding: 20px;
    box-shadow: 0 20px 30px rgba(0,0,0,.08);
    transform: translateY(-150%);
    transition: transform .35s ease;
    z-index: 998;
  }
  nav.main-nav.open { transform: translateY(0); }
  nav.main-nav ul { flex-direction: column; gap: 18px; }
  .menu-toggle { display: flex; }
  .header-actions .call-btn { display: none; }
  .brand img { width: 190px; max-height: 58px; }
  .hero h1 { font-size: 2.35rem; }
  .hero p { white-space: normal; }
  .hero-features { grid-template-columns: 1fr; gap: 10px; }
  .hero-stats { gap: 20px; margin-top: 34px; }
  .form-row { grid-template-columns: 1fr; }
  .cta-band { flex-direction: column; text-align: center; padding: 40px 26px; }
  .pkg-grid, .process-grid, .gallery-grid, .bike-fleet { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .section { padding: 60px 0; }
}

@media (max-width: 568px) {
    .topbar {
        display: none !important;
    }

    .about-badge {
        display: none;
    }
}