/* =========================================================
   KS TRAVELS
   PREMIUM WHITE + GOLD + CHARCOAL
========================================================= */

:root {
  --gold: #c7a54a;
  --gold-light: #e1c66d;
  --gold-dark: #a9852e;

  --charcoal: #171717;
  --dark: #202020;
  --dark-soft: #292929;

  --white: #ffffff;
  --cream: #faf8f2;
  --text: #3b3b3b;
  --muted: #777777;

  --border: #e8e4da;

  --shadow: 0 20px 50px rgba(0, 0, 0, 0.08);

  --transition: all 0.35s ease;
}


/* =========================================================
   RESET
========================================================= */

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

html {
  scroll-behavior: smooth;
}

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

body.loading {
  overflow: hidden;
}

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

button {
  font-family: inherit;
}

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

.container {
  width: min(1150px, 90%);
  margin: auto;
}

.section-padding {
  padding: 110px 0;
}


/* =========================================================
   PRELOADER
========================================================= */

.preloader {
  position: fixed;
  inset: 0;
  background: var(--charcoal);
  z-index: 9999;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  transition:
    opacity 0.7s ease,
    visibility 0.7s ease;
}

.preloader.hide {
  opacity: 0;
  visibility: hidden;
}

.loader-logo {
  text-align: center;
  color: var(--white);
}

.loader-logo span {
  display: block;

  font-family: "Playfair Display", serif;

  font-size: 48px;
  line-height: 1;

  color: var(--gold-light);
}

.loader-logo small {
  display: block;

  margin-top: 5px;

  font-size: 11px;
  letter-spacing: 6px;
}

.loader-line {
  width: 150px;
  height: 2px;

  background: rgba(255, 255, 255, 0.15);

  margin-top: 30px;

  overflow: hidden;
}

.loader-line span {
  display: block;

  width: 50%;
  height: 100%;

  background: var(--gold-light);

  animation: loading 1.2s infinite ease-in-out;
}

@keyframes loading {

  0% {
    transform: translateX(-150%);
  }

  100% {
    transform: translateX(300%);
  }

}


/* =========================================================
   NAVBAR
========================================================= */

.navbar {
  width: 100%;
  height: 88px;

  background: rgba(255, 255, 255, 0.96);

  border-bottom: 1px solid var(--border);

  position: sticky;
  top: 0;

  z-index: 1000;

  transition: var(--transition);
}

.navbar.scrolled {
  height: 76px;

  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.07);
}

.nav-container {
  width: 100%;
  height: 100%;

  padding: 0 55px;

  display: flex;
  align-items: center;
  justify-content: space-between;
}


/* LOGO */

.logo {
  width: 150px;
  height: 78px;

  display: flex;
  align-items: center;
  justify-content: center;

  flex-shrink: 0;
}

.logo img {
  width: 150px;
  height: 78px;

  object-fit: contain;
}


/* NAV LINKS */

.nav-links {
  display: flex;
  align-items: center;

  gap: 34px;

  margin-left: auto;
  margin-right: 45px;

  height: 100%;
}

.nav-links a {
  height: 100%;

  display: flex;
  align-items: center;

  position: relative;

  font-size: 14px;
  font-weight: 600;

  color: #333;

  transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold-dark);
}

.nav-links a::after {
  content: "";

  position: absolute;

  width: 0;
  height: 2px;

  background: var(--gold);

  bottom: 17px;
  left: 50%;

  transform: translateX(-50%);

  transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 26px;
}


/* BOOK BUTTON */

.nav-book {
  min-height: 48px;

  padding: 0 22px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  gap: 9px;

  color: var(--white);

  background: var(--charcoal);

  font-size: 13px;
  font-weight: 700;

  border-radius: 4px;

  position: relative;
  overflow: hidden;

  transition: var(--transition);
}

.nav-book::before {
  content: "";

  position: absolute;

  inset: 0;

  background: var(--gold);

  transform: translateX(-101%);

  transition: transform 0.35s ease;

  z-index: 0;
}

.nav-book:hover::before {
  transform: translateX(0);
}

.nav-book i,
.nav-book span {
  position: relative;
  z-index: 1;
}

.nav-book:hover {
  color: var(--charcoal);
}


/* MOBILE MENU */

.menu-btn {
  display: none;

  border: 0;
  background: transparent;

  font-size: 22px;

  cursor: pointer;

  color: var(--charcoal);
}


/* =========================================================
   HERO
========================================================= */

.hero {
  min-height: calc(100vh - 88px);

  position: relative;

  display: flex;
  align-items: center;

  overflow: hidden;

  background:
    linear-gradient(
      110deg,
      rgba(10, 10, 10, 0.92) 0%,
      rgba(10, 10, 10, 0.78) 45%,
      rgba(10, 10, 10, 0.60) 70%,
      rgba(10, 10, 10, 0.55) 100%
    ),
    url("innova-bg.png") center / cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;

  background:
    radial-gradient(
      circle at 75% 40%,
      rgba(199, 165, 74, 0.15),
      transparent 30%
    );
}

.hero-pattern {
  position: absolute;

  width: 500px;
  height: 500px;

  right: -180px;
  top: -150px;

  border: 1px solid rgba(255, 255, 255, 0.08);

  border-radius: 50%;
}

.hero-pattern::before,
.hero-pattern::after {
  content: "";

  position: absolute;

  inset: 50px;

  border: 1px solid rgba(255, 255, 255, 0.06);

  border-radius: 50%;
}

.hero-container {
  position: relative;
  z-index: 2;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 60px;

  padding: 100px 0;
}

.hero-content {
  max-width: 720px;
}

.hero-tag {
  display: flex;
  align-items: center;
  gap: 12px;

  color: var(--gold-light);

  font-size: 11px;
  font-weight: 700;

  letter-spacing: 3px;
}

.hero-tag span {
  width: 35px;
  height: 1px;

  background: var(--gold-light);
}

.hero h1 {
  margin-top: 24px;

  font-family: "Playfair Display", serif;

  color: var(--white);

  font-size: clamp(48px, 6vw, 78px);

  line-height: 1.05;

  letter-spacing: -2px;
}

.hero h1 em {
  color: var(--gold-light);
  font-style: normal;
}

.hero-text {
  max-width: 570px;

  margin-top: 26px;

  color: rgba(255, 255, 255, 0.68);

  font-size: 17px;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 13px;

  margin-top: 35px;
}

.btn {
  min-height: 52px;

  padding: 0 25px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  gap: 10px;

  font-size: 13px;
  font-weight: 700;

  border-radius: 4px;

  transition: var(--transition);
}

.gold-btn {
  background: var(--gold);
  color: var(--charcoal);
}

.gold-btn:hover {
  background: var(--gold-light);

  transform: translateY(-4px);

  box-shadow: 0 12px 25px rgba(199, 165, 74, 0.25);
}

.light-btn {
  border: 1px solid rgba(255, 255, 255, 0.35);

  color: var(--white);
}

.light-btn:hover {
  background: var(--white);
  color: var(--charcoal);

  transform: translateY(-4px);
}

.hero-trust {
  display: flex;
  gap: 30px;

  margin-top: 32px;
}

.trust-item {
  display: flex;
  align-items: center;

  gap: 8px;

  color: rgba(255, 255, 255, 0.65);

  font-size: 12px;
}

.trust-item i {
  color: var(--gold-light);
}


/* HERO SIDE CARD */

.hero-side-card {
  width: 310px;

  padding: 28px;

  flex-shrink: 0;

  border: 1px solid rgba(255, 255, 255, 0.17);

  background: rgba(255, 255, 255, 0.06);

  backdrop-filter: blur(14px);

  color: var(--white);

  position: relative;

  transform: translateY(20px);
}

.side-card-top,
.side-card-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.side-card-top span,
.side-card-bottom span {
  font-size: 9px;

  letter-spacing: 2px;

  color: var(--gold-light);

  font-weight: 700;
}

.side-card-top i {
  color: var(--gold-light);
}

.hero-side-card h3 {
  font-family: "Playfair Display", serif;

  font-size: 30px;
  line-height: 1.2;

  margin-top: 28px;
}

.hero-side-card p {
  color: rgba(255, 255, 255, 0.58);

  font-size: 13px;
  line-height: 1.7;

  margin-top: 16px;
}

.side-card-line {
  height: 1px;

  background: rgba(255, 255, 255, 0.12);

  margin: 25px 0;
}

.side-card-bottom i {
  font-size: 12px;
}


/* HERO SCROLL */

.hero-scroll {
  position: absolute;

  left: 50%;
  bottom: 25px;

  transform: translateX(-50%);

  display: flex;
  flex-direction: column;
  align-items: center;

  gap: 8px;

  color: rgba(255, 255, 255, 0.4);

  font-size: 8px;

  letter-spacing: 2px;
}

.hero-scroll div {
  width: 1px;
  height: 35px;

  background: var(--gold);
}


/* =========================================================
   FEATURES
========================================================= */

.features-section {
  background: var(--white);

  border-bottom: 1px solid var(--border);
}

.features-grid {
  display: grid;

  grid-template-columns: repeat(5, 1fr);

  padding: 35px 0;
}

.feature {
  min-height: 65px;

  padding: 0 25px;

  border-right: 1px solid var(--border);

  display: flex;
  align-items: center;

  gap: 15px;
}

.feature:first-child {
  padding-left: 0;
}

.feature:last-child {
  border-right: 0;
}

.feature-icon {
  width: 43px;
  height: 43px;

  flex-shrink: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: var(--cream);

  color: var(--gold-dark);

  font-size: 16px;

  transition: var(--transition);
}

.feature:hover .feature-icon {
  background: var(--gold);
  color: var(--charcoal);

  transform: rotateY(180deg);
}

.feature h3 {
  color: var(--charcoal);

  font-size: 12px;

  font-weight: 700;
}

.feature p {
  margin-top: 4px;

  color: var(--muted);

  font-size: 9px;

  line-height: 1.4;
}


/* =========================================================
   SECTION HEADING
========================================================= */

.section-tag {
  display: flex;
  align-items: center;

  gap: 10px;

  color: var(--gold-dark);

  font-size: 10px;

  letter-spacing: 3px;

  font-weight: 700;
}

.section-tag span {
  width: 28px;
  height: 1px;

  background: var(--gold);
}

.section-heading {
  margin-bottom: 55px;
}

.section-heading h2,
.about-content h2 {
  margin-top: 15px;

  font-family: "Playfair Display", serif;

  font-size: clamp(38px, 4vw, 55px);

  line-height: 1.1;

  color: var(--charcoal);

  letter-spacing: -1px;
}

.section-heading h2 em,
.about-content h2 em {
  font-style: normal;

  color: var(--gold-dark);
}

.section-heading > p {
  max-width: 520px;

  margin-top: 18px;

  color: var(--muted);

  font-size: 14px;

  line-height: 1.8;
}


/* =========================================================
   ABOUT
========================================================= */

.about {
  background: var(--cream);
}

.about-grid {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 90px;

  align-items: center;
}

.about-image {
  position: relative;

  padding-right: 20px;
  padding-bottom: 20px;
}

.image-frame {
  height: 520px;

  overflow: hidden;

  position: relative;

  box-shadow: var(--shadow);
}

.image-frame img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  transition: transform 0.8s ease;
}

.about-image:hover .image-frame img {
  transform: scale(1.06);
}

.image-overlay {
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      180deg,
      transparent 60%,
      rgba(0, 0, 0, 0.25)
    );
}

.about-decoration {
  position: absolute;

  width: 120px;
  height: 120px;

  right: -5px;
  bottom: -5px;

  border-right: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);

  z-index: 0;
}

.experience-box {
  position: absolute;

  left: -30px;
  bottom: 50px;

  width: 185px;

  padding: 20px;

  background: var(--charcoal);

  color: var(--white);

  display: flex;
  align-items: center;

  gap: 12px;

  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.18);

  z-index: 2;
}

.experience-box strong {
  font-family: "Playfair Display", serif;

  font-size: 44px;

  color: var(--gold-light);

  line-height: 1;
}

.experience-box strong span {
  font-size: 22px;
}

.experience-box small,
.experience-box b {
  display: block;

  font-size: 8px;

  letter-spacing: 1px;
}

.experience-box b {
  margin-top: 3px;
}

.about-description {
  margin-top: 25px;

  color: var(--muted);

  font-size: 14px;

  line-height: 1.9;
}

.about-list {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 15px;

  margin-top: 27px;
}

.about-check {
  display: flex;
  align-items: center;

  gap: 10px;

  font-size: 12px;

  font-weight: 600;

  color: var(--charcoal);
}

.about-check i {
  width: 22px;
  height: 22px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: var(--gold);

  color: var(--charcoal);

  border-radius: 50%;

  font-size: 9px;
}

.text-btn {
  display: inline-flex;

  align-items: center;

  gap: 12px;

  margin-top: 32px;

  color: var(--charcoal);

  font-size: 12px;

  font-weight: 700;

  border-bottom: 1px solid var(--gold);

  padding-bottom: 8px;

  transition: var(--transition);
}

.text-btn i {
  color: var(--gold-dark);

  transition: transform 0.3s ease;
}

.text-btn:hover i {
  transform: translateX(6px);
}


/* =========================================================
   SERVICES
========================================================= */

.services {
  background: var(--white);
}

.services-grid {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 18px;
}

.service-card {
  min-height: 300px;

  padding: 32px;

  background: var(--white);

  border: 1px solid var(--border);

  position: relative;

  overflow: hidden;

  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease,
    border-color 0.4s ease;
}

.service-card::before {
  content: "";

  position: absolute;

  width: 180px;
  height: 180px;

  right: -100px;
  bottom: -100px;

  border-radius: 50%;

  background: var(--cream);

  transition: transform 0.5s ease;
}

.service-card:hover {
  transform: translateY(-10px);

  border-color: rgba(199, 165, 74, 0.5);

  box-shadow: var(--shadow);
}

.service-card:hover::before {
  transform: scale(2.2);
}

.service-number {
  position: absolute;

  top: 25px;
  right: 25px;

  color: #ddd;

  font-family: "Playfair Display", serif;

  font-size: 30px;

  transition: var(--transition);
}

.service-card:hover .service-number {
  color: var(--gold);
}

.service-icon {
  width: 53px;
  height: 53px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: var(--charcoal);

  color: var(--gold-light);

  font-size: 19px;

  transition: var(--transition);
}

.service-card:hover .service-icon {
  background: var(--gold);
  color: var(--charcoal);

  transform: rotateY(180deg);
}

.service-card h3 {
  margin-top: 30px;

  color: var(--charcoal);

  font-family: "Playfair Display", serif;

  font-size: 23px;

  position: relative;
}

.service-card p {
  margin-top: 10px;

  color: var(--muted);

  font-size: 12px;

  line-height: 1.7;

  max-width: 260px;

  position: relative;
}

.service-card a {
  display: inline-flex;

  align-items: center;

  gap: 9px;

  margin-top: 22px;

  color: var(--charcoal);

  font-size: 10px;

  font-weight: 700;

  position: relative;

  transition: var(--transition);
}

.service-card a i {
  color: var(--gold-dark);
}

.service-card a:hover {
  gap: 14px;
}

.service-card.featured {
  background: var(--charcoal);

  border-color: var(--charcoal);
}

.service-card.featured h3 {
  color: var(--white);
}

.service-card.featured p {
  color: rgba(255, 255, 255, 0.55);
}

.service-card.featured a {
  color: var(--white);
}

.service-card.featured .service-number {
  color: rgba(255, 255, 255, 0.12);
}


/* =========================================================
   STATS
========================================================= */

.stats-section {
  position: relative;

  padding: 70px 0;

  background: var(--charcoal);

  overflow: hidden;
}

.stats-bg {
  position: absolute;

  inset: 0;

  background:
    radial-gradient(
      circle at center,
      rgba(199, 165, 74, 0.08),
      transparent 45%
    );
}

.stats-grid {
  position: relative;

  display: grid;

  grid-template-columns: repeat(4, 1fr);
}

.stat {
  text-align: center;

  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.stat:last-child {
  border-right: 0;
}

.stat strong {
  color: var(--white);

  font-family: "Playfair Display", serif;

  font-size: 50px;

  line-height: 1;
}

.stat > span {
  color: var(--gold-light);

  font-family: "Playfair Display", serif;

  font-size: 24px;
}

.stat p {
  margin-top: 10px;

  color: rgba(255, 255, 255, 0.45);

  font-size: 10px;

  text-transform: uppercase;

  letter-spacing: 2px;
}


/* =========================================================
   VEHICLES
========================================================= */

.vehicles {
  background: var(--cream);
}

.vehicle-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;

  gap: 50px;
}

.vehicle-heading > p {
  margin-bottom: 5px;
}

.vehicles-grid {
  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 25px;
}

.vehicle-card {
  background: var(--white);

  border: 1px solid var(--border);

  overflow: hidden;

  transition: var(--transition);
}

.vehicle-card:hover {
  transform: translateY(-8px);

  box-shadow: var(--shadow);
}

.vehicle-image {
  height: 300px;

  position: relative;

  overflow: hidden;

  background: #eee;
}

.vehicle-image img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  transition: transform 0.7s ease;
}

.vehicle-card:hover .vehicle-image img {
  transform: scale(1.07);
}

.vehicle-overlay {
  position: absolute;

  top: 20px;
  left: 20px;

  padding: 7px 11px;

  background: var(--charcoal);

  color: var(--gold-light);

  font-size: 8px;

  font-weight: 700;

  letter-spacing: 1.5px;
}

.vehicle-info {
  min-height: 90px;

  padding: 22px 25px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 20px;
}

.vehicle-info h3 {
  color: var(--charcoal);

  font-family: "Playfair Display", serif;

  font-size: 22px;
}

.vehicle-info p {
  margin-top: 5px;

  color: var(--muted);

  font-size: 10px;
}

.vehicle-capacity {
  min-width: 48px;

  height: 48px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  gap: 2px;

  border: 1px solid var(--border);

  color: var(--charcoal);

  font-size: 10px;

  font-weight: 700;
}

.vehicle-capacity i {
  color: var(--gold-dark);
  font-size: 12px;
}


/* =========================================================
   GALLERY
========================================================= */

.gallery {
  background: var(--white);
}

.centered {
  text-align: center;
}

.centered .section-tag {
  justify-content: center;
}

.gallery-grid {
  display: grid;

  grid-template-columns: 1.4fr 1fr 1fr;

  grid-template-rows: 260px 260px;

  gap: 15px;
}

.gallery-item {
  position: relative;

  overflow: hidden;

  background: #ddd;
}

.gallery-item.large {
  grid-row: span 2;
}

.gallery-item.wide {
  grid-column: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  transition:
    transform 0.7s ease,
    filter 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
  filter: brightness(0.7);
}

.gallery-caption {
  position: absolute;

  left: 20px;
  right: 20px;
  bottom: 18px;

  display: flex;
  align-items: center;

  justify-content: space-between;

  color: var(--white);

  opacity: 0;

  transform: translateY(10px);

  transition: var(--transition);
}

.gallery-item:hover .gallery-caption {
  opacity: 1;

  transform: translateY(0);
}

.gallery-caption span {
  width: 30px;
  height: 30px;

  display: flex;
  align-items: center;
  justify-content: center;

  border: 1px solid var(--gold);

  font-size: 9px;
}

.gallery-caption p {
  font-size: 10px;

  font-weight: 600;

  letter-spacing: 1px;
}


/* =========================================================
   BOOKING CTA
========================================================= */

.booking-cta {
  position: relative;

  padding: 90px 0;

  background: var(--charcoal);

  color: var(--white);

  overflow: hidden;
}

.cta-decoration {
  position: absolute;

  border: 1px solid rgba(199, 165, 74, 0.2);

  border-radius: 50%;
}

.cta-decoration.one {
  width: 400px;
  height: 400px;

  right: -180px;
  top: -200px;
}

.cta-decoration.two {
  width: 250px;
  height: 250px;

  left: -130px;
  bottom: -140px;
}

.cta-content {
  position: relative;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 50px;
}

.section-tag.light {
  color: var(--gold-light);
}

.cta-text h2 {
  margin-top: 15px;

  font-family: "Playfair Display", serif;

  font-size: clamp(38px, 4vw, 55px);

  line-height: 1.1;
}

.cta-text h2 em {
  color: var(--gold-light);

  font-style: normal;
}

.cta-text p {
  margin-top: 15px;

  color: rgba(255, 255, 255, 0.55);

  font-size: 13px;
}

.cta-buttons {
  display: flex;

  gap: 12px;
}

.cta-gold {
  background: var(--gold);

  color: var(--charcoal);
}

.cta-gold:hover {
  background: var(--gold-light);

  transform: translateY(-4px);
}

.cta-outline {
  color: var(--white);

  border: 1px solid rgba(255, 255, 255, 0.25);
}

.cta-outline:hover {
  background: var(--white);

  color: var(--charcoal);

  transform: translateY(-4px);
}


/* =========================================================
   FOOTER
========================================================= */

.footer {
  background: #111111;

  color: var(--white);
}

.footer-grid {
  padding: 75px 0;

  display: grid;

  grid-template-columns: 1.5fr 1fr 1fr 1.3fr;

  gap: 60px;
}

.footer-logo {
  width: 135px;

  display: block;
}

.footer-logo img {
  height: 70px;

  object-fit: contain;
}

.footer-about > p {
  max-width: 280px;

  margin-top: 18px;

  color: rgba(255, 255, 255, 0.45);

  font-size: 11px;

  line-height: 1.8;
}

.social-links {
  display: flex;

  gap: 9px;

  margin-top: 22px;
}

.social-links a {
  width: 35px;
  height: 35px;

  display: flex;
  align-items: center;
  justify-content: center;

  border: 1px solid rgba(255, 255, 255, 0.13);

  color: rgba(255, 255, 255, 0.6);

  font-size: 12px;

  transition: var(--transition);
}

.social-links a:hover {
  background: var(--gold);

  border-color: var(--gold);

  color: var(--charcoal);

  transform: translateY(-4px);
}

.footer-column {
  display: flex;
  flex-direction: column;

  gap: 13px;
}

.footer-column h3 {
  color: var(--white);

  font-family: "Playfair Display", serif;

  font-size: 18px;

  margin-bottom: 7px;
}

.footer-column a,
.footer-column p {
  color: rgba(255, 255, 255, 0.48);

  font-size: 11px;

  line-height: 1.6;

  transition: var(--transition);
}

.footer-column a:hover {
  color: var(--gold-light);

  transform: translateX(4px);
}

.contact-column a,
.contact-column p {
  display: flex;

  align-items: flex-start;

  gap: 10px;
}

.contact-column i {
  color: var(--gold);

  margin-top: 3px;

  width: 14px;
}


/* FOOTER BOTTOM */

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom-inner {
  min-height: 65px;

  display: flex;

  align-items: center;
  justify-content: space-between;

  gap: 20px;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.35);

  font-size: 9px;
}

.footer-bottom strong {
  color: var(--gold-light);
}


/* =========================================================
   FLOATING WHATSAPP
========================================================= */

.floating-whatsapp {
  position: fixed;

  right: 22px;
  bottom: 22px;

  width: 55px;
  height: 55px;

  border-radius: 50%;

  background: #1f1f1f;

  color: var(--gold-light);

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 22px;

  z-index: 900;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);

  transition: var(--transition);
}

.floating-whatsapp span {
  position: absolute;

  right: 65px;

  white-space: nowrap;

  padding: 8px 12px;

  background: var(--charcoal);

  color: var(--white);

  font-size: 10px;

  opacity: 0;

  pointer-events: none;

  transform: translateX(10px);

  transition: var(--transition);
}

.floating-whatsapp:hover {
  background: var(--gold);

  color: var(--charcoal);

  transform: translateY(-4px);
}

.floating-whatsapp:hover span {
  opacity: 1;

  transform: translateX(0);
}


/* =========================================================
   REVEAL ANIMATION
========================================================= */

.reveal {
  opacity: 0;

  transform: translateY(35px);

  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

.reveal.active {
  opacity: 1;

  transform: translateY(0);
}

.delay-1 {
  transition-delay: 0.12s;
}

.delay-2 {
  transition-delay: 0.22s;
}

.delay-3 {
  transition-delay: 0.32s;
}

.delay-4 {
  transition-delay: 0.42s;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1100px) {

  .nav-container {
    padding: 0 30px;
  }

  .nav-links {
    gap: 22px;
    margin-right: 25px;
  }

  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .feature:nth-child(3) {
    border-right: 0;
  }

  .feature:nth-child(4),
  .feature:nth-child(5) {
    margin-top: 25px;
  }

  .about-grid {
    gap: 50px;
  }

}


@media (max-width: 900px) {

  .nav-links {
    position: fixed;

    top: 88px;
    left: 0;
    right: 0;

    height: auto;

    padding: 20px;

    background: var(--white);

    flex-direction: column;

    align-items: stretch;

    gap: 0;

    margin: 0;

    border-bottom: 1px solid var(--border);

    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.08);

    transform: translateY(-120%);

    opacity: 0;

    pointer-events: none;

    transition: var(--transition);
  }

  .nav-links.show {
    transform: translateY(0);

    opacity: 1;

    pointer-events: auto;
  }

  .nav-links a {
    height: 50px;

    justify-content: center;
  }

  .nav-links a::after {
    display: none;
  }

  .menu-btn {
    display: block;
  }

  .nav-book {
    margin-left: auto;
    margin-right: 18px;
  }

  .hero-container {
    flex-direction: column;

    align-items: flex-start;
  }

  .hero-side-card {
    width: 100%;
    max-width: 420px;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-image {
    max-width: 600px;
  }

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

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

}


@media (max-width: 650px) {

  .section-padding {
    padding: 75px 0;
  }

  .nav-container {
    padding: 0 18px;
  }

  .logo,
  .logo img {
    width: 120px;
    height: 65px;
  }

  .nav-book {
    padding: 0 14px;

    min-height: 42px;
  }

  .nav-book span {
    display: none;
  }

  .nav-links {
    top: 88px;
  }

  .hero {
    min-height: auto;
  }

  .hero-container {
    padding: 75px 0 100px;
  }

  .hero h1 {
    font-size: 47px;
  }

  .hero-text {
    font-size: 14px;
  }

  .hero-buttons {
    flex-direction: column;

    width: 100%;
  }

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

  .hero-trust {
    flex-direction: column;

    gap: 10px;
  }

  .hero-side-card {
    display: none;
  }

  .features-grid {
    grid-template-columns: 1fr 1fr;

    padding: 20px 0;
  }

  .feature {
    padding: 15px 10px !important;

    border-right: 1px solid var(--border);
  }

  .feature:nth-child(even) {
    border-right: 0;
  }

  .feature:nth-child(n+3) {
    margin-top: 0;
  }

  .feature h3 {
    font-size: 10px;
  }

  .feature p {
    font-size: 8px;
  }

  .about-image {
    padding-right: 10px;
  }

  .image-frame {
    height: 380px;
  }

  .experience-box {
    left: 0;
    bottom: 30px;
  }

  .about-list {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 280px;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;

    gap: 30px;
  }

  .stat:nth-child(2) {
    border-right: 0;
  }

  .stat:nth-child(3),
  .stat:nth-child(4) {
    border-top: 1px solid rgba(255, 255, 255, 0.12);

    padding-top: 30px;
  }

  .vehicles-grid {
    grid-template-columns: 1fr;
  }

  .vehicle-heading {
    flex-direction: column;

    align-items: flex-start;

    gap: 15px;
  }

  .vehicle-image {
    height: 240px;
  }

  .gallery-grid {
    display: grid;

    grid-template-columns: 1fr;

    grid-template-rows: repeat(4, 230px);
  }

  .gallery-item.large,
  .gallery-item.wide {
    grid-row: auto;
    grid-column: auto;
  }

  .gallery-caption {
    opacity: 1;

    transform: none;
  }

  .cta-content {
    flex-direction: column;

    align-items: flex-start;
  }

  .cta-buttons {
    flex-direction: column;

    width: 100%;
  }

  .cta-buttons .btn {
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr;

    gap: 40px;
  }

  .footer-bottom-inner {
    flex-direction: column;

    justify-content: center;

    text-align: center;

    padding: 18px 0;
  }

  .floating-whatsapp {
    right: 15px;
    bottom: 15px;
  }

}




#typing-text {
    display: inline-block;
    min-height: 1.2em;
}

.typing-gold {
    color: var(--gold);
}

.typing-white {
    color: #ffffff;
}

.typing-cursor {
    color: var(--gold);
    margin-left: 3px;
    animation: blinkCursor 0.7s infinite;
}

@keyframes blinkCursor {
    0%, 50% {
        opacity: 1;
    }

    51%, 100% {
        opacity: 0;
    }
}











/* =========================================
   BOOKING PAGE
========================================= */

.booking-page-hero {
    background: var(--charcoal);
    padding: 150px 0 90px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.booking-page-hero::before {
    content: "";
    position: absolute;
    width: 450px;
    height: 450px;
    border: 1px solid rgba(201, 162, 39, 0.15);
    border-radius: 50%;
    top: -250px;
    left: -150px;
}

.booking-page-hero::after {
    content: "";
    position: absolute;
    width: 350px;
    height: 350px;
    border: 1px solid rgba(201, 162, 39, 0.12);
    border-radius: 50%;
    bottom: -220px;
    right: -100px;
}

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

.booking-hero-content .section-tag {
    color: var(--gold);
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.booking-hero-content h1 {
    color: #fff;
    font-size: clamp(40px, 6vw, 68px);
    line-height: 1.1;
    margin-bottom: 20px;
}

.booking-hero-content > p:last-child {
    max-width: 650px;
    margin: auto;
    color: rgba(255,255,255,0.72);
    font-size: 16px;
    line-height: 1.8;
}


/* =========================================
   BOOKING SECTION
========================================= */

.booking-section {
    background: var(--cream);
    padding: 100px 0;
}

.booking-container {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 70px;
    align-items: start;
}


/* =========================================
   BOOKING INFO
========================================= */

.booking-info {
    padding-top: 25px;
}

.booking-info .section-tag {
    color: var(--gold);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.booking-info h2 {
    color: var(--charcoal);
    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.2;
    margin-bottom: 22px;
}

.booking-info-text {
    color: #666;
    font-size: 15px;
    line-height: 1.8;
    max-width: 500px;
    margin-bottom: 38px;
}


/* =========================================
   BENEFITS
========================================= */

.booking-benefits {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.booking-benefit {
    display: flex;
    align-items: center;
    gap: 18px;
}

.booking-benefit-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    border-radius: 50%;
    background: rgba(201, 162, 39, 0.12);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 19px;
}

.booking-benefit h3 {
    color: var(--charcoal);
    font-size: 16px;
    margin-bottom: 4px;
}

.booking-benefit p {
    color: #777;
    font-size: 13px;
    margin: 0;
}


/* =========================================
   CONTACT BOX
========================================= */

.booking-contact-box {
    margin-top: 40px;
    padding: 20px;
    background: #fff;
    border-left: 3px solid var(--gold);
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 10px 35px rgba(0,0,0,0.06);
}

.booking-contact-icon {
    width: 45px;
    height: 45px;
    background: var(--charcoal);
    color: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.booking-contact-box span {
    display: block;
    color: #888;
    font-size: 12px;
    margin-bottom: 3px;
}

.booking-contact-box strong {
    color: var(--charcoal);
    font-size: 17px;
}


/* =========================================
   FORM CARD
========================================= */

.booking-form-card {
    background: #fff;
    padding: 45px;
    border-radius: 4px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.09);
    border-top: 4px solid var(--gold);
}

.booking-form-header {
    margin-bottom: 35px;
}

.booking-form-header .section-tag {
    color: var(--gold);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.booking-form-header h2 {
    color: var(--charcoal);
    font-size: 30px;
    margin-bottom: 5px;
}

.booking-form-header p:last-child {
    color: #888;
    font-size: 13px;
}


/* =========================================
   FORM
========================================= */

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 22px;
}

.form-group {
    margin-bottom: 22px;
}

.form-row .form-group {
    margin-bottom: 0;
}

.form-group label {
    display: block;
    color: var(--charcoal);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 8px;
}

.form-group label span {
    color: var(--gold);
}

.input-box,
.textarea-box {
    position: relative;
}

.input-box i,
.textarea-box i {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gold);
    font-size: 14px;
    z-index: 2;
}

.textarea-box i {
    top: 20px;
    transform: none;
}

.input-box input,
.input-box select,
.textarea-box textarea {
    width: 100%;
    border: 1px solid #e3e3e3;
    background: #fafafa;
    color: var(--charcoal);
    font-family: "Poppins", sans-serif;
    font-size: 13px;
    padding: 14px 15px 14px 45px;
    outline: none;
    border-radius: 2px;
    transition: 0.3s ease;
}

.textarea-box textarea {
    padding-left: 45px;
    resize: vertical;
    min-height: 110px;
}

.input-box input:focus,
.input-box select:focus,
.textarea-box textarea:focus {
    border-color: var(--gold);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.08);
}

.input-box select {
    appearance: none;
    cursor: pointer;
}


/* =========================================
   SUBMIT BUTTON
========================================= */

.booking-submit-btn {
    width: 100%;
    border: none;
    background: var(--charcoal);
    color: #fff;
    padding: 16px 25px;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: 0.3s ease;
}

.booking-submit-btn i {
    color: var(--gold);
}

.booking-submit-btn:hover {
    background: var(--gold);
    color: #fff;
    transform: translateY(-2px);
}

.booking-submit-btn:hover i {
    color: #fff;
}

.booking-note {
    text-align: center;
    color: #999;
    font-size: 11px;
    margin-top: 15px;
}

.booking-note i {
    color: var(--gold);
    margin-right: 5px;
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 900px) {

    .booking-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .booking-info {
        padding-top: 0;
    }

    .booking-form-card {
        padding: 30px;
    }
}


@media (max-width: 600px) {

    .booking-page-hero {
        padding: 120px 20px 70px;
    }

    .booking-section {
        padding: 65px 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
        margin-bottom: 0;
    }

    .form-row .form-group {
        margin-bottom: 22px;
    }

    .booking-form-card {
        padding: 24px 18px;
    }

    .booking-info h2 {
        font-size: 32px;
    }
}



/* =========================================
   KS TRAVELS - BOOKING PAGE
========================================= */

:root {
    --gold: #c9a227;
    --gold-light: #e2c45a;
    --charcoal: #171717;
    --dark: #222222;
    --white: #ffffff;
    --cream: #fbf9f3;
    --text: #555555;
    --border: #e5e5e5;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Poppins", sans-serif;
    background: var(--cream);
    color: var(--charcoal);
    overflow-x: hidden;
    overflow-y: auto;
}

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


/* =========================================
   HERO
========================================= */

.booking-page-hero {
    min-height: 430px;
    background: var(--charcoal);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    padding: 100px 20px 70px;
}

.booking-page-hero::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    border: 1px solid rgba(201, 162, 39, 0.15);
    border-radius: 50%;
    top: -300px;
    left: -180px;
}

.booking-page-hero::after {
    content: "";
    position: absolute;
    width: 450px;
    height: 450px;
    border: 1px solid rgba(201, 162, 39, 0.12);
    border-radius: 50%;
    right: -200px;
    bottom: -280px;
}

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

.booking-hero-content .section-tag {
    color: var(--gold-light);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 4px;
    margin-bottom: 15px;
}

.booking-hero-content h1 {
    color: var(--white);
    font-size: clamp(40px, 6vw, 65px);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
}

.booking-hero-content > p:last-child {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    line-height: 1.8;
    max-width: 650px;
    margin: auto;
}


/* =========================================
   BOOKING SECTION
========================================= */

.booking-section {
    padding: 100px 0;
    background: var(--cream);
}

.booking-container {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 70px;
    align-items: start;
}


/* =========================================
   LEFT INFO
========================================= */

.booking-info {
    padding-top: 20px;
}

.booking-info .section-tag {
    color: var(--gold);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.booking-info h2 {
    color: var(--charcoal);
    font-size: clamp(32px, 4vw, 47px);
    line-height: 1.2;
    margin-bottom: 22px;
}

.booking-info-text {
    color: var(--text);
    font-size: 14px;
    line-height: 1.9;
    max-width: 500px;
    margin-bottom: 40px;
}


/* =========================================
   BENEFITS
========================================= */

.booking-benefits {
    display: flex;
    flex-direction: column;
    gap: 26px;
}

.booking-benefit {
    display: flex;
    align-items: center;
    gap: 17px;
}

.booking-benefit-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    border-radius: 50%;
    background: rgba(201, 162, 39, 0.12);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.booking-benefit h3 {
    font-size: 15px;
    color: var(--charcoal);
    margin-bottom: 3px;
}

.booking-benefit p {
    color: #777;
    font-size: 12px;
}


/* =========================================
   CONTACT BOX
========================================= */

.booking-contact-box {
    margin-top: 42px;
    padding: 20px;
    background: var(--white);
    border-left: 3px solid var(--gold);
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.06);
}

.booking-contact-icon {
    width: 46px;
    height: 46px;
    min-width: 46px;
    border-radius: 50%;
    background: var(--charcoal);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
}

.booking-contact-box span {
    display: block;
    color: #888;
    font-size: 11px;
    margin-bottom: 3px;
}

.booking-contact-box strong {
    color: var(--charcoal);
    font-size: 16px;
}


/* =========================================
   FORM CARD
========================================= */

.booking-form-card {
    background: var(--white);
    padding: 45px;
    border-top: 4px solid var(--gold);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.booking-form-header {
    margin-bottom: 35px;
}

.booking-form-header .section-tag {
    color: var(--gold);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 7px;
}

.booking-form-header h2 {
    color: var(--charcoal);
    font-size: 30px;
    margin-bottom: 5px;
}

.booking-form-header p:last-child {
    color: #888;
    font-size: 12px;
}


/* =========================================
   FORM ROW
========================================= */

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 22px;
}

.form-group label {
    display: block;
    color: var(--charcoal);
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 8px;
}

.form-group label span {
    color: var(--gold);
}


/* =========================================
   INPUT
========================================= */

.input-box {
    position: relative;
}

.input-box i {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gold);
    font-size: 13px;
    pointer-events: none;
    z-index: 2;
}

.input-box input,
.input-box select {
    width: 100%;
    height: 48px;
    border: 1px solid var(--border);
    background: #fafafa;
    outline: none;
    padding: 0 15px 0 45px;
    font-family: "Poppins", sans-serif;
    font-size: 12px;
    color: var(--charcoal);
    transition: 0.3s ease;
    border-radius: 2px;
}

.input-box input:focus,
.input-box select:focus {
    border-color: var(--gold);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.08);
}

.input-box select {
    cursor: pointer;
}


/* =========================================
   TEXTAREA
========================================= */

.textarea-box {
    position: relative;
}

.textarea-box i {
    position: absolute;
    left: 16px;
    top: 18px;
    color: var(--gold);
    font-size: 13px;
}

.textarea-box textarea {
    width: 100%;
    min-height: 115px;
    resize: vertical;
    border: 1px solid var(--border);
    background: #fafafa;
    outline: none;
    padding: 14px 15px 14px 45px;
    font-family: "Poppins", sans-serif;
    font-size: 12px;
    color: var(--charcoal);
    transition: 0.3s ease;
    border-radius: 2px;
}

.textarea-box textarea:focus {
    border-color: var(--gold);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.08);
}


/* =========================================
   BOOK BUTTON
========================================= */

.booking-submit-btn {
    width: 100%;
    min-height: 52px;
    border: none;
    background: var(--charcoal);
    color: var(--white);
    font-family: "Poppins", sans-serif;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;

    transition: all 0.3s ease;
}

.booking-submit-btn i:first-child {
    color: var(--gold);
}

.booking-submit-btn i:last-child {
    color: var(--gold);
}

.booking-submit-btn:hover {
    background: var(--gold);
    transform: translateY(-2px);
}

.booking-submit-btn:hover i {
    color: var(--white);
}


/* =========================================
   NOTE
========================================= */

.booking-note {
    text-align: center;
    color: #999;
    font-size: 10px;
    margin-top: 15px;
}

.booking-note i {
    color: var(--gold);
    margin-right: 4px;
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 950px) {

    .booking-container {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .booking-info {
        padding-top: 0;
    }
}


@media (max-width: 650px) {

    .booking-page-hero {
        min-height: 380px;
        padding: 110px 20px 70px;
    }

    .booking-section {
        padding: 65px 0;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .booking-form-card {
        padding: 28px 20px;
    }

    .booking-info h2 {
        font-size: 32px;
    }

    .booking-form-header h2 {
        font-size: 26px;
    }
}



/* Booking page scroll fix */
html,
body {
    overflow-x: hidden;
    overflow-y: auto;
}


