/* ============================================================
   Kashmir Arif Cab Services — Main Stylesheet
   Design: Premium Kashmir Tourism — Deep Blue + Gold
   ============================================================ */

/* ---- CSS VARIABLES ---- */
:root {
  --blue-deep:    #0B2545;
  --blue-royal:   #1B4F8A;
  --blue-mid:     #2563AA;
  --blue-light:   #EBF3FC;
  --gold:         #C9A84C;
  --gold-light:   #F0D080;
  --gold-dark:    #9C7A2E;
  --white:        #FFFFFF;
  --off-white:    #F8FAFD;
  --text-dark:    #1A1A2E;
  --text-muted:   #6B7A99;
  --border:       #DDE5F0;
  --shadow-sm:    0 2px 12px rgba(11,37,69,0.08);
  --shadow-md:    0 8px 32px rgba(11,37,69,0.14);
  --shadow-lg:    0 20px 60px rgba(11,37,69,0.2);
  --radius:       12px;
  --radius-lg:    20px;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Poppins', sans-serif;
  --transition:   all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---- RESET & BASE ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; }
a { text-decoration: none; transition: var(--transition); }

/* ---- TYPOGRAPHY ---- */
h1,h2,h3,h4,h5 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.25;
  color: var(--blue-deep);
}
.section-title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-bottom: 0.5rem;
}
.section-subtitle {
  color: var(--text-muted);
  font-size: 1.05rem;
  font-weight: 400;
  max-width: 600px;
  margin: 0 auto 2.5rem;
}
.title-ornament {
  display: inline-block;
  width: 60px; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px;
  margin-bottom: 0.75rem;
}

/* ---- TOPBAR ---- */
.topbar {
  background: var(--blue-deep);
  color: rgba(255,255,255,0.85);
  font-size: 0.8rem;
  padding: 6px 0;
}
.topbar a {
  color: rgba(255,255,255,0.85);
  font-size: 0.8rem;
}
.topbar a:hover { color: var(--gold-light); }

/* ---- NAVBAR ---- */
#mainNav {
  background: var(--white);
  box-shadow: var(--shadow-sm);
  padding: 0.6rem 0;
  transition: var(--transition);
}
#mainNav.scrolled {
  box-shadow: var(--shadow-md);
  padding: 0.4rem 0;
}
.navbar-brand { text-decoration: none; }
.brand-icon {
  font-size: 1.6rem;
  color: var(--blue-royal);
  display: flex;
  align-items: center;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--blue-deep);
}
.brand-sub {
  font-size: 0.68rem;
  color: var(--gold-dark);
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.nav-link {
  font-weight: 500;
  font-size: 0.92rem;
  color: var(--text-dark) !important;
  padding: 0.5rem 0.9rem !important;
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 0; height: 2px;
  background: var(--gold);
  transition: width 0.3s ease;
}
.nav-link:hover::after,
.nav-link.active::after { width: 70%; }
.nav-link.active { color: var(--blue-royal) !important; }

/* ---- BUTTONS ---- */
.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white) !important;
  border: none;
  padding: 0.6rem 1.4rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.3px;
  box-shadow: 0 4px 15px rgba(201,168,76,0.35);
  transition: var(--transition);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(201,168,76,0.5);
  color: var(--white) !important;
}
.btn-blue {
  background: var(--blue-royal);
  color: var(--white) !important;
  border: none;
  padding: 0.75rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  transition: var(--transition);
}
.btn-blue:hover {
  background: var(--blue-deep);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  color: var(--white) !important;
}
.btn-outline-white {
  border: 2px solid rgba(255,255,255,0.8);
  color: var(--white) !important;
  background: transparent;
  padding: 0.75rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  transition: var(--transition);
}
.btn-outline-white:hover {
  background: var(--white);
  color: var(--blue-deep) !important;
  transform: translateY(-2px);
}
.btn-whatsapp {
  background: #25D366;
  color: var(--white) !important;
  border: none;
  padding: 0.75rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  transition: var(--transition);
}
.btn-whatsapp:hover {
  background: #1ebe5d;
  transform: translateY(-2px);
  color: var(--white) !important;
}
.btn-lg-custom {
  padding: 0.85rem 2.4rem;
  font-size: 1rem;
}

/* ---- HERO ---- */
.hero-section {
  min-height: 92vh;
  background:
    linear-gradient(135deg, rgba(11,37,69,0.82) 0%, rgba(27,79,138,0.65) 100%),
    url('../images/hero-bg.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(11,37,69,0.4));
}
.hero-content { position: relative; z-index: 2; }
.hero-badge {
  display: inline-block;
  background: rgba(201,168,76,0.2);
  border: 1px solid var(--gold);
  color: var(--gold-light);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 1.2rem;
}
.hero-title {
  font-size: clamp(2.2rem, 5vw, 4rem);
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1.2rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.hero-title span { color: var(--gold-light); }
.hero-desc {
  color: rgba(255,255,255,0.88);
  font-size: 1.1rem;
  margin-bottom: 2.2rem;
  max-width: 560px;
}
.hero-stats {
  display: flex;
  gap: 2rem;
  margin-top: 2.5rem;
}
.hero-stat {
  text-align: center;
  padding: 1rem 1.5rem;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius);
  backdrop-filter: blur(8px);
}
.hero-stat .num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
}
.hero-stat .lbl {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.75);
  margin-top: 4px;
}
.hero-scroll {
  position: absolute;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  animation: bounce 2s infinite;
  color: rgba(255,255,255,0.6);
  font-size: 1.5rem;
}
@keyframes bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(10px); }
}

/* ---- QUICK BOOKING BAR ---- */
.booking-bar {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 1.8rem 2rem;
  margin-top: -3rem;
  position: relative;
  z-index: 10;
}
.booking-bar .form-control,
.booking-bar .form-select {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.9rem;
  padding: 0.65rem 1rem;
  color: var(--text-dark);
}
.booking-bar .form-control:focus,
.booking-bar .form-select:focus {
  border-color: var(--blue-royal);
  box-shadow: 0 0 0 3px rgba(27,79,138,0.12);
}
.booking-bar label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.4rem;
}

/* ---- SECTION PADDING ---- */
.section-pad { padding: 80px 0; }
.section-pad-sm { padding: 50px 0; }
.bg-light-blue { background: var(--blue-light); }
.bg-off-white  { background: var(--off-white); }

/* ---- DESTINATION CARDS ---- */
.dest-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 320px;
  cursor: pointer;
}
.dest-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.dest-card:hover img { transform: scale(1.08); }
.dest-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11,37,69,0.85) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
}
.dest-overlay h5 {
  color: var(--white);
  font-size: 1.3rem;
  margin-bottom: 0.3rem;
}
.dest-overlay span {
  color: var(--gold-light);
  font-size: 0.82rem;
  font-weight: 500;
}
.dest-card .dest-tag {
  position: absolute;
  top: 1rem; right: 1rem;
  background: var(--gold);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  letter-spacing: 0.5px;
}

/* ---- FLEET CARDS ---- */
.fleet-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.fleet-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.fleet-card .fleet-img {
  height: 220px;
  overflow: hidden;
}
.fleet-card .fleet-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.fleet-card:hover .fleet-img img { transform: scale(1.06); }
.fleet-card .fleet-body { padding: 1.4rem; }
.fleet-badge {
  display: inline-block;
  background: var(--blue-light);
  color: var(--blue-royal);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  letter-spacing: 0.5px;
  margin-bottom: 0.6rem;
}
.fleet-card h5 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.fleet-meta {
  display: flex;
  gap: 1rem;
  margin: 0.8rem 0;
  flex-wrap: wrap;
}
.fleet-meta span {
  font-size: 0.8rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 4px;
}
.fleet-price {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--blue-royal);
  font-weight: 700;
}

/* ---- WHY CHOOSE US — Premium horizontal cards ---- */
.why-card {
  display: flex;
  align-items: flex-start;
  gap: 1.1rem;
  padding: 1.4rem 1.6rem;
  background: var(--white);
  border-radius: 14px;
  border: 1px solid var(--border);
  box-shadow: 0 2px 12px rgba(10,61,122,0.06);
  transition: var(--transition);
  height: 100%;
  text-align: left;
}
.why-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(10,61,122,0.13);
  border-color: var(--gold);
}
.why-icon {
  flex-shrink: 0;
  width: 54px; height: 54px;
  background: linear-gradient(135deg, var(--blue-deep), var(--blue-royal));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--white);
  transition: var(--transition);
  box-shadow: 0 4px 14px rgba(10,61,122,0.25);
}
.why-card:hover .why-icon {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--blue-deep);
  box-shadow: 0 4px 14px rgba(245,197,24,0.35);
}
.why-card-body { flex: 1; }
.why-card h5 { font-size: 0.97rem; font-weight: 700; margin-bottom: 0.3rem; color: var(--blue-deep); }
.why-card p { font-size: 0.83rem; color: var(--text-muted); margin: 0; line-height: 1.55; }

/* ---- PACKAGE CARDS ---- */
.pkg-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
  height: 100%;
}
.pkg-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.pkg-img { height: 200px; overflow: hidden; position: relative; }
.pkg-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.pkg-card:hover .pkg-img img { transform: scale(1.07); }
.pkg-duration {
  position: absolute;
  bottom: 0.8rem; left: 0.8rem;
  background: var(--blue-deep);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
}
.pkg-body { padding: 1.3rem; }
.pkg-body h5 { font-size: 1.05rem; margin-bottom: 0.5rem; }
.pkg-places {
  list-style: none;
  padding: 0;
  margin: 0.6rem 0 1rem;
}
.pkg-places li {
  font-size: 0.82rem;
  color: var(--text-muted);
  padding: 2px 0;
}
.pkg-places li::before { content: '✦ '; color: var(--gold); }
.pkg-highlight {
  font-size: 0.8rem;
  color: var(--blue-royal);
  font-weight: 500;
  margin-bottom: 0.8rem;
}
.pkg-price {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--gold-dark);
  font-weight: 700;
}

/* ---- TESTIMONIALS — Google Review Style ---- */
.testimonials-section {
  background: #f0f4fa;
}
.testi-card {
  background: var(--white);
  border: 1px solid #e4eaf4;
  border-radius: 18px;
  padding: 1.6rem 1.8rem;
  box-shadow: 0 2px 16px rgba(10,61,122,0.07);
  transition: var(--transition);
  height: 100%;
  position: relative;
}
.testi-card::before {
  content: '"';
  position: absolute;
  top: -10px; right: 22px;
  font-size: 5rem;
  line-height: 1;
  color: var(--gold-light);
  font-family: Georgia, serif;
  opacity: 0.35;
}
.testi-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(10,61,122,0.13);
  border-color: #c8d9f5;
}
.testi-header {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 1rem;
}
.testi-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--white);
  font-size: 1.1rem;
  flex-shrink: 0;
  box-shadow: 0 3px 10px rgba(0,0,0,0.15);
}
.testi-meta { flex: 1; }
.testi-name { color: var(--blue-deep); font-weight: 700; font-size: 0.95rem; margin-bottom: 1px; }
.testi-city { color: var(--text-muted); font-size: 0.76rem; display: flex; align-items: center; gap: 3px; }
.testi-google-badge {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.72rem;
  color: #666;
  background: #f8f9fa;
  border: 1px solid #eee;
  border-radius: 20px;
  padding: 3px 8px;
  white-space: nowrap;
}
.testi-google-badge svg { width: 14px; height: 14px; }
.testi-stars {
  color: #fbbc04;
  font-size: 0.88rem;
  margin-bottom: 0.7rem;
  letter-spacing: 1px;
}
.testi-text {
  color: #444;
  font-size: 0.9rem;
  line-height: 1.7;
  margin: 0;
  font-style: normal;
}
.testi-date {
  font-size: 0.73rem;
  color: #aaa;
  margin-top: 1rem;
}
/* Avatar color variants */
.testi-avatar.av-blue  { background: linear-gradient(135deg, #1a73e8, #0d47a1); }
.testi-avatar.av-green { background: linear-gradient(135deg, #34a853, #1e7e34); }
.testi-avatar.av-red   { background: linear-gradient(135deg, #ea4335, #c62828); }
.testi-avatar.av-gold  { background: linear-gradient(135deg, var(--gold-dark), var(--gold)); color: var(--blue-deep); }
/* Carousel dots */
.testi-dots { display: flex; justify-content: center; gap: 6px; margin-top: 1.5rem; }
.testi-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #ccd5e0;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  padding: 0;
}
.testi-dot.active { background: var(--blue-royal); width: 22px; border-radius: 4px; }

/* ---- CTA BANNER ---- */
.cta-section {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
}
.cta-section h2 { color: var(--blue-deep); }
.cta-section p { color: rgba(11,37,69,0.75); }

/* ---- ABOUT PAGE ---- */
.about-img-wrap {
  position: relative;
}
.about-img-wrap .main-img {
  border-radius: var(--radius-lg);
  height: 450px;
  width: 100%;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}
.about-badge-box {
  position: absolute;
  bottom: -1.5rem; right: -1.5rem;
  background: var(--blue-deep);
  color: var(--white);
  border-radius: var(--radius);
  padding: 1.2rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-md);
}
.about-badge-box .num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
}
.about-badge-box .lbl { font-size: 0.78rem; opacity: 0.8; }
.team-card {
  text-align: center;
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.team-avatar {
  width: 90px; height: 90px;
  background: linear-gradient(135deg, var(--blue-light), #C9E5FF);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: var(--blue-royal);
  margin: 0 auto 1rem;
}

/* ---- CONTACT PAGE ---- */
.contact-info-card {
  background: var(--blue-deep);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  height: 100%;
}
.contact-info-card h4 { color: var(--white); font-size: 1.5rem; margin-bottom: 0.5rem; }
.contact-info-card p { color: rgba(255,255,255,0.7); font-size: 0.9rem; }
.contact-detail-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}
.contact-icon {
  width: 42px; height: 42px;
  background: rgba(201,168,76,0.2);
  border: 1px solid rgba(201,168,76,0.4);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-detail-item .info strong { color: var(--white); font-size: 0.85rem; display: block; }
.contact-detail-item .info a,
.contact-detail-item .info span { color: rgba(255,255,255,0.7); font-size: 0.85rem; }
.contact-detail-item .info a:hover { color: var(--gold-light); }
.contact-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow-md);
}
.form-group label {
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.4rem;
}
.form-control, .form-select {
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 0.65rem 1rem;
  font-size: 0.9rem;
  color: var(--text-dark);
  transition: var(--transition);
}
.form-control:focus, .form-select:focus {
  border-color: var(--blue-royal);
  box-shadow: 0 0 0 3px rgba(27,79,138,0.1);
}
.map-container { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }

/* ---- BOOK PAGE ---- */
.book-hero {
  background:
    linear-gradient(135deg, rgba(11,37,69,0.88), rgba(27,79,138,0.75)),
    url('assets/images/dest-srinagar.jpg') center/cover no-repeat;
  padding: 80px 0 60px;
  text-align: center;
}
.book-hero h1 { color: var(--white); font-size: clamp(2rem,4vw,3rem); }
.book-hero p { color: rgba(255,255,255,0.8); }
.booking-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
  margin-top: -2rem;
  position: relative;
  z-index: 5;
}
.step-indicator {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 2rem;
  overflow-x: auto;
}
.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  min-width: 80px;
}
.step-num {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--border);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  position: relative;
  z-index: 1;
}
.step.active .step-num { background: var(--blue-royal); color: var(--white); }
.step.done .step-num { background: var(--gold); color: var(--white); }
.step-label { font-size: 0.72rem; color: var(--text-muted); margin-top: 5px; text-align: center; }
.step.active .step-label { color: var(--blue-royal); font-weight: 600; }
.step-line { flex: 1; height: 2px; background: var(--border); min-width: 20px; margin-bottom: 1.2rem; }

/* ---- PAGE HERO ---- */
.page-hero {
  background:
    linear-gradient(135deg, rgba(11,37,69,0.85), rgba(27,79,138,0.7)),
    url('../images/hero-bg.jpg') center/cover no-repeat;
  padding: 80px 0 60px;
  text-align: center;
}
.page-hero h1 { color: var(--white); font-size: clamp(2rem, 4vw, 3rem); }
.page-hero .breadcrumb { justify-content: center; }
.page-hero .breadcrumb-item,
.page-hero .breadcrumb-item a { color: rgba(255,255,255,0.7); font-size: 0.85rem; }
.page-hero .breadcrumb-item.active { color: var(--gold-light); }
.page-hero .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.4); }

/* ---- PRIVACY / TERMS ---- */
.policy-content h4 { color: var(--blue-deep); margin: 2rem 0 0.8rem; font-size: 1.15rem; }
.policy-content p, .policy-content li { font-size: 0.92rem; color: #3a3a5a; line-height: 1.8; }

/* ---- FOOTER ---- */
.footer { background: var(--blue-deep); }
.footer-top { padding: 60px 0 40px; }
.footer-brand {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
}
.footer-desc { color: rgba(255,255,255,0.6); font-size: 0.88rem; line-height: 1.7; }
.footer-heading {
  color: var(--gold-light);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 0.5rem; }
.footer-links a {
  color: rgba(255,255,255,0.65);
  font-size: 0.88rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.footer-links a:hover { color: var(--gold-light); padding-left: 4px; }
.footer-links a i { font-size: 0.7rem; }
.footer-contact { list-style: none; padding: 0; }
.footer-contact li {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
  margin-bottom: 0.9rem;
  color: rgba(255,255,255,0.65);
  font-size: 0.88rem;
}
.footer-contact i { color: var(--gold); margin-top: 3px; flex-shrink: 0; }
.footer-contact a { color: rgba(255,255,255,0.65); }
.footer-contact a:hover { color: var(--gold-light); }
.social-links { display: flex; gap: 0.7rem; }
.social-links a {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 1rem;
}
.social-links a:hover { background: var(--gold); border-color: var(--gold); color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1rem 0;
  color: rgba(255,255,255,0.45);
  font-size: 0.82rem;
}
.footer-bottom a { color: rgba(255,255,255,0.45); }
.footer-bottom a:hover { color: var(--gold-light); }

/* ---- MOBILE STICKY BAR ---- */
.mobile-sticky-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  background: var(--white);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
  padding-bottom: env(safe-area-inset-bottom);
}
.sticky-btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 5px;
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  gap: 4px;
  transition: var(--transition);
}
.sticky-btn i { font-size: 1.3rem; }
.call-btn    { color: var(--blue-royal); }
.call-btn:hover { background: var(--blue-light); }
.book-btn { background: var(--blue-royal); color: var(--white) !important; }
.book-btn:hover { background: var(--blue-deep); }
.whatsapp-btn { color: #25D366; }
.whatsapp-btn:hover { background: #e8fff2; }

/* ---- FLOATING WHATSAPP ---- */
.whatsapp-float {
  position: fixed;
  bottom: 2rem; right: 2rem;
  z-index: 999;
  width: 58px; height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--white);
  box-shadow: 0 4px 20px rgba(37,211,102,0.5);
  animation: pulse-wa 2.5s infinite;
}
@keyframes pulse-wa {
  0%,100% { box-shadow: 0 4px 20px rgba(37,211,102,0.5); }
  50% { box-shadow: 0 4px 40px rgba(37,211,102,0.8); }
}

/* ---- UTILITY ---- */
.text-gold { color: var(--gold); }
.text-blue { color: var(--blue-royal); }
.badge-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
}
.divider-gold {
  border: none;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 1.5rem auto;
  max-width: 120px;
}
.alert-success-custom {
  background: #e8fff2;
  border: 1px solid #25D366;
  color: #1a6b3a;
  border-radius: var(--radius);
  padding: 1.2rem;
}
.alert-error-custom {
  background: #fff0f0;
  border: 1px solid #e74c3c;
  color: #922b21;
  border-radius: var(--radius);
  padding: 1.2rem;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 992px) {
  .hero-section { min-height: 80vh; }
  .hero-stats { gap: 1rem; flex-wrap: wrap; }
  .booking-bar { margin-top: 0; border-radius: var(--radius); }
  .about-badge-box { right: 0; bottom: -1rem; }
}
@media (max-width: 768px) {
  .section-pad { padding: 60px 0; }
  body { padding-bottom: 70px; }
  .hero-desc { font-size: 0.95rem; }
  .hero-stats { gap: 0.7rem; }
  .hero-stat { padding: 0.7rem 1rem; }
  .hero-stat .num { font-size: 1.4rem; }
  .dest-card { height: 240px; }
}

/* ============================================================
   HERO LEAD FORM — Premium overlay card on hero
   ============================================================ */
.hero-lead-form {
  background: rgba(255,255,255,0.97);
  border-radius: 20px;
  box-shadow: 0 25px 80px rgba(10,61,122,0.35), 0 0 0 1px rgba(255,255,255,0.4);
  overflow: hidden;
  backdrop-filter: blur(10px);
  animation: formSlideIn 0.7s ease 0.3s both;
}
@keyframes formSlideIn {
  from { opacity:0; transform: translateY(30px); }
  to   { opacity:1; transform: translateY(0); }
}
.hero-lead-form-header {
  background: linear-gradient(135deg, var(--blue-deep) 0%, var(--blue-royal) 100%);
  color: #fff;
  padding: 18px 25px;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  position: relative;
  overflow: hidden;
}
.hero-lead-form-header::after {
  content: '';
  position: absolute;
  right: -20px; top: -20px;
  width: 80px; height: 80px;
  background: rgba(245,197,24,0.15);
  border-radius: 50%;
}
.hero-lead-form-body {
  padding: 22px 25px 25px;
}
.form-label-sm {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--blue-deep);
  margin-bottom: 4px;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.input-group-sm-custom .input-group-text {
  background: var(--blue-deep);
  color: #fff;
  border: none;
  border-radius: 8px 0 0 8px;
  padding: 8px 12px;
  font-size: 0.88rem;
}
.input-group-sm-custom .form-control,
.input-group-sm-custom .form-select {
  border: 1.5px solid #dde3ef;
  border-left: none;
  border-radius: 0 8px 8px 0;
  font-size: 0.88rem;
  padding: 8px 10px;
  background: #f8faff;
  transition: border-color 0.2s;
}
.input-group-sm-custom .form-control:focus,
.input-group-sm-custom .form-select:focus {
  border-color: var(--blue-royal);
  box-shadow: 0 0 0 3px rgba(21,101,192,0.12);
  background: #fff;
}
.btn-hero-submit {
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 50%, var(--gold-light) 100%);
  color: var(--blue-deep);
  border: none;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 13px 20px;
  letter-spacing: 0.3px;
  box-shadow: 0 6px 20px rgba(245,197,24,0.4);
  transition: all 0.3s ease;
}
.btn-hero-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(245,197,24,0.5);
  color: var(--blue-deep);
}
.text-muted-light { color: rgba(100,110,130,0.85); font-size: 0.78rem; }

/* Success message inside hero form */
.lead-success-msg {
  text-align: center;
  padding: 25px 15px;
  color: var(--blue-deep);
  font-weight: 600;
  font-size: 0.95rem;
}
.lead-success-msg .bi-check-circle-fill { color: #27ae60; }

/* reCAPTCHA responsive */
.g-recaptcha {
  transform-origin: left top;
}
@media (max-width: 400px) {
  .g-recaptcha { transform: scale(0.85); }
}

/* Alert sm */
.alert-sm { font-size: 0.85rem; padding: 8px 12px; }

/* ============================================================
   HERO SECTION — ensure 2-column layout on index
   ============================================================ */
@media (min-width: 992px) {
  .hero-section .hero-content .min-vh-75 { min-height: 75vh; padding: 60px 0; }
}
@media (max-width: 991px) {
  .hero-section .hero-content .min-vh-75 { padding: 40px 0 0; }
  .hero-lead-form { margin-bottom: 30px; }
}

/* ============================================================
   BOOK PAGE SIDEBAR FIX — sticky within column, no footer bleed
   ============================================================ */
.booking-sidebar {
  position: sticky;
  top: 90px;   /* height of sticky navbar */
  max-height: calc(100vh - 110px);
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: thin;
  scrollbar-color: rgba(10,61,122,0.2) transparent;
}
.booking-sidebar::-webkit-scrollbar { width: 4px; }
.booking-sidebar::-webkit-scrollbar-thumb { background: rgba(10,61,122,0.2); border-radius: 4px; }

/* Ensure the main booking row stretches columns equally */
.booking-main-row { align-items: start; }

@media (max-width: 991px) {
  .booking-sidebar {
    position: static;
    max-height: none;
    overflow: visible;
  }
}

/* ============================================================
   MISSION & VALUES CARDS — about.php
   ============================================================ */
.mv-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 20px rgba(10,61,122,0.08);
  border: 1px solid #eaeef6;
  overflow: hidden;
  text-align: center;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  position: relative;
}
.mv-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 45px rgba(10,61,122,0.14);
}
/* Coloured top stripe */
.mv-stripe {
  height: 4px;
  width: 100%;
  position: absolute;
  top: 0; left: 0;
  border-radius: 18px 18px 0 0;
}
/* Icon area */
.mv-icon-wrap {
  padding: 2rem 1.5rem 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.mv-icon {
  width: 70px; height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  color: #fff;
  box-shadow: 0 6px 20px rgba(0,0,0,0.18);
  transition: all 0.3s;
}
.mv-card:hover .mv-icon {
  transform: scale(1.1) rotate(-5deg);
  box-shadow: 0 10px 28px rgba(0,0,0,0.22);
}
/* Text body */
.mv-body {
  padding: 0.5rem 1.5rem 2rem;
  flex: 1;
}
.mv-title {
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--blue-deep);
  margin-bottom: 0.6rem;
}
.mv-desc {
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
}

/* ============================================================
   ERROR PAGES — 404 & 403
   ============================================================ */

/* Giant error number */
.error-number {
  font-family: var(--font-display);
  font-size: clamp(7rem, 20vw, 13rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -4px;
  background: linear-gradient(135deg, var(--blue-deep) 0%, var(--blue-royal) 50%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.2rem;
  user-select: none;
  animation: errorPulse 3s ease-in-out infinite;
}
.error-number--403 {
  background: linear-gradient(135deg, #c0392b 0%, #e74c3c 50%, var(--gold) 100%);
  -webkit-background-clip: text;
  background-clip: text;
}
@keyframes errorPulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.82; }
}

/* Icon circle */
.error-icon-wrap {
  width: 90px; height: 90px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-light), #c9e5ff);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2.4rem;
  color: var(--blue-royal);
  box-shadow: 0 8px 28px rgba(21,101,192,0.18);
  animation: iconBounce 2.5s ease-in-out infinite;
}
.error-icon-wrap--403 {
  background: linear-gradient(135deg, #fde8e8, #fca5a5);
  color: #c0392b;
  box-shadow: 0 8px 28px rgba(192,57,43,0.18);
}
@keyframes iconBounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}

/* Title & description */
.error-title {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: var(--blue-deep);
  font-weight: 700;
  margin-bottom: 1rem;
}
.error-desc {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.75;
  max-width: 520px;
  margin: 0 auto 2rem;
}

/* Quick links box */
.error-links-box {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.8rem 1.5rem;
}
.error-quick-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 0.5rem;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 12px;
  text-decoration: none;
  color: var(--blue-deep);
  font-size: 0.82rem;
  font-weight: 600;
  transition: var(--transition);
}
.error-quick-link i {
  font-size: 1.4rem;
  color: var(--blue-royal);
  transition: var(--transition);
}
.error-quick-link:hover {
  background: var(--blue-deep);
  border-color: var(--blue-deep);
  color: var(--white);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(10,61,122,0.2);
}
.error-quick-link:hover i {
  color: var(--gold-light);
}

/* Call banner */
.error-call-banner {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.25rem;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 50px;
  padding: 0.8rem 1.8rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  box-shadow: 0 4px 16px rgba(10,61,122,0.07);
}
.error-call-banner .bi-telephone-fill {
  color: var(--gold-dark);
}
.error-call-banner .call-tel {
  color: var(--blue-deep);
  text-decoration: none;
}
.error-call-banner .call-tel:hover {
  color: var(--gold-dark);
}
