* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  width: 100%;
  overflow-x: hidden;
}

body {
  font-family: 'Inter', sans-serif;
  background: #0a0a0a;
  color: #fff;
}

/* NAVBAR */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  height: 80px;
  padding: 0 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(0,0,0,0.9);
  z-index: 999;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.brand{
  margin-left: 10px;
  font-family: 'Playfair Display', serif;
  color:#ffffff;
  text-decoration:none;
  font-size:20px;
  font-weight:500;
}

/* stop purple visited color */
.nav-left:visited .brand{
  color:#ffffff;
}

.logo {
  background: #c9a45c;
  color: #000;
  padding: 10px 14px;
  font-weight: 700;
  border-radius: 4px;
}


.nav-links a {
  margin: 0 14px;
  color: #ddd;
  text-decoration: none;
  font-size: 15px;
}

/* ===== NAV RIGHT FIX ===== */
.nav-right {
  display: flex;
  align-items: center;
  gap: 18px;
}

/* PHONE */
.phone {
  background: #c9a45c;
  color: #000;
  padding: 10px 18px;
  border-radius: 4px;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
}

/* ===== HAMBURGER ===== */
.hamburger {
  display: none;
  width: 42px;
  height: 42px;
  background: transparent;
  border: none;
  cursor: pointer;

  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
}

.hamburger span {
  width: 26px;
  height: 2px;
  background: #fff;
  display: block;
  transition: all 0.3s ease;
}

/* ===== MOBILE ===== */
@media (max-width: 900px) {
  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }
}

/* ===== MOBILE MENU ===== */
.mobile-menu {
  position: fixed;
  top: 80px;
  left: 0;
  width: 100%;
  background: #000;
  display: none;
  flex-direction: column;
  padding: 30px;
  z-index: 9999;
}

.mobile-menu a {
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

/* ACTIVE */
.mobile-menu.active {
  display: flex;
}

/* HERO */
.hero {
  height: 100vh;
  background: url("images/hero.jpg") center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.65);
}

.hero-content {

  position: relative;
  max-width: 900px;
  padding: 0 20px;
}

@keyframes fadeUp{
  to{
    opacity:1;
    transform: translateY(0);
  }
}

.hero-content span {
  letter-spacing: 3px;
  font-size: 14px;
  color: #c9a45c;
}

.hero h1 {
        opacity:0;
  transform: translateY(40px);
  animation: fadeUp 1s ease forwards;
  font-family: 'Playfair Display', serif;
  font-size: 88px;
  margin: 20px 0;
}

.hero p {
        opacity:0;
  transform: translateY(40px);
  animation: fadeUp 1s ease forwards;
  font-size: 18px;
  line-height: 1.6;
  color: #ddd;
}

.hero-btns {
        opacity:0;
  transform: translateY(40px);
  animation: fadeUp 4s ease forwards;
  margin-top: 30px;
}

.btn {
        opacity:0;
  transform: translateY(40px);
  animation: fadeUp 4s ease forwards;
  display: inline-block;
  padding: 14px 34px;
  margin: 10px;
  text-decoration: none;
  font-weight: 500;
}

.gold {
  background: #c9a45c;
  color: #000;
}

.outline {
  border: 1px solid #c9a45c;
  color: #c9a45c;
}

/* SECTIONS */
.section {
  padding: 90px 80px;
}

.dark {
  background: #111;
}

.scroll-indicator {
        opacity:0;
  transform: translateY(40px);
  animation: fadeUp 5s ease forwards;
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 5;
  pointer-events: none;
}

.scroll-indicator span {
        opacity:0;
  transform: translateY(40px);
  animation: fadeUp 5s ease forwards;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: 3px;
  color: rgba(255,255,255,0.6);
}

.scroll-indicator .line {
        opacity:0;
  transform: translateY(40px);
  animation: fadeUp 5s ease forwards;
  width: 1px;
  height: 40px;
  background: linear-gradient(
    to bottom,
    rgba(255,255,255,0),
    rgba(255,255,255,0.7),
    rgba(255,255,255,0)
  );
  animation: scrollPulse 2s infinite;
}

@keyframes scrollPulse {
  0%   { opacity: 0; transform: translateY(-6px); }
  50%  { opacity: 1; }
  100% { opacity: 0; transform: translateY(6px); }
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: flex-start;
}

h2 {
  font-family: 'Playfair Display', serif;
  font-size: 54px;
  margin-bottom: 20px;
}

h2 span {
  color: #c9a45c;
}

blockquote {
  font-size: 22px;
  color: #bbb;
  line-height: 1.6;
}

/* CARDS */
.cards {
  display: flex;
  gap: 30px;
  margin-top: 50px;
}

.card {
  background: #151515;
  padding: 25px;
  border-radius: 8px;
}

.card img {
  width: 100%;
  border-radius: 6px;
  margin-bottom: 20px;
}

.card h3 {
  margin-bottom: 10px;
}

/* FOOTER */
footer {
  padding: 40px;
  text-align: center;
  background: #000;
  color: #aaa;
}

/* MOBILE */
@media (max-width: 900px) {
  .nav-links {
    display: none;
  }

  .hero h1 {
    font-size: 56px;
  }

  .section {
    padding: 70px 30px;
  }

  .split {
    grid-template-columns: 1fr;
  }

  .cards {
    flex-direction: column;
  }
}


/* ===============================
   CURATED EXPERIENCES â€“ WIX DITTO
================================ */

.curated-section {
  padding: 140px 100px;
  background: #0a0a0a;
}

.curated-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 10px;
  align-items: flex-start;
}

.curated-left{
max-width: 100%;


}
/* LEFT SIDE */
.curated-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 50px;
  line-height: 1.15;
  font-weight: 500;
  margin-bottom: 32px;
}

.curated-title span {
  color: #c9a45c;
}

.curated-desc {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  line-height: 1.9;
  color: #bcbcbc;
  max-width: 90%;
  margin-bottom: 48px;
}

.curated-btn {
  display: inline-block;
  padding: 16px 42px;
  background: #c9a45c;
  color: #000;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
}

/* RIGHT SIDE LIST */
.curated-right {
  display: grid;
  font-family: 'Cormorant Garamond', serif;
  grid-template-columns: 1fr 1fr;
  column-gap: 30px;
  row-gap: 40px;
  margin-top: 20px;
}

.diamond-list {
  font-family: 'Cormorant Garamond', serif;
  list-style: none;
  padding: 0;
  margin: 0;
}

.diamond-list li {
  font-family: 'Cormorant Garamond', serif;
  position: relative;
  padding-left: 26px;
  margin-bottom: 50px;
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  line-height: 1.6;
  color: #fff;
}

.diamond-list li::before {
  content: "◆";
  position: absolute;
  left: 0;
  top: 6px;
  font-size: 12px;
  color: #c9a45c;
}

/* MOBILE */
@media (max-width: 900px) {
  .curated-section {
    padding: 80px 30px;
  }

  .curated-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .curated-title {
    font-size: 42px;
  }

  .curated-right {
    grid-template-columns: 1fr;
  }
}


/* ===============================
   FLEET SECTION â€“ EXACT STYLE
================================ */

.fleet-section {
  background: #0a0a0a;
}

.fleet-wrapper {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  min-height: 100vh;
}

/* IMAGE */
.fleet-image img {
  width: 90%;
  height: 100%;
  margin-left: 3%;
  object-fit: cover;
}

/* CONTENT */
.fleet-content {
  padding: 10px 92px;
  color: #fff;
}

.fleet-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 1000;
  letter-spacing: 2.5px;
  color: #c9a45c;
  display: inline-block;
  margin-bottom: 18px;
}
.text-gradient {
  background: linear-gradient(90deg, #ffffff 0%, #c9a45c 60%, #c9a45c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: 'Playfair Display', serif;
  font-weight: 600;
}

.fleet-title {
  font-family: 'Playfair Display', serif;
  font-size: 64px;
  line-height: 1.15;
  font-weight: 500;
  margin-bottom: 28px;
}

.fleet-desc {
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  line-height: 1.9;
  color: #bcbcbc;
  max-width: 520px;
  margin-bottom: 15px;
}

/* FEATURES */
.fleet-features {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.fleet-features li {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 5px;
  padding-left: 22px;
  position: relative;
}

.fleet-features li::before {
  content: "->";
  position: absolute;
  left: 0;
  top: 2px;
  color: #c9a45c;
  font-size: 14px;
}

/* LINK */
.fleet-link {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  color: #fff;
  text-decoration: none;
  position: relative;
  padding-bottom: 6px;
}

.fleet-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 70px;
  height: 1px;
  background: #c9a45c;
}

/* ðŸ”¥ HOVER EFFECT */
.fleet-link:hover {
  color: #e0a84f;   /* ðŸ‘ˆ orange-gold tone */
}

.fleet-link:hover::after {
  background: #e0a84f;  /* underline bhi same color */
  width: 90px;          /* thora sa stretch (luxury feel) */
}

/* MOBILE */
@media (max-width: 900px) {
  .fleet-wrapper {
    grid-template-columns: 1fr;
  }

  .fleet-content {
    padding: 80px 30px;
  }

  .fleet-title {
    font-size: 42px;
  }
}


/* ===== SECTION BASE ===== */
.jetlimo-standard {
  background: #000;
  padding: 100px 6%;
  position: relative;
  color: #fff;
  font-family: 'Playfair Display', serif;
}

/* ===== TITLE ===== */
.section-title {
  text-align: center;
  font-size: 42px;
  font-weight: 500;
  margin-bottom: 30px;
}

/* ===== VERTICAL LINE ===== */
.vertical-line {
  width: 1px;
  height: 55px;
  margin: 0 auto 70px;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(201, 164, 92, 0.45),
    transparent
  );
}

/* ===== GRID ===== */
.standard-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  position: relative;
}

/* ===== HORIZONTAL CONNECTING LINE ===== */
.standard-grid::before {
  content: "";
  position: absolute;
  top: 42px;
  left: 0;
  width: 100%;
  height: 1px;
  background: rgba(201, 164, 92, 0.18);
}

/* ===== BOX ===== */
.standard-box {
  position: relative;
  padding: 80px 35px 45px;
  border: 1px solid rgba(201, 164, 92, 0.18);
  text-align: center;
  transition: transform 0.3s ease;
}

/* ===== ICON CIRCLE ===== */
.icon-circle {
  position: absolute;
  top: -32px;
  left: 50%;
  transform: translateX(-50%);
  width: 64px;
  height: 64px;
  background: #c9a45c;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

/* ===== ICON SVG ===== */
.icon-circle svg {
  width: 26px;
  height: 26px;
  transition: stroke 0.3s ease;
}

/* ===== HOVER EFFECT (IMPORTANT) ===== */
.standard-box:hover .icon-circle {
  transform: translateX(-50%) scale(1.12);
  box-shadow: 0 0 18px rgba(201, 164, 92, 0.45);
}

/* ===== HEADINGS ===== */
.standard-box h3 {
  font-size: 22px;
  margin-bottom: 15px;
}

/* ===== TEXT ===== */
.standard-box p {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 1.7;
  color: #cfcfcf;
}


@media (max-width:768px){

.standard-grid{
grid-template-columns: repeat(3,1fr);
gap:18px;
}

.standard-box{
padding:55px 12px 22px;
}

.standard-box h3{
font-size:14px;
}

.standard-box p{
font-size:12px;
line-height:1.5;
}

.icon-circle{
width:40px;
height:40px;
top:-20px;
}

.icon-circle svg{
width:16px;
height:16px;
}

}





/* ===== HERO SECTION ===== */
.chariot-hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: 
    linear-gradient(
      to bottom,
      rgba(0,0,0,0.55),
      rgba(0,0,0,0.85)
    ),
    url("https://images.unsplash.com/photo-1619767886558-efdc259cde1a");
  background-size: cover;
  background-position: center right;
  color: #fff;
  text-align: center;
  padding: 0 6%;
  font-family: 'Playfair Display', serif;
}

/* optional extra overlay softness */
.chariot-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at center,
    rgba(0,0,0,0.2),
    rgba(0,0,0,0.8)
  );
}

/* ===== CONTENT ===== */
.chariot-content {
  position: relative;
  max-width: 850px;
  z-index: 2;
}

.chariot-content h1 {
  font-size: 58px;
  font-weight: 500;
  margin-bottom: 25px;
  letter-spacing: 0.5px;
}

.chariot-content p {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  line-height: 1.7;
  color: #d6d6d6;
  margin-bottom: 45px;
}

/* ===== BUTTONS ===== */
.chariot-buttons {
  display: flex;
  gap: 25px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  background: #c9a45c;
  color: #000;
  padding: 15px 34px;
  font-size: 16px;
  font-weight: 1000;
  font-family: 'Inter', sans-serif;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: #bcb6aa;
  transform: translateY(-2px);
}

.btn-outline {
  border: 1px solid rgba(255,255,255,0.4);
  color: #fff;
  padding: 15px 34px;
  font-size: 16px;
  font-family: 'Inter', sans-serif;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  border-color: #e4e1d9;
  color: #9b958a;
}


.footer {
  background: #000;
  color: #ccc;
  padding: 80px 0 30px;
  font-family: 'Playfair Display', serif;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 60px;
  padding: 0 20px;
}

.footer h4 {
  color: #fff;
  font-size: 22px;
  margin-bottom: 20px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.logo-box {
  background: #d4b06a;
  color: #000;
  font-weight: bold;
  padding: 10px 14px;
  border-radius: 6px;
}

.logo-text {
  font-size: 22px;
  color: #fff;
}

.brand p {
  font-size: 15px;
  line-height: 1.7;
}

.footer-links,
.contact-list {
  list-style: none;
  padding: 0;
}

.footer-links li,
.contact-list li {
  margin-bottom: 12px;
}

.footer-links a,
.contact-list a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover,
.contact-list a:hover {
  color: #d4b06a;
}

.contact-list .static {
  color: #aaa;
  cursor: default;
}

.service-text {
  font-size: 15px;
  line-height: 1.7;
  color: #ccc;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 60px;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  font-size: 14px;
  color: #888;
}

/* Responsive */
@media (max-width: 900px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .footer-container {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}

/* ===== FADE UP ===== */
.fade-up{
opacity:0;
transform:translateY(60px);
transition:all 0.8s ease;
}

.fade-up.show{
opacity:1;
transform:translateY(0);
}

/* ===== FADE LEFT ===== */
.fade-left{
opacity:0;
transform:translateX(-60px);
transition:all 0.8s ease;
}

.fade-left.show{
opacity:1;
transform:translateX(0);
}

/* ===== FADE RIGHT ===== */
.fade-right{
opacity:0;
transform:translateX(60px);
transition:all 0.8s ease;
}

.fade-right.show{
opacity:1;
transform:translateX(0);
}

.luxury-section {
  background: radial-gradient(circle at top, #141414 0%, #000 70%);
  padding: 120px 0;
  color: #fff;
  font-family: "Playfair Display", serif;
}

.luxury-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: flex-start;
}

/* LEFT SIDE */
.luxury-left h2 {
  font-size: 56px;
  line-height: 1.1;
  margin-bottom: 20px;
}

.luxury-left h2 span {
  color: #cfae70;
  font-style: italic;
}

.luxury-line {
  width: 60px;
  height: 3px;
  background: #cfae70;
  margin: 20px 0 30px;
}

.luxury-text {
  font-size: 22px;
  line-height: 1.8;
  color: #cfcfcf;
  max-width: 420px;
}

.phone-line{
margin-top: 40px;


}
.phone-link {
  color: inherit;          /* same color as text */
  font-family: inherit;    /* same font */
  font-size: inherit;      /* same size */
  font-weight: inherit;    /* same weight */
  text-decoration: none;   /* no underline */
  letter-spacing: normal;
}

.phone-link:hover,
.phone-link:focus,
.phone-link:active {
  color: inherit;
  text-decoration: none;
}
/* RIGHT SIDE */
.luxury-right blockquote {
  font-size: 30px;
  line-height: 1.7;
  color: #bfbfbf;
  margin-bottom: 50px;
}

/* CARDS */
.luxury-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.luxury-card {
  border: 1px solid rgba(207, 174, 112, 0.25);
  padding: 35px;
  transition: all 0.35s ease;
}

.luxury-card:hover {
  border-color: #cfae70;
  transform: translateY(-6px);
}

.luxury-card .icon {
  font-size: 26px;
  color: #cfae70;
  margin-bottom: 20px;
}

.luxury-card h4 {
  font-size: 20px;
  margin-bottom: 12px;
}

.luxury-card p {
  font-size: 15px;
  line-height: 1.7;
  color: #cfcfcf;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .luxury-container {
    grid-template-columns: 1fr;
  }

  .luxury-cards {
    grid-template-columns: 1fr;
  }

  .luxury-left h2 {
    font-size: 42px;
  }
}


.signature-services {
  background: #0b0b0b;
  padding: 90px 80px;
  color: #fff;
  font-family: "Playfair Display", serif;
}

/* Header */
.ss-header {
  margin-bottom: 60px;
}

.ss-eyebrow {
  display: block;
  font-size: 13px;
  letter-spacing: 2px;
  color: #cfae70;
  margin-bottom: 12px;
  font-family: "Inter", sans-serif;
}

.ss-title-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.ss-title-row h2 {
  font-size: 64px;
  font-weight: 500;
  margin: 0;
}

.view-all {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  color: #fff;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.4);
  padding-bottom: 4px;
  transition: color 0.3s ease, border-color 0.3s ease;
}

.view-all span {
  margin-left: 6px;
}

.view-all:hover {
  color: #cfae70;
  border-color: #cfae70;
}

/* Grid */
.ss-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

/* Card */
.ss-card {
  text-decoration: none;
  color: inherit;
  background: #111;
  border-radius: 14px;
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.ss-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.6);
}

/* Image */
.ss-img {
  width: 100%;
  height: 260px;
  overflow: hidden;
}

.ss-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.ss-card:hover img {
  transform: scale(1.05);
}

/* Content */
.ss-content {
  padding: 26px 26px 30px;
}

.ss-content h3 {
  font-size: 24px;
  margin: 0 0 10px;
  font-weight: 500;
}

.ss-content p {
  font-family: "Inter", sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: #cfcfcf;
  margin: 0;
}

/* Responsive */
@media (max-width: 1100px) {
  .ss-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 700px) {
  .signature-services {
    padding: 70px 24px;
  }

  .ss-title-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .ss-title-row h2 {
    font-size: 44px;
  }

  .ss-grid {
    grid-template-columns: 1fr;
  }
}




















/* ===== SERVICES HERO (WIX STYLE) ===== */
.services-hero {
  position: relative;
  height: 85vh;
  width: 100%;
  background-image: url("images/services-hero.png"); /* <-- apni image */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  display: flex;
  align-items: center;
  justify-content: center;
}

/* Dark overlay */
.services-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(0, 0, 0, 0.65),
    rgba(0, 0, 0, 0.65)
  );
}

/* Text container */
.services-hero-content {
  position: relative;
  text-align: center;
  max-width: 900px;
  padding: 0 20px;
}

/* Heading */
.services-hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: 72px;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 18px;
}

/* Subtitle */
.services-hero-content p {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #e5e5e5;
  line-height: 1.6;
}
/* ===== SERVICES SECTION ===== */

.services-section{
padding:100px 8%;
background:#0b0b0b;
}

.services-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
}


/* ===== CARD ===== */

.service-card{
background:#1d1c1c;
border-radius:8px;
border:1px solid #2a2a2a;
padding:35px;
transition:all .35s ease;
position:relative;
}

.service-card:hover{
transform:translateY(-8px);
border-color:#d4af37;
box-shadow:0 15px 35px rgba(0,0,0,0.6);
}


/* ===== ICON ===== */

.service-icon{
width:46px;
height:46px;
border-radius:50%;
background:rgba(212,175,55,0.18);
color:#d4af37;
display:flex;
align-items:center;
justify-content:center;
font-size:18px;
margin-bottom:18px;
}


/* ===== TITLE ===== */

.service-content h3{
font-family:'Playfair Display',serif;
font-size:24px;
margin-bottom:12px;
color:#fff;
}


/* ===== TEXT ===== */

.service-content p{
font-size:15px;
line-height:1.6;
color:#bbb;
margin-bottom:18px;
}


/* ===== LIST ===== */

.service-content ul{
list-style:none;
padding:0;
margin:0;
}

.service-content ul li{
position:relative;
padding-left:18px;
margin-bottom:8px;
color:#ddd;
font-size:14px;
}

.service-content ul li::before{
content:"◆";
position:absolute;
left:0;
top:2px;
color:#d4af37;
font-size:10px;
}


/* ===== SPECIAL CARD ===== */

.service-card.special{
border:2px solid #d4af37;
}

.badge{
position:absolute;
top:15px;
right:15px;
background:#d4af37;
color:#000;
font-size:11px;
padding:5px 10px;
border-radius:4px;
font-weight:600;
}


/* ===== BABY SEAT ===== */

.baby-seat{
background:#1f1f1f;
margin:80px 8%;
padding:70px 40px;
border-radius:6px;
text-align:center;
}

.baby-seat h2{
font-family:'Playfair Display',serif;
font-size:38px;
color:#fff;
}

.baby-seat p{
margin:18px auto 30px;
max-width:650px;
color:#ccc;
}

.cta-btn{
background:#d4af37;
color:#000;
padding:14px 32px;
text-decoration:none;
font-weight:600;
border-radius:4px;
display:inline-block;
}


/* ===== RESPONSIVE ===== */

@media (max-width:1100px){

.services-grid{
grid-template-columns:repeat(2,1fr);
}

}

@media (max-width:700px){

.services-grid{
grid-template-columns:1fr;
}

.service-card{
padding:28px;
}

}





































/* =========================
   CONTACT PAGE HERO SECTION
   ========================= */

.contact-hero {
  position: relative;
  width: 100%;
  min-height: 75vh;
  background-image: url("images/hero-bg.png"); /* replace with your image */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  display: flex;
  align-items: center;
  justify-content: center;
}

/* Dark luxury overlay */
.contact-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  z-index: 1;
}

/* Content wrapper */
.contact-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: 20px;
}

/* Heading */
.contact-hero-content h1 {
  font-size: 64px;
  font-weight: 500;
  letter-spacing: 2px;
  margin-bottom: 18px;
  color: #ffffff;
}

/* Subtitle */
.contact-hero-content p {
  font-size: 18px;
  line-height: 1.6;
  color: #d0d0d0;
}

/* =========================
   RESPONSIVE
   ========================= */

@media (max-width: 1024px) {
  .contact-hero-content h1 {
    font-size: 52px;
  }
}

@media (max-width: 768px) {
  .contact-hero {
    min-height: 65vh;
  }

  .contact-hero-content h1 {
    font-size: 42px;
  }

  .contact-hero-content p {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .contact-hero-content h1 {
    font-size: 34px;
  }
}


/* =========================
   CONTACT INFO CARDS
   ========================= */

.contact-info-section {
  background: #0b0b0b;
  padding: 80px 6%;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

/* Card */
.contact-card {
  background: #1a1a1a;
  border-radius: 5px;
  padding: 40px 20px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-card:hover {
  transform: translateY(-6px);
  border-color: #928046;
}

/* Icon */
.contact-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.15);
  color: #928046;
  font-size: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Title */
.contact-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: #ffffff;
}

/* Text */
.contact-card p {
  font-size: 16px;
  color: #bfbfbf;
  line-height: 1.6;
}

/* =========================
   RESPONSIVE
   ========================= */

@media (max-width: 1024px) {
  .contact-info-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .contact-info-grid {
    grid-template-columns: 1fr;
  }
}


/* =========================
   GET IN TOUCH SECTION
   ========================= */

.get-in-touch {
  background: #0b0b0b;
  padding: 100px 6%;
}

.git-container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
}

/* LEFT */
.git-left h2 {
  font-size: 48px;
  margin-bottom: 40px;
}

.git-left h4 {
  font-size: 22px;
  margin-top: 35px;
  margin-bottom: 12px;
}

.git-left p {
  color: #bfbfbf;
  line-height: 1.7;
  font-size: 19px;
  margin-bottom: 10px;
}

.git-highlight {
  color: #928046;
  font-size: 18px;
  margin-bottom: 25px;
}
/* =========================
   GOLD BULLET DOTS
   ========================= */

/* LEFT SERVICE AREA LIST */
.git-left ul {
  list-style: none;
  padding-left: 0;
}

.git-left ul li {
  position: relative;
  padding-left: 18px;
  color: #bfbfbf;
  margin-bottom: 8px;
}

.git-left ul li::before {
  content: "->";
  position: absolute;
  left: 0;
  color: #928046; /* GOLD */
  font-size: 20px;
  line-height: 1;
}

/* RIGHT CARD LIST */
.git-card ul {
  list-style: none;
  padding-left: 0;
}

.git-card ul li {
  position: relative;
  padding-left: 18px;
  color: #bfbfbf;
  margin-bottom: 8px;
}

.git-card ul li::before {
  content: "->";
  position: absolute;
  left: 0;
  color: #928046; /* GOLD */
  font-size: 20px;
  line-height: 1;
}
/* RIGHT */
.git-image img {
  width: 100%;
  border-radius: 5px;
  margin-bottom: 35px;
}

/* CARDS */
.git-card {
  background: #1a1a1a;
  border-radius: 5px;
  padding: 35px;
  margin-bottom: 30px;
  border: 1px solid rgba(255,255,255,0.05);
}

.git-card h3 {
  font-size: 26px;
  margin-bottom: 12px;
}

.git-card p {
  color: #bfbfbf;
  margin-bottom: 20px;
  font-size: 19px;
  line-height: 1.6;
}



/* BUTTON */
.git-btn {
  display: inline-block;
  background: #928046;
  color: #000;
  padding: 14px 30px;
  border-radius: 2px;
  text-decoration: none;
  font-weight: 600;
}

.git-btn:hover {
  background: #928046;
}

/* =========================
   RESPONSIVE
   ========================= */

@media (max-width: 1024px) {
  .git-container {
    grid-template-columns: 1fr;
  }

  .git-left h2 {
    font-size: 40px;
  }
}

/* =========================
   FAQ SECTION
   ========================= */

.faq-section {
  background: #0b0b0b;
  padding: 100px 6%;
}

.faq-container {
  max-width: 1200px;
  margin: auto;
}

/* HEADER */
.faq-header {
  text-align: center;
  margin-bottom: 60px;
}

.faq-header h2 {
  font-size: 46px;
  margin-bottom: 12px;
}

.faq-header p {
  color: #bfbfbf;
  font-size: 18px;
}

/* GRID */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

/* CARD */
.faq-card {
  background: #1a1a1a;
  border-radius: 14px;
  padding: 35px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}

.faq-card:hover {
  transform: translateY(-5px);
  border-color: #d4af37;
}

/* QUESTION */
.faq-card h4 {
  font-size: 22px;
  margin-bottom: 14px;
  color: #ffffff;
}

/* ANSWER */
.faq-card p {
  color: #bfbfbf;
  line-height: 1.7;
  font-size: 16px;
}

/* =========================
   RESPONSIVE
   ========================= */

@media (max-width: 768px) {
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .faq-header h2 {
    font-size: 38px;
  }
}



































/* ===== BOOKING HERO ===== */
.booking-hero {
  position: relative;
  height: 85vh;
  background: url("images/booking-hero.png") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
}

.hero-content {
  position: relative;
  text-align: center;
  max-width: 900px;
  padding: 0 20px;
}

.hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(42px, 6vw, 80px);
  font-weight: 600;
  color: #ffffff;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.hero-content p {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  color: #dcdcdc;
  line-height: 1.6;
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
  .booking-hero {
    height: 70vh;
  }

  .hero-content p {
    font-size: 16px;
  }
}

/* ===== BOOKING SECTION ===== */
.booking-section {
  padding: 80px 20px;
  background: #0b0b0b;
}

.booking-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
}

/* FORM */
.booking-form {
  background: #1a1a1a;
  padding: 40px;
  border-radius: 14px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.form-group label {
  color: #fff;
  margin-bottom: 6px;
  font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: #262626;
  border: 1px solid #333;
  padding: 14px;
  border-radius: 8px;
  color: #fff;
  font-size: 14px;
}

.form-group textarea {
  resize: none;
  height: 120px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #888;
}

.submit-btn {
  width: 100%;
  padding: 16px;
  background: #caa96c;
  border: none;
  color: #000;
  font-weight: 600;
  font-size: 16px;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.3s;
}

.submit-btn:hover {
  background: #b89657;
}

.form-note {
  margin-top: 15px;
  font-size: 13px;
  color: #aaa;
}

/* RIGHT BOX */
.booking-info {
  background: #1a1a1a;
  padding: 30px;
  border-radius: 14px;
  height: fit-content;
}

.booking-info h3 {
  font-family: 'Playfair Display', serif;
  color: #fff;
  margin-bottom: 10px;
}

.booking-info p {
  color: #aaa;
  font-size: 14px;
  margin-bottom: 20px;
}

.call-btn {
  display: block;
  background: #caa96c;
  color: #000;
  text-align: center;
  padding: 14px;
  border-radius: 10px;
  font-weight: 600;
  margin-bottom: 10px;
  text-decoration: none;
}

.booking-info span {
  color: #aaa;
  font-size: 13px;
  text-align: center;
  display: block;
}

/* MOBILE */
@media (max-width: 900px) {
  .booking-container {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}

/* ===== POPUP ===== */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.75);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.popup-box {
  background: #1a1a1a;
  padding: 40px;
  border-radius: 16px;
  text-align: center;
  max-width: 420px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}

.popup-box h2 {
  font-family: 'Playfair Display', serif;
  color: #caa96c;
  margin-bottom: 10px;
}

.popup-box p {
  color: #ccc;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 25px;
}

.popup-box button {
  background: #caa96c;
  color: #000;
  border: none;
  padding: 12px 26px;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
}

.popup-box button:hover {
  background: #b89657;
}

/* =========================
   GLOBAL MOBILE FIXES
========================= */
@media (max-width: 768px) {

  body {
    overflow-x: hidden;
  }

  section {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  h1 {
    font-size: 34px !important;
    line-height: 1.2;
  }

  h2 {
    font-size: 26px !important;
  }

  p {
    font-size: 15px;
  }

  button,
  .submit-btn,
  .call-btn {
    width: 100%;
    font-size: 16px;
    padding: 14px;
  }
}


































.about-hero{
  position: relative;
  height: 90vh;
  width: 100%;
  overflow: hidden;
}

.about-hero-img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-hero-overlay{
  position: absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background: rgba(0,0,0,0.55);
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  text-align:center;
  color:white;
}

.about-hero-overlay h1{
  font-size:60px;
  margin-bottom:15px;
}

.about-hero-overlay p{
  font-size:20px;
  color:#ddd;
}
.about-luxury{
background:#000;
padding:100px 8%;
color:white;
}

.about-container{
display:flex;
align-items:center;
justify-content:space-between;
gap:60px;
}

.about-text{
flex:1;
}

.about-text h2{
font-family: 'Playfair Display', serif;
font-size: 64px;
line-height: 1.1;
letter-spacing: 1px;
color: #fff;
}

.about-text p{
color:#ccc;
margin-bottom:20px;
line-height:1.7;
}

.about-image{
flex:1;
}

.about-image img{
width:100%;
border-radius:12px;
}

.core-values{
background:#000;
color:white;
padding:100px 8%;
}

.values-header{
text-align:center;
margin-bottom:70px;
}

.values-header h2{
font-family:'Playfair Display', serif;
font-size:52px;
margin-bottom:15px;
}

.values-header p{
color:#bbb;
font-size:18px;
}

.values-container{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:60px;
}

.value-box{
display:flex;
align-items:flex-start;
gap:20px;
}

.icon{
width:60px;
height:60px;
background:#2b2418;
color:#d4af37;
display:flex;
align-items:center;
justify-content:center;
font-size:26px;
border-radius:50%;
flex-shrink:0;
}

.value-box h3{
font-family:'Playfair Display', serif;
font-size:26px;
margin-bottom:10px;
}

.value-box p{
color:#bbb;
line-height:1.6;
}

.why-jetlimo{
background:#000;
padding:100px 8%;
color:white;
}

.why-container{
display:flex;
align-items:center;
gap:60px;
}

.why-image{
flex:1;
}

.why-content{
flex:1;
}

.why-image img{
width:100%;
height:500px;
object-fit:cover;
border-radius:12px;
}


.why-content h2{
font-family:'Playfair Display', serif;
font-size:56px;
margin-bottom:30px;
}

.why-content ul{
list-style:none;
padding:0;
}

.why-content ul li{
position:relative;
padding-left:25px;
margin-bottom:18px;
color:#cfcfcf;
font-size:17px;
line-height:1.6;
}

.why-content ul li::before{
content:"";
width:8px;
height:8px;
background:#c9a15a;
border-radius:50%;
position:absolute;
left:0;
top:10px;
}

.cta-section{
background:#000;
padding:120px 20px;
text-align:center;
color:white;
}

.cta-container{
max-width:900px;
margin:auto;
}

.cta-container h2{
font-family:'Playfair Display', serif;
font-size:56px;
margin-bottom:20px;
}

.cta-container p{
color:#bfbfbf;
font-size:18px;
margin-bottom:40px;
}

.cta-buttons{
display:flex;
justify-content:center;
gap:20px;
}

.btn-primary{
background:#c9a15a;
color:#000;
padding:15px 35px;
text-decoration:none;
border-radius:6px;
font-weight:600;
}

.btn-outline{
border:1px solid #c9a15a;
color:#c9a15a;
padding:15px 35px;
text-decoration:none;
border-radius:6px;
}

.btn-primary:hover{
background:#a7a59e;
}

.btn-outline:hover{
background:#afaca6;
color:black;
}











































/* ===== NAVBAR DROPDOWN ===== */

.dropdown{
position:relative;
list-style:none;
}

/* Cities arrow */

.dropdown > a::after{
content:"▾";
margin-left:6px;
font-size:12px;
color:#c9a15a;
transition:0.3s;
}

/* rotate arrow on hover */

.dropdown:hover > a::after{
transform:rotate(180deg);
}

/* dropdown menu */

.dropdown-menu{
position:absolute;
top:100%;
left:0;
background:#0b0b0b;
min-width:200px;
padding:10px 0;
display:none;
border:1px solid rgba(255,255,255,0.05);
box-shadow:0 10px 30px rgba(0,0,0,0.6);
z-index:1000;
}

/* show dropdown */

.dropdown:hover .dropdown-menu{
display:block;
}

/* dropdown items */

.dropdown-menu li{
list-style:none;
}

/* dropdown links */

.dropdown-menu a{
display:block;
padding:10px 20px;
color:#ddd;
text-decoration:none;
font-size:15px;
transition:0.3s;
}

/* hover effect */

.dropdown-menu a:hover{
background:#111;
color:#c9a15a;
padding-left:25px;
}
.mobile-dropdown{
width:100%;
}

.mobile-submenu{
display:none;
background:#0b0b0b;
padding-left:20px;
}

.mobile-dropdown:hover .mobile-submenu{
display:block;
}

.mobile-submenu a{
display:block;
padding:10px 0;
color:#bbb;
font-size:14px;
}

.mobile-submenu a:hover{
color:#c9a15a;
}

.mobile-dropdown > a{
display:block;
padding:15px 0;
color:#fff;
text-decoration:none;
border-bottom:1px solid rgba(255,255,255,0.1);
}












.city-section{
background:#0b0b0b;
padding:120px 20px;
}

.city-container{
max-width:1100px;
margin:auto;
}

.city-section h1{
color:#fff;
font-size:48px;
font-weight:500;
margin-bottom:40px;
}

.city-section p{
color:#bdbdbd;
font-size:17px;
line-height:1.8;
margin-bottom:25px;
}

.city-price{
margin-top:60px;
font-size:42px;
color:#c9a15a;
font-weight:500;
}


/* hero */

.city-hero{
background:
linear-gradient(rgba(0,0,0,0.75), rgba(0,0,0,0.75)),
url("images/city-bg.png");

background-size:cover;
background-position:center;
background-repeat:no-repeat;

padding:160px 20px;
text-align:center;
}

.city-hero h1{
color:white;
font-size:48px;
margin-bottom:20px;
}

.city-hero p{
color:#ccc;
max-width:700px;
margin:auto;
font-size:18px;
}

/* cities section */

.cities-section{
background:#0b0b0b;
padding:100px 20px;
}

.cities-container{
max-width:1000px;
margin:auto;
}

.cities-section h2{
color:white;
font-size:36px;
margin-bottom:40px;
}

.cities-list{
list-style:none;
padding:0;
}

.cities-list li{
margin-bottom:15px;
}

.cities-list a{
color:#c9a15a;
text-decoration:none;
font-size:18px;
transition:0.3s;
}

.cities-list a:hover{
padding-left:10px;
color:white;
}






























/* HERO */

.fleet-hero{
background-image: url("images/hero-bg.png");
background-size: cover;
background-position: center;
background-repeat: no-repeat;

padding:120px 8%;
text-align:center;
position:relative;
color:#fff;
}

.fleet-hero::before{
content:"";
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.65);
}

.fleet-hero .container{
position:relative;
z-index:2;
}

.fleet-hero h1{
font-size:48px;
margin-bottom:20px;
}

.fleet-hero p{
max-width:700px;
margin:auto;
font-size:18px;
color:#ddd;
}


/* FLEET SECTION */
/* ===== FLEET SECTION ===== */

.fleet-section{
padding:100px 5%;
background:#0b0b0b;
color:#fff;
}

/* FILTER */

.fleet-filter{
text-align:center;
margin-bottom:60px;
font-size:15px;
letter-spacing:1px;
}

.fleet-filter a{
margin:0 12px;
color:#bbb;
text-decoration:none;
cursor:pointer;
}

.fleet-filter a:hover,
.fleet-filter .active{
color:#3bb3c3;
}


/* GRID */

.fleet-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:40px;
}


/* CARD */

.fleet-card{
background:#111;
border-radius:8px;
padding:30px;
transition:0.3s;
}

.fleet-card:hover{
transform:translateY(-6px);
box-shadow:0 10px 30px rgba(0,0,0,0.5);
}


/* IMAGE */

.fleet-card img{
width:100%;
height:160px;
object-fit:contain;
margin-bottom:20px;
}


/* TITLE */

.fleet-card h3{
font-size:18px;
margin-bottom:20px;
color:#fff;
}


/* FEATURES */

.fleet-card ul{
list-style:none;
padding:0;
margin-bottom:25px;
}

.fleet-card li{
font-size:14px;
color:#ccc;
margin-bottom:8px;
}


/* BUTTON */

.fleet-btn{
display:inline-block;
padding:12px 28px;
background:#3bb3c3;
color:white;
text-decoration:none;
font-size:14px;
border-radius:4px;
transition:0.3s;
}

.fleet-btn:hover{
background:#2c96a3;
}


/* ===== RESPONSIVE ===== */

@media(max-width:1100px){

.fleet-grid{
grid-template-columns:repeat(3,1fr);
}

}

@media(max-width:800px){

.fleet-grid{
grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:500px){

.fleet-grid{
grid-template-columns:1fr;
}

}








.whatsapp-float{
position:fixed;
bottom:25px;
right:25px;
width:60px;
height:60px;
background:#25D366;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
box-shadow:0 6px 18px rgba(0,0,0,0.4);
z-index:9999;
transition:0.3s;
}

.whatsapp-float:hover{
transform:scale(1.08);
}

.whatsapp-float img{
width:32px;
}