/* ============================================================
   KALASH TOUR & TRAVELS — style.css
   Custom styles layered on top of Bootstrap 5

   Font Strategy:
   • Montserrat  → headings, section titles, brand name, hero headline
   • Poppins     → body text, nav links, card text, form controls
   • Roboto      → labels, tags, small utility text, badges
   ============================================================ */

/* ── CSS VARIABLES ─────────────────────────────────────────── */
:root {
  --blue: #1565c0;
  --blue-lt: #42a5f5;
  --gold: #ffb300;
  --orange: #ff6d00;
  --dark: #0d1b2a;
  --dark2: #162032;
  --dark3: #1e2d40;
  --white: #ffffff;
  --offwhite: #f4f8ff;
  --grey: #8899aa;
  --radius: 14px;
  --transition: all 0.3s ease;

  /* Font families */
  --font-heading: "Montserrat", sans-serif;
  --font-body: "Poppins", sans-serif;
  --font-label: "Roboto", sans-serif;
}

/* ── BASE ──────────────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--font-body); /* Poppins */
  background: var(--dark);
  color: var(--white);
  overflow-x: hidden;
}

/* ── SCROLLBAR ─────────────────────────────────────────────── */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: var(--dark);
}
::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 3px;
}

/* ── TYPOGRAPHY ────────────────────────────────────────────── */
.section-label {
  font-family: var(--font-label); /* Roboto */
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 10px;
}
.section-title {
  font-family: var(--font-heading); /* Montserrat */
  font-size: clamp(22px, 2vw, 24px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 14px;
}
.section-sub {
  font-family: var(--font-body); /* Poppins */
  color: var(--grey);
  font-size: 15px;
  line-height: 1.75;
}
.accent-line {
  width: 50px;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--orange));
  border-radius: 2px;
  margin: 14px 0 20px;
}
.accent-line.center {
  margin: 14px auto 20px;
}
.text-gold {
  color: var(--gold) !important;
}

/* ── CUSTOM BUTTONS ────────────────────────────────────────── */
.btn-kt-primary {
  font-family: var(--font-heading); /* Montserrat */
  background: linear-gradient(135deg, var(--gold), var(--orange));
  color: var(--dark) !important;
  font-weight: 800;
  font-size: 15px;
  padding: 13px 30px;
  border-radius: 12px;
  border: none;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  letter-spacing: 0.3px;
}
.btn-kt-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(255, 179, 0, 0.4);
  color: var(--dark) !important;
}
.btn-kt-secondary {
  font-family: var(--font-heading); /* Montserrat */
  background: rgba(255, 255, 255, 0.06);
  color: var(--white) !important;
  font-weight: 700;
  font-size: 15px;
  padding: 13px 30px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}
.btn-kt-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.35);
  transform: translateY(-3px);
}
.btn-kt-wa {
  font-family: var(--font-heading); /* Montserrat */
  background: #25d366;
  color: var(--white) !important;
  font-weight: 800;
  font-size: 14px;
  padding: 11px 22px;
  border-radius: 10px;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: var(--transition);
}
.btn-kt-wa:hover {
  background: #1da851;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
  color: var(--white) !important;
}

/* ── FLOATING CONTACT ──────────────────────────────────────── */
.float-btns {
  position: fixed;
  right: 30px;
  bottom: 115px;
  z-index: 1050;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.float-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #fff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.45);
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
}
.float-btn:hover {
  transform: scale(1.0);
  box-shadow: 0 6px 28px rgba(0, 0, 0, 0.5);
}
.float-btn.wa {
  background: #25d366;
}
.float-btn.ph {
  background: #ff3b30;
}

/* ── TOP BAR ───────────────────────────────────────────────── */
.topbar {
  font-family: var(--font-label); /* Roboto */
  background: var(--dark2);
  font-size: 13px;
  padding: 7px 0;
  border-bottom: 1px solid rgba(255, 179, 0, 0.18);
}
.topbar a {
  color: var(--gold);
  text-decoration: none;
  transition: color 0.2s;
}
.topbar a:hover {
  color: var(--blue-lt);
}
.topbar .topbar-sep {
  color: rgba(255, 255, 255, 0.2);
  margin: 0 10px;
}

/* ── NAVBAR ────────────────────────────────────────────────── */
.kt-navbar {
  background: rgba(13, 27, 42, 0.97) !important;
  backdrop-filter: blur(14px);
  border-bottom: 2px solid rgba(255, 179, 0, 0.22);
  padding: 0 !important;
}
.kt-navbar .navbar-brand {
  padding: 10px 0;
}
.kt-navbar .navbar-brand img {
  height: 50px;
  width: auto;
}
.brand-name {
  font-family: var(--font-heading); /* Montserrat */
  font-size: 17px;
  font-weight: 800;
  color: var(--gold);
  line-height: 1.1;
  display: block;
  letter-spacing: 0.3px;
}
.brand-sub {
  font-family: var(--font-label); /* Roboto */
  font-size: 10px;
  color: var(--blue-lt);
  letter-spacing: 2px;
  text-transform: uppercase;
  display: block;
}
.kt-navbar .nav-link {
  font-family: var(--font-body); /* Poppins */
  color: rgba(255, 255, 255, 0.82) !important;
  font-weight: 600;
  font-size: 14px;
  padding: 8px 14px !important;
  border-radius: 8px;
  transition: var(--transition);
  letter-spacing: 0.2px;
}
.kt-navbar .nav-link:hover,
.kt-navbar .nav-link.active {
  background: rgba(255, 179, 0, 0.1);
  color: var(--gold) !important;
}
.kt-navbar .nav-cta {
  font-family: var(--font-heading) !important; /* Montserrat */
  background: linear-gradient(135deg, var(--gold), var(--orange)) !important;
  color: var(--dark) !important;
  font-weight: 800 !important;
  padding: 9px 22px !important;
}
.kt-navbar .nav-cta:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}
.kt-navbar .navbar-toggler {
  border-color: rgba(255, 179, 0, 0.4);
  padding: 6px 10px;
}
.kt-navbar .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='%23FFB300' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ── SECTION WRAPPERS ──────────────────────────────────────── */
section {
  padding: 90px 0;
}
.section-dark {
  background: var(--dark);
}
.section-dark2 {
  background: var(--dark2);
}
.section-gradient {
  background: linear-gradient(180deg, var(--dark) 0%, var(--dark2) 100%);
}

/* ── FADE-IN ANIMATIONS ────────────────────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: none;
}

/* ================================================================
   HERO SECTION
   ================================================================ */
.kt-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  background: var(--dark);
}

/* Layered background */
.hero-bg-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero-bg-base {
  position: absolute;
  inset: 0;
  background: linear-gradient(130deg, #080f1a 0%, #0d1b2a 45%, #0a1628 100%);
}
.hero-bg-glow1 {
  position: absolute;
  top: -10%;
  right: -5%;
  width: 70%;
  height: 80%;
  border-radius: 50%;
  background: radial-gradient(
    ellipse,
    rgba(21, 101, 192, 0.28) 0%,
    transparent 70%
  );
  animation: glowPulse 6s ease-in-out infinite alternate;
}
.hero-bg-glow2 {
  position: absolute;
  bottom: -20%;
  left: -10%;
  width: 60%;
  height: 70%;
  border-radius: 50%;
  background: radial-gradient(
    ellipse,
    rgba(255, 179, 0, 0.1) 0%,
    transparent 65%
  );
  animation: glowPulse 8s ease-in-out infinite alternate-reverse;
}
.hero-grid-lines {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(
      rgba(255, 179, 0, 0.04) 1px,
      transparent 1px
    ),
    linear-gradient(90deg, rgba(255, 179, 0, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
@keyframes glowPulse {
  from {
    opacity: 0.6;
    transform: scale(1);
  }
  to {
    opacity: 1;
    transform: scale(1.08);
  }
}

/* Road strip at bottom */
.hero-road {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: repeating-linear-gradient(
    90deg,
    var(--gold) 0,
    var(--gold) 40px,
    transparent 40px,
    transparent 80px
  );
  opacity: 0.5;
  animation: roadMove 2.5s linear infinite;
}
@keyframes roadMove {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 80px 0;
  }
}

/* Hero content */
.hero-inner {
  position: relative;
  z-index: 2;  
}
.hero-badge {
  font-family: var(--font-label); /* Roboto */
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 179, 0, 0.1);
  border: 1px solid rgba(255, 179, 0, 0.3);
  color: var(--gold);
  padding: 7px 18px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 24px;
  letter-spacing: 1px;
  animation: badgeFade 1s ease forwards;
}
@keyframes badgeFade {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.hero-headline {
  font-family: var(--font-heading); /* Montserrat */
  font-size: clamp(2.3rem, 5.5vw, 4rem);
  line-height: 0.95;
  margin-bottom: 22px;
  letter-spacing: -0.5px; /* Montserrat looks better with tighter spacing */
  font-weight: 900;
  animation: headlineFade 0.9s 0.2s ease both;
}
@keyframes headlineFade {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.hero-headline .line-gold {
  color: var(--gold);
  display: block;
}
.hero-headline .line-blue {
  color: var(--blue-lt);
  display: block;
  font-family: var(--font-label); /* Roboto for the small sub-label */
  font-size: 0.52em;
  letter-spacing: 4px;
  font-weight: 700;
}
.hero-desc {
  font-family: var(--font-body); /* Poppins */
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  max-width: 480px;
  margin-bottom: 36px;
  animation: headlineFade 0.9s 0.4s ease both;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 48px;
  animation: headlineFade 0.9s 0.55s ease both;
}

/* Stats strip */
.hero-stats-strip {
  display: flex;
  gap: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  animation: headlineFade 0.9s 0.7s ease both;
}
.hero-stat {
  flex: 1;
  text-align: center;
  padding: 18px 12px;
  border-right: 1px solid rgba(255, 255, 255, 0.07);
}
.hero-stat:last-child {
  border-right: none;
}
.hero-stat .num {
  font-family: var(--font-heading); /* Montserrat */
  font-size: 28px;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  display: block;
}
.hero-stat .lbl {
  font-family: var(--font-label); /* Roboto */
  font-size: 11px;
  color: var(--grey);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 4px;
  display: block;
}

/* Booking card */
.hero-booking-card {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 179, 0, 0.22);
  border-radius: 20px;
  padding: 32px 28px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  animation: cardSlideIn 0.9s 0.3s ease both;
}
@keyframes cardSlideIn {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.hero-booking-card h3 {
  font-family: var(--font-heading); /* Montserrat */
  font-size: 19px;
  font-weight: 800;
  color: var(--gold);
  text-align: center;
  margin-bottom: 22px;
  letter-spacing: 0.2px;
}
.kt-form-label {
  font-family: var(--font-label); /* Roboto */
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--grey);
  margin-bottom: 5px;
  display: block;
}
.kt-form-control {
  font-family: var(--font-body); /* Poppins */
  width: 100%;
  background: rgba(255, 255, 255, 0.06) !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  color: var(--white) !important;
  padding: 11px 14px;
  border-radius: 10px;
  font-size: 14px;
  outline: none;
  transition: 0.2s;
  -webkit-appearance: none;
}
.kt-form-control:focus {
  border-color: var(--gold) !important;
  background: rgba(255, 179, 0, 0.05) !important;
  box-shadow: 0 0 0 3px rgba(255, 179, 0, 0.12) !important;
}
.kt-form-control option {
  background: var(--dark2);
  color: var(--white);
}

/* Floating vehicle badge on hero right side */
.hero-vehicle-badge {
  font-family: var(--font-body);
  position: absolute;
  bottom: 90px;
  right: 0;
  background: rgba(255, 179, 0, 0.1);
  border: 1px solid rgba(255, 179, 0, 0.25);
  border-radius: 12px;
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 3;
}

/* ================================================================
   SERVICES SECTION
   ================================================================ */
.service-card {
  background: var(--dark2);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  cursor: pointer;
  height: 100%;
  position: relative;
}
.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 179, 0, 0.4);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
}
.service-card:hover .svc-img img {
  transform: scale(1.08);
}
.svc-img {
  height: 160px;
  overflow: hidden;
}
.svc-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.svc-body {
  padding: 18px;
}
.svc-body h5 {
  font-family: var(--font-heading); /* Montserrat */
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--white);
  letter-spacing: 0.2px;
}
.svc-body p {
  font-family: var(--font-body); /* Poppins */
  font-size: 13px;
  color: var(--grey);
  line-height: 1.6;
  margin: 0;
}
.svc-badge {
  font-family: var(--font-label); /* Roboto */
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--gold);
  color: var(--dark);
  font-size: 10px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ================================================================
   CAROUSEL — shared overrides
   ================================================================ */
.kt-carousel .carousel-item {
  transition: transform 0.5s ease;
}
.kt-carousel .carousel-control-prev,
.kt-carousel .carousel-control-next {
  width: 46px;
  height: 46px;
  background: rgba(255, 179, 0, 0.15);
  border: 1px solid rgba(255, 179, 0, 0.3);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  bottom: auto;
  opacity: 1;
  transition: var(--transition);
}
.kt-carousel .carousel-control-prev {
  left: -22px;
}
.kt-carousel .carousel-control-next {
  right: -22px;
}
.kt-carousel .carousel-control-prev:hover,
.kt-carousel .carousel-control-next:hover {
  background: var(--gold);
}
.kt-carousel .carousel-control-prev-icon,
.kt-carousel .carousel-control-next-icon {
  width: 18px;
  height: 18px;
}
.carousel-wrapper {
  padding: 0 30px;
  position: relative;
}
.kt-carousel .carousel-indicators {
  position: static;
  margin: 28px 0 0;
  gap: 6px;
}
.kt-carousel .carousel-indicators [data-bs-target] {
  width: 28px;
  height: 4px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  transition: var(--transition);
  opacity: 1;
}
.kt-carousel .carousel-indicators .active {
  background: var(--gold);
  width: 40px;
}

/* ================================================================
   WHY US CAROUSEL
   ================================================================ */
#why {
  background: linear-gradient(180deg, var(--dark) 0%, var(--dark2) 100%);
}
.why-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius);
  padding: 30px 24px;
  height: 100%;
  transition: var(--transition);
}
.why-card:hover {
  border-color: rgba(255, 179, 0, 0.3);
  background: rgba(255, 179, 0, 0.04);
  transform: translateY(-6px);
}
.why-icon {
  width: 54px;
  height: 54px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--gold), var(--orange));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--dark);
  margin-bottom: 18px;
  flex-shrink: 0;
}
.why-card h5 {
  font-family: var(--font-heading); /* Montserrat */
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: 0.2px;
}
.why-card p {
  font-family: var(--font-body); /* Poppins */
  font-size: 14px;
  color: var(--grey);
  line-height: 1.65;
  margin: 0;
}

/* ================================================================
   FLEET CAROUSEL
   ================================================================ */
#fleet {
  background: var(--dark2);
}
.fleet-card {
  background: var(--dark);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius);
  overflow: hidden;
  height: 100%;
  transition: var(--transition);
}
.fleet-card:hover {
  transform: translateY(-6px);
  border-color: rgba(66, 165, 245, 0.45);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.4);
}
.fleet-card:hover .fleet-img img {
  transform: scale(1.06);
}
.fleet-img {
  height: 185px;
  overflow: hidden;
  background: #0a1628;
  display: flex;
  align-items: center;
}
.fleet-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.fleet-body {
  padding: 20px;
}
.fleet-type {
  font-family: var(--font-label); /* Roboto */
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--blue-lt);
  margin-bottom: 6px;
}
.fleet-body h5 {
  font-family: var(--font-heading); /* Montserrat */
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
}
.fleet-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.fleet-tag {
  font-family: var(--font-label); /* Roboto */
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 20px;
  color: rgba(255, 255, 255, 0.7);
}

/* ================================================================
   PACKAGES CAROUSEL
   ================================================================ */
#packages {
  background: var(--dark);
}
.pkg-card {
  background: var(--dark2);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius);
  overflow: hidden;
  height: 100%;
  transition: var(--transition);
  position: relative;
}
.pkg-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 52px rgba(0, 0, 0, 0.5);
  border-color: rgba(255, 179, 0, 0.3);
}
.pkg-card:hover .pkg-img img {
  transform: scale(1.08);
}
.pkg-img {
  height: 210px;
  overflow: hidden;
  position: relative;
}
.pkg-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.pkg-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(13, 27, 42, 0.85) 0%,
    transparent 60%
  );
}
.pkg-body {
  padding: 20px;
}
.pkg-type {
  font-family: var(--font-label); /* Roboto */
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 6px;
}
.pkg-body h5 {
  font-family: var(--font-heading); /* Montserrat */
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.2;
}
.pkg-body p {
  font-family: var(--font-body); /* Poppins */
  font-size: 13px;
  color: var(--grey);
  line-height: 1.6;
  margin-bottom: 16px;
}

/* ================================================================
   ROUTES SECTION
   ================================================================ */
#routes {
  background: var(--dark2);
}
.route-chip {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 10px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition);
  cursor: default;
}
.route-chip:hover {
  background: rgba(255, 179, 0, 0.08);
  border-color: rgba(255, 179, 0, 0.3);
}
.route-chip i {
  color: var(--gold);
  font-size: 13px;
  flex-shrink: 0;
}
.route-chip span {
  font-family: var(--font-body); /* Poppins */
  font-size: 14px;
  font-weight: 600;
}
.tour-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 10px;
  margin-bottom: 10px;
  transition: var(--transition);
}
.tour-item:hover {
  border-color: rgba(255, 179, 0, 0.3);
  background: rgba(255, 179, 0, 0.04);
}
.tour-arrow {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--gold), var(--orange));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 13px;
  color: var(--dark);
}
.tour-item span {
  font-family: var(--font-body); /* Poppins */
  font-size: 14px;
  font-weight: 600;
}

/* ================================================================
   GALLERY SECTION
   ================================================================ */
#gallery {
  background: var(--dark);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 180px;
  gap: 10px;
}
.g-item {
  overflow: hidden;
  border-radius: 10px;
  position: relative;
}
.g-item.wide {
  grid-column: span 2;
}
.g-item.tall {
  grid-row: span 2;
}
.g-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.g-item:hover img {
  transform: scale(1.1);
}
.g-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13, 27, 42, 0.5);
  opacity: 0;
  transition: 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: white;
}
.g-item:hover .g-overlay {
  opacity: 1;
}

/* ================================================================
   CONTACT SECTION
   ================================================================ */
#contact {
  background: linear-gradient(180deg, var(--dark2) 0%, var(--dark) 100%);
}
.info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 22px;
}
.info-icon {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  border-radius: 10px;
  background: rgba(255, 179, 0, 0.1);
  border: 1px solid rgba(255, 179, 0, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--gold);
}
.info-label {
  font-family: var(--font-label); /* Roboto */
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--grey);
  margin-bottom: 3px;
}
.info-val {
  font-family: var(--font-body); /* Poppins */
  font-size: 15px;
  font-weight: 600;
}
.info-val a {
  color: var(--white);
  text-decoration: none;
  transition: 0.2s;
}
.info-val a:hover {
  color: var(--gold);
}
.contact-form-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 32px;
}
.contact-form-card h4 {
  font-family: var(--font-heading); /* Montserrat */
  font-size: 20px;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 24px;
  letter-spacing: 0.2px;
}

/* ================================================================
   FOOTER
   ================================================================ */
.kt-footer {
  background: var(--dark2);
  border-top: 1px solid rgba(255, 179, 0, 0.15);
  padding: 64px 0 28px;
}
.footer-brand p {
  font-family: var(--font-body); /* Poppins */
  color: var(--grey);
  font-size: 14px;
  line-height: 1.75;
}
.footer-social-icon {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--grey);
  font-size: 14px;
  text-decoration: none;
  transition: var(--transition);
  margin-right: 8px;
}
.footer-social-icon:hover {
  background: rgba(255, 179, 0, 0.1);
  border-color: rgba(255, 179, 0, 0.3);
  color: var(--gold);
}
.footer-heading {
  font-family: var(--font-heading); /* Montserrat */
  font-size: 15px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 18px;
  letter-spacing: 0.3px;
}
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li {
  margin-bottom: 10px;
}
.footer-links li a {
  font-family: var(--font-body); /* Poppins */
  color: var(--grey);
  text-decoration: none;
  font-size: 14px;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.footer-links li a::before {
  content: "›";
  color: var(--gold);
  font-weight: 900;
}
.footer-links li a:hover {
  color: var(--white);
  padding-left: 4px;
}
.footer-divider {
  border-color: rgba(255, 255, 255, 0.07);
}
.footer-bottom p {
  font-family: var(--font-label); /* Roboto */
  color: var(--grey);
  font-size: 13px;
  margin: 0;
}

/* ================================================================
   ABOUT PAGE
   ================================================================ */
.page-hero {
  background: linear-gradient(135deg, var(--dark2) 0%, var(--dark) 100%);
  padding: 100px 0 70px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 60% 80% at 80% 50%,
    rgba(21, 101, 192, 0.2) 0%,
    transparent 70%
  );
}
.page-hero-content {
  position: relative;
  z-index: 1;
}
.breadcrumb-custom {
  margin-bottom: 16px;
}
.breadcrumb-custom a {
  font-family: var(--font-body);
  color: var(--gold);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
}
.breadcrumb-custom span {
  font-family: var(--font-body);
  color: var(--grey);
  font-size: 14px;
  margin: 0 8px;
}
.breadcrumb-custom .current {
  font-family: var(--font-body);
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
}
.about-feature-card {
  background: var(--dark2);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius);
  padding: 28px 24px;
  height: 100%;
  transition: var(--transition);
}
.about-feature-card:hover {
  border-color: rgba(255, 179, 0, 0.3);
  transform: translateY(-5px);
}
.about-num {
  font-family: var(--font-heading); /* Montserrat */
  font-size: 48px;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}
.about-num-label {
  font-family: var(--font-body); /* Poppins */
  font-size: 14px;
  color: var(--grey);
}
.team-card {
  background: var(--dark2);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius);
  padding: 28px;
  text-align: center;
  transition: var(--transition);
}
.team-card:hover {
  border-color: rgba(255, 179, 0, 0.3);
  transform: translateY(-5px);
}
.team-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin: 0 auto 16px;
}
.team-card h5 {
  font-family: var(--font-heading); /* Montserrat */
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
}
.team-card .role {
  font-family: var(--font-label); /* Roboto */
  color: var(--gold);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

/* ================================================================
   RESPONSIVE OVERRIDES
   ================================================================ */
@media (max-width: 991px) {
  .hero-inner {
    padding: 10px 0 60px;
  }
  .hero-booking-card {
    margin-top: 40px;
  }
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .carousel-wrapper {
    padding: 0 16px;
  }
  .kt-carousel .carousel-control-prev {
    left: -8px;
  }
  .kt-carousel .carousel-control-next {
    right: -8px;
  }
}
@media (max-width: 767px) {
  section {
    padding: 60px 0;
  }
  .hero-headline {
    font-size: 46px;
  }
  .hero-stats-strip {
    flex-wrap: wrap;
  }
  .hero-stat {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  }
  .hero-stat:last-child {
    border-bottom: none;
  }
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 130px;
  }
  .g-item.wide {
    grid-column: span 1;
  }
  .g-item.tall {
    grid-row: span 1;
  }
}
@media (max-width: 480px) {
  .hero-headline {
    font-size: 38px;
  }
  .hero-actions {
    flex-direction: column;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .topbar .topbar-right {
    display: none;
  }
}


/* FOUNDERS V2 — IMAGE FOCUSED */

.founder-card-v2 {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: #111;
  border: 1px solid rgba(255,255,255,0.06);
  transition: all 0.4s ease;
}

.founder-card-v2:hover {
  transform: translateY(-6px);
  border-color: rgba(212,175,55,0.4);
  box-shadow: 0 15px 40px rgba(0,0,0,0.5);
}

/* IMAGE DOMINANCE */
.founder-img-wrap {
  position: relative;
  height: 380px;
  overflow: hidden;
}

.founder-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

/* DARK GRADIENT OVERLAY */
.founder-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.85) 10%,
    rgba(0,0,0,0.2) 60%,
    transparent 100%
  );
}

/* CONTENT OVER IMAGE */
.founder-content {
  position: absolute;
  bottom: 0;
  padding: 22px;
  z-index: 2;
}

.founder-content h5 {
  color: #fff;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  margin-bottom: 4px;
}

.founder-role {
  font-size: 12px;
  color: var(--gold);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.founder-content p {
  font-size: 13px;
  color: #ddd;
  line-height: 1.5;
}


/* IMAGE CONTAINER — MATCH 2:3 RATIO */
.founder-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 2 / 3; /* Perfect for 1024x1536 */
  overflow: hidden;
}

/* IMAGE FIT */
.founder-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;

  /* 🔥 KEY FIX: Move image slightly down so head is visible */
  object-position: center 20%;

  transition: transform 0.6s ease;
}

/* HOVER ZOOM (keep subtle) */
.founder-card-v2:hover img {
  transform: scale(1.05);
}

.founder-img-wrap {
  background: #000;
}

.founder-img-wrap img {
  
object-position: center 30%; /* even more */
}