/* =====================================================
   RK TOURS & TRAVELS — style.css
   Color Palette: Deep Teal #0a2e2e, Gold #c9a84c, Dark #0d1a1a
   ===================================================== */

/* ---- CSS Variables ---- */
:root {
  --gold: #c9a84c;
  --gold-light: #e8c96a;
  --gold-dark: #a07c2e;
  --teal: #0a2e2e;
  --teal-mid: #0e3d3d;
  --teal-light: #134040;
  --dark: #0d1a1a;
  --darker: #061212;
  --white: #ffffff;
  --off-white: #f7f3ec;
  --text-light: #ccc9be;
  --text-muted: #8a8678;
  --font-display: 'Playfair Display', serif;
  --font-body: 'Raleway', sans-serif;
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow: 0 8px 32px rgba(0,0,0,0.25);
  --shadow-gold: 0 4px 20px rgba(201,168,76,0.3);
}

/* ---- Base Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--darker);
  color: var(--off-white);
  overflow-x: hidden;
  line-height: 1.7;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }

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

/* =====================================================
   PRELOADER
   ===================================================== */
#preloader {
  position: fixed; inset: 0;
  background: var(--darker);
  z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
#preloader.hidden { opacity: 0; visibility: hidden; }
.preloader-inner { text-align: center; }
.car-loader {
  font-size: 3rem; color: var(--gold);
  animation: carMove 1.2s ease-in-out infinite alternate;
  display: inline-block;
}
.preloader-inner p {
  font-family: var(--font-display); color: var(--gold);
  font-size: 1.2rem; letter-spacing: 4px; margin-top: 1rem;
  animation: pulse 1.5s ease infinite;
}
@keyframes carMove { 0% { transform: translateX(-30px); } 100% { transform: translateX(30px); } }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }

/* =====================================================
   NAVBAR
   ===================================================== */
#mainNav {
  background: transparent;
  padding: 18px 0;
  transition: var(--transition);
  z-index: 1000;
}
#mainNav.scrolled {
  background: rgba(6, 18, 18, 0.97);
  backdrop-filter: blur(10px);
  padding: 10px 0;
  box-shadow: 0 2px 20px rgba(0,0,0,0.4);
}
.navbar-brand { font-family: var(--font-display); }
.logo-rk {
  font-family: var(--font-display);
  font-size: 1.6rem; font-weight: 900;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 2px;
}
.brand-text {
  color: var(--white); font-size: 1rem; font-weight: 600;
  letter-spacing: 1px; text-transform: uppercase;
}
.nav-link {
  color: rgba(255,255,255,0.85) !important;
  font-size: 0.85rem; font-weight: 500;
  letter-spacing: 0.5px; text-transform: uppercase;
  padding: 8px 14px !important;
  position: relative; transition: var(--transition);
}
.nav-link::after {
  content: ''; 
  /* display: none; */
  position: absolute; 
  bottom: 4px; 
  left: 50%; 
  right: 50%;
  height: 2px; 
  background: var(--gold);
  transition: var(--transition); border-radius: 2px;
}
.nav-link:hover::after, .nav-link.active::after { left: 14px; right: 14px; }
.nav-link:hover { color: var(--gold) !important; }
.btn-book {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark)) !important;
  color: var(--dark) !important; border-radius: 25px !important;
  padding: 8px 20px !important; font-weight: 700 !important;
}
.btn-book:hover { transform: translateY(-2px); box-shadow: var(--shadow-gold); }
.navbar-toggler { border: 1px solid var(--gold); }
.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='rgba%28201, 168, 76, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* =====================================================
   HERO SECTION
   ===================================================== */
.hero-section {
  min-height: 100vh;
  background: url('https://images.unsplash.com/photo-1477587458883-47145ed94245?w=1800&q=80') center/cover no-repeat;
  position: relative; display: flex; align-items: center;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(6,18,18,0.92) 0%, rgba(10,46,46,0.75) 60%, rgba(6,18,18,0.85) 100%);
}
.hero-particles { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.hero-section .container { position: relative; z-index: 2; padding-top: 100px; }
.hero-badge {
  display: inline-flex; align-items: center;
  background: rgba(201,168,76,0.15); border: 1px solid rgba(201,168,76,0.4);
  color: var(--gold); padding: 8px 18px; border-radius: 30px;
  font-size: 0.8rem; font-weight: 600; letter-spacing: 1px; text-transform: uppercase;
  margin-bottom: 1.5rem;
  animation: fadeInDown 0.8s ease forwards;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 900; line-height: 1.1;
  color: var(--white); margin-bottom: 1.5rem;
  animation: fadeInUp 0.8s ease 0.2s both;
}
.gold-text {
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-subtitle {
  font-size: 1.1rem; color: var(--text-light); max-width: 560px;
  line-height: 1.8; animation: fadeInUp 0.8s ease 0.4s both;
}
.hero-btns { animation: fadeInUp 0.8s ease 0.6s both; }
.hero-stats { animation: fadeInUp 0.8s ease 0.8s both; }
.stat-item { display: flex; flex-direction: column; }
.stat-num {
  font-family: var(--font-display); font-size: 2.2rem; font-weight: 900;
  color: var(--gold); line-height: 1;
}
.stat-label { font-size: 0.75rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; }
.hero-scroll-indicator {
  position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
  z-index: 2;
}
.hero-scroll-indicator a {
  color: var(--gold); font-size: 1.4rem;
  animation: bounce 1.5s ease infinite;
  display: block;
}
@keyframes bounce { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(8px); } }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInDown { from { opacity: 0; transform: translateY(-20px); } to { opacity: 1; transform: translateY(0); } }

/* =====================================================
   BUTTONS
   ===================================================== */
.btn-gold {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 50%, var(--gold-dark) 100%);
  color: var(--dark); font-weight: 700; font-size: 0.9rem;
  padding: 12px 28px; border-radius: 4px; border: none;
  letter-spacing: 0.5px; transition: var(--transition);
  position: relative; overflow: hidden;
}
.btn-gold::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold-light));
  opacity: 0; transition: var(--transition);
}
.btn-gold:hover { transform: translateY(-3px); box-shadow: var(--shadow-gold); color: var(--dark); }
.btn-gold:hover::before { opacity: 1; }
.btn-gold > * { position: relative; }
.btn-gold-sm {
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
  color: var(--dark); font-weight: 700; font-size: 0.8rem;
  padding: 8px 18px; border-radius: 3px; border: none;
  transition: var(--transition); display: inline-block;
}
.btn-gold-sm:hover { transform: translateY(-2px); box-shadow: var(--shadow-gold); color: var(--dark); }
.btn-outline-gold {
  background: transparent; color: var(--gold);
  border: 2px solid var(--gold); padding: 12px 28px; border-radius: 4px;
  font-weight: 600; font-size: 0.9rem; transition: var(--transition);
}
.btn-outline-gold:hover { background: var(--gold); color: var(--dark); transform: translateY(-3px); }
.btn-whatsapp {
  background: #25D366; color: var(--white);
  border: none; padding: 12px 28px; border-radius: 4px;
  font-weight: 700; font-size: 0.9rem; transition: var(--transition);
}
.btn-whatsapp:hover { background: #1ebe5a; transform: translateY(-3px); color: var(--white); box-shadow: 0 8px 20px rgba(37,211,102,0.3); }

/* =====================================================
   TICKER STRIP
   ===================================================== */
.ticker-strip {
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-dark));
  padding: 10px 0; overflow: hidden; white-space: nowrap;
}
.ticker-content {
  display: inline-block;
  animation: ticker 30s linear infinite;
}
.ticker-content span {
  color: var(--dark); font-weight: 700; font-size: 0.85rem;
  text-transform: uppercase; letter-spacing: 1px; margin-right: 40px;
}
@keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* =====================================================
   SECTION COMMONS
   ===================================================== */
.section-pad { padding: 90px 0; }
.bg-dark-section { background: var(--dark); }
.section-label {
  display: inline-block; color: var(--gold);
  font-size: 0.8rem; font-weight: 700; letter-spacing: 3px; text-transform: uppercase;
  margin-bottom: 0.8rem;
  position: relative; padding-left: 30px;
}
.section-label::before {
  content: ''; position: absolute; left: 0; top: 50%;
  transform: translateY(-50%); width: 20px; height: 2px; background: var(--gold);
}
.section-title {
  font-family: var(--font-display); font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800; color: var(--white); line-height: 1.2; margin-bottom: 1rem;
}
.section-subtitle { color: var(--text-muted); font-size: 1rem; max-width: 600px; margin: 0 auto; }

/* =====================================================
   ABOUT SECTION
   ===================================================== */
.about-img-wrap { position: relative; }
.about-img-main img {
  border-radius: 12px; box-shadow: var(--shadow);
  transition: var(--transition);
}
.about-img-main:hover img { transform: scale(1.02); }
.about-img-badge {
  position: absolute; bottom: -20px; right: -20px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--dark); border-radius: 12px;
  padding: 20px 25px; text-align: center;
  box-shadow: var(--shadow-gold);
}
.about-img-badge strong { display: block; font-size: 1.3rem; font-weight: 900; }
.about-img-badge span { font-size: 0.75rem; font-weight: 600; opacity: 0.8; }
.about-img-card {
  position: absolute; top: 20px; left: -20px;
  background: var(--teal); border: 1px solid rgba(201,168,76,0.3);
  color: var(--gold); padding: 12px 18px; border-radius: 8px;
  font-size: 0.85rem; font-weight: 600; box-shadow: var(--shadow);
}
.section-desc { color: var(--text-light); margin-bottom: 1rem; font-size: 1rem; }
.feature-card {
  display: flex; align-items: center; gap: 14px;
  background: var(--teal-mid); border: 1px solid rgba(201,168,76,0.15);
  padding: 16px; border-radius: 10px;
  transition: var(--transition);
}
.feature-card:hover { border-color: var(--gold); transform: translateY(-3px); box-shadow: var(--shadow-gold); }
.feature-card i { font-size: 1.4rem; color: var(--gold); min-width: 24px; }
.feature-card h6 { margin: 0; font-size: 0.9rem; color: var(--white); font-weight: 700; }
.feature-card small { color: var(--text-muted); font-size: 0.78rem; }

/* =====================================================
   SERVICES
   ===================================================== */
.service-card {
  background: var(--teal-mid); border: 1px solid rgba(201,168,76,0.1);
  border-radius: 14px; padding: 35px 28px;
  transition: var(--transition); height: 100%;
  position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-dark));
  transform: scaleX(0); transition: var(--transition);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
  border-color: rgba(201,168,76,0.35);
}
.service-icon {
  width: 64px; height: 64px; border-radius: 14px;
  background: linear-gradient(135deg, rgba(201,168,76,0.15), rgba(201,168,76,0.05));
  border: 1px solid rgba(201,168,76,0.25);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; color: var(--gold); margin-bottom: 1.2rem;
  transition: var(--transition);
}
.service-card:hover .service-icon { background: linear-gradient(135deg, var(--gold), var(--gold-dark)); color: var(--dark); }
.service-card h5 { color: var(--white); font-weight: 700; margin-bottom: 0.8rem; font-size: 1.05rem; }
.service-card p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 1.2rem; }
.service-link { color: var(--gold); font-size: 0.85rem; font-weight: 600; letter-spacing: 0.5px; }
.service-link:hover { letter-spacing: 2px; }

/* =====================================================
   WHY CHOOSE US
   ===================================================== */
.why-section { background: linear-gradient(135deg, var(--darker) 0%, var(--teal) 100%); }
.why-card {
  background: rgba(255,255,255,0.03); border: 1px solid rgba(201,168,76,0.15);
  border-radius: 14px; padding: 35px 25px;
  transition: var(--transition); position: relative; overflow: hidden;
}
.why-card:hover { transform: translateY(-8px); border-color: var(--gold); box-shadow: var(--shadow-gold); }
.why-number {
  font-family: var(--font-display); font-size: 5rem; font-weight: 900;
  color: rgba(201,168,76,0.08); position: absolute; top: -10px; right: 15px;
  line-height: 1;
}
.why-card i { color: var(--gold); }
.why-card h6 { color: var(--white); font-weight: 700; margin: 0.8rem 0 0.5rem; }
.why-card p { color: var(--text-muted); font-size: 0.88rem; }

/* =====================================================
   FLEET
   ===================================================== */
.fleet-card {
  background: var(--teal-mid); border-radius: 14px; overflow: hidden;
  border: 1px solid rgba(201,168,76,0.1);
  transition: var(--transition);
}
.fleet-card:hover { transform: translateY(-8px); box-shadow: 0 20px 40px rgba(0,0,0,0.35); border-color: rgba(201,168,76,0.3); }
.fleet-img { position: relative; overflow: hidden; height: 210px; }
.fleet-img img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.fleet-card:hover .fleet-img img { transform: scale(1.08); }
.fleet-badge {
  position: absolute; top: 14px; left: 14px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--dark); font-size: 0.72rem; font-weight: 800;
  padding: 4px 12px; border-radius: 20px; text-transform: uppercase; letter-spacing: 1px;
}
.fleet-badge.premium { background: linear-gradient(135deg, #6c5ce7, #a29bfe); color: white; }
.fleet-badge.group { background: linear-gradient(135deg, #00b894, #00cec9); color: white; }
.fleet-info { padding: 20px; }
.fleet-info h5 { color: var(--white); font-weight: 700; font-size: 1rem; margin-bottom: 12px; }
.fleet-features { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 12px; }
.fleet-features span { color: var(--text-muted); font-size: 0.8rem; display: flex; align-items: center; gap: 5px; }
.fleet-features i { color: var(--gold); }
.fleet-price { color: var(--gold); font-weight: 800; font-size: 1.1rem; font-family: var(--font-display); }

/* =====================================================
   PACKAGES
   ===================================================== */
.package-card {
  border-radius: 14px; overflow: hidden;
  background: var(--dark);
  border: 1px solid rgba(201,168,76,0.12);
  transition: var(--transition);
}
.package-card:hover { transform: translateY(-8px); box-shadow: 0 24px 50px rgba(0,0,0,0.4); border-color: var(--gold); }
.package-img { position: relative; overflow: hidden; height: 220px; }
.package-img img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.package-card:hover .package-img img { transform: scale(1.1); }
.package-overlay {
  position: absolute; inset: 0;
  background: rgba(6,18,18,0.6);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: var(--transition);
}
.package-card:hover .package-overlay { opacity: 1; }
.package-days {
  position: absolute; top: 14px; right: 14px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--dark); font-size: 0.8rem; font-weight: 800;
  padding: 5px 13px; border-radius: 20px;
}
.package-body { padding: 22px; }
.package-body h5 { color: var(--white); font-weight: 700; margin-bottom: 8px; }
.package-body > p { color: var(--text-muted); font-size: 0.85rem; margin-bottom: 14px; }
.package-includes { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 16px; }
.package-includes span { color: var(--text-light); font-size: 0.78rem; display: flex; align-items: center; gap: 5px; }
.package-includes i { color: var(--gold); }
.package-footer { display: flex; align-items: center; justify-content: space-between; border-top: 1px solid rgba(255,255,255,0.07); padding-top: 14px; }
.pkg-price { color: var(--gold); font-weight: 800; font-size: 1.05rem; font-family: var(--font-display); }
.pkg-book {
  background: #25D366; color: white; padding: 8px 16px;
  border-radius: 6px; font-size: 0.82rem; font-weight: 700;
  display: flex; align-items: center; gap: 6px;
  transition: var(--transition);
}
.pkg-book:hover { background: #1ebe5a; transform: scale(1.05); color: white; }

/* =====================================================
   DESTINATIONS
   ===================================================== */
.dest-card {
  border-radius: 12px; overflow: hidden;
  position: relative; cursor: pointer;
  aspect-ratio: 1;
}
.dest-card img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.dest-card:hover img { transform: scale(1.12); }
.dest-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(6,18,18,0.9) 0%, transparent 60%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 16px; transition: var(--transition);
}
.dest-overlay h6 { color: var(--white); font-weight: 700; margin: 0; font-size: 1rem; }
.dest-overlay small { color: var(--gold); font-size: 0.75rem; }

/* =====================================================
   GALLERY
   ===================================================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.gallery-item {
  border-radius: 10px; overflow: hidden;
  position: relative; cursor: pointer; display: block;
}
.gallery-item img {
  width: 100%; height: 230px; object-fit: cover;
  transition: var(--transition);
}
.gallery-item:hover img { transform: scale(1.1); }
.gallery-hover {
  position: absolute; inset: 0;
  background: rgba(10,46,46,0.7);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: var(--transition);
  font-size: 1.5rem; color: var(--gold);
}
.gallery-item:hover .gallery-hover { opacity: 1; }
@media (max-width: 768px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
}

/* =====================================================
   COUNTER SECTION
   ===================================================== */
.counter-section {
  background: linear-gradient(135deg, var(--teal) 0%, var(--darker) 100%);
  padding: 70px 0; border-top: 1px solid rgba(201,168,76,0.15); border-bottom: 1px solid rgba(201,168,76,0.15);
}
.counter-item i { font-size: 2rem; color: var(--gold); }
.counter-num {
  font-family: var(--font-display); font-size: 3rem; font-weight: 900;
  color: var(--gold); line-height: 1.2;
}
.counter-num::after { content: '+'; font-size: 2rem; }
.counter-label { color: var(--text-muted); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px; }

/* =====================================================
   TESTIMONIALS
   ===================================================== */
.testi-card {
  background: var(--teal-mid); border: 1px solid rgba(201,168,76,0.12);
  border-radius: 14px; padding: 28px; height: 100%;
  transition: var(--transition);
}
.testi-card.featured {
  background: linear-gradient(135deg, var(--teal-light), var(--teal-mid));
  border-color: rgba(201,168,76,0.4);
  box-shadow: 0 8px 30px rgba(201,168,76,0.1);
}
.testi-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.testi-stars { color: var(--gold); font-size: 0.9rem; margin-bottom: 1rem; }
.testi-card p { color: var(--text-light); font-size: 0.92rem; line-height: 1.7; margin-bottom: 1.2rem; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 46px; height: 46px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--dark); font-weight: 800; font-size: 0.85rem;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.testi-author strong { color: var(--white); font-size: 0.92rem; display: block; }
.testi-author small { color: var(--text-muted); font-size: 0.78rem; }
.carousel-btn {
  background: rgba(201,168,76,0.15); border: 1px solid rgba(201,168,76,0.4);
  color: var(--gold); width: 44px; height: 44px; border-radius: 50%;
  font-size: 0.9rem; transition: var(--transition); margin: 0 6px;
  cursor: pointer;
}
.carousel-btn:hover { background: var(--gold); color: var(--dark); }

/* =====================================================
   CTA SECTION
   ===================================================== */
.cta-section {
  background: linear-gradient(135deg, var(--teal) 0%, var(--dark) 100%);
  padding: 80px 0;
  border-top: 1px solid rgba(201,168,76,0.2); border-bottom: 1px solid rgba(201,168,76,0.2);
}
.cta-inner { max-width: 700px; margin: 0 auto; }
.cta-inner h2 { font-family: var(--font-display); font-size: clamp(1.8rem, 3vw, 2.5rem); color: var(--white); margin-bottom: 1rem; }
.cta-inner p { color: var(--text-light); font-size: 1.05rem; }

/* =====================================================
   CONTACT
   ===================================================== */
.contact-info { padding-right: 20px; }
.contact-info h4 { font-family: var(--font-display); color: var(--gold); font-size: 1.6rem; font-weight: 800; }
.contact-item {
  display: flex; align-items: flex-start; gap: 16px;
  margin-bottom: 22px;
}
.contact-item i {
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(201,168,76,0.12); border: 1px solid rgba(201,168,76,0.3);
  color: var(--gold); font-size: 1rem;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-item strong { color: var(--white); font-size: 0.85rem; display: block; margin-bottom: 4px; }
.contact-item a, .contact-item span {
  color: var(--text-muted); font-size: 0.9rem; display: block; line-height: 1.6;
}
.contact-item a:hover { color: var(--gold); }
.social-links { display: flex; gap: 12px; }
.social-links a {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  color: var(--text-muted); font-size: 0.9rem;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.social-links a:hover { background: var(--gold); border-color: var(--gold); color: var(--dark); transform: translateY(-3px); }
.contact-form-wrap {
  background: var(--teal-mid); border: 1px solid rgba(201,168,76,0.12);
  border-radius: 14px; padding: 35px;
}
.contact-form-wrap h4 { color: var(--white); font-weight: 700; }
.form-group-custom { position: relative; }
.form-control-custom {
  width: 100%; background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1); border-radius: 8px;
  color: var(--white); padding: 13px 16px; font-family: var(--font-body); font-size: 0.9rem;
  transition: var(--transition);
}
.form-control-custom:focus {
  outline: none; border-color: var(--gold);
  background: rgba(201,168,76,0.05);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.12);
}
.form-control-custom::placeholder { color: var(--text-muted); }
.form-control-custom option { background: var(--teal); }
textarea.form-control-custom { resize: vertical; }

/* =====================================================
   MAP
   ===================================================== */
.map-section iframe { display: block; filter: grayscale(60%) invert(10%); }

/* =====================================================
   FOOTER
   ===================================================== */
.footer-section {
  background: var(--darker); padding: 70px 0 0;
  border-top: 1px solid rgba(201,168,76,0.15);
}
.footer-brand { display: flex; align-items: center; }
.footer-desc { color: var(--text-muted); font-size: 0.88rem; line-height: 1.8; }
.footer-heading {
  color: var(--gold); font-weight: 700; font-size: 0.85rem;
  text-transform: uppercase; letter-spacing: 2px; margin-bottom: 1.2rem;
}
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { color: var(--text-muted); font-size: 0.88rem; transition: var(--transition); }
.footer-links a:hover { color: var(--gold); padding-left: 5px; }
.footer-contact p { color: var(--text-muted); font-size: 0.86rem; margin-bottom: 8px; display: flex; align-items: flex-start; gap: 6px; }
.footer-contact a { color: var(--text-muted); }
.footer-contact a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06); margin-top: 50px;
  padding: 22px 0; text-align: center;
}
.footer-bottom p { color: var(--text-muted); font-size: 0.85rem; margin: 0; }

/* =====================================================
   WHATSAPP FLOAT BUTTON
   ===================================================== */
.whatsapp-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.7rem; color: white;
  box-shadow: 0 6px 25px rgba(37,211,102,0.45);
  animation: waFloat 2.5s ease-in-out infinite;
  transition: var(--transition);
}
.whatsapp-float:hover { transform: scale(1.12); color: white; box-shadow: 0 8px 35px rgba(37,211,102,0.6); }
.wa-tooltip {
  position: absolute; right: 70px; top: 50%; transform: translateY(-50%);
  background: var(--dark); color: var(--white); font-size: 0.8rem; font-weight: 600;
  padding: 6px 12px; border-radius: 6px; white-space: nowrap;
  opacity: 0; pointer-events: none; transition: var(--transition);
  border: 1px solid rgba(201,168,76,0.2);
}
.whatsapp-float:hover .wa-tooltip { opacity: 1; }
@keyframes waFloat {
  0%, 100% { transform: translateY(0); box-shadow: 0 6px 25px rgba(37,211,102,0.45); }
  50% { transform: translateY(-6px); box-shadow: 0 12px 35px rgba(37,211,102,0.55); }
}

/* =====================================================
   SCROLL TO TOP
   ===================================================== */
.scroll-top {
  position: fixed; bottom: 98px; right: 28px; z-index: 999;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--teal-mid); border: 1px solid rgba(201,168,76,0.4);
  color: var(--gold); font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: var(--transition);
  opacity: 0; visibility: hidden;
}
.scroll-top.visible { opacity: 1; visibility: visible; }
.scroll-top:hover { background: var(--gold); color: var(--dark); transform: translateY(-3px); }

/* =====================================================
   RESPONSIVE MEDIA QUERIES
   ===================================================== */
@media (max-width: 991px) {
  .navbar-collapse { background: rgba(6,18,18,0.97); padding: 20px; border-radius: 10px; margin-top: 10px; }
  .hero-title { font-size: 2.5rem; }
  .about-img-badge { bottom: -10px; right: 0; }
  .about-img-card { top: 10px; left: 0; }
  .section-pad { padding: 60px 0; }
}
@media (max-width: 767px) {
  .hero-stats { gap: 20px; }
  .stat-num { font-size: 1.8rem; }
  .fleet-img { height: 180px; }
  .package-img { height: 190px; }
  .testi-card { margin-bottom: 16px; }
  .contact-form-wrap { padding: 22px; }
  .whatsapp-float { bottom: 20px; right: 16px; width: 52px; height: 52px; }
  .scroll-top { bottom: 84px; right: 16px; }
}
@media (max-width: 480px) {
  .hero-btns .btn { font-size: 0.82rem; padding: 10px 18px; }
  .counter-num { font-size: 2.2rem; }
  .gallery-item img { height: 200px; }
}

.hero-section {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

/* SLIDER */
.hero-slider {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.hero-slider .slide {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.hero-slider .slide.active {
  opacity: 1;
}

/* OVERLAY ABOVE SLIDER */
.hero-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 1;
}

/* CONTENT ABOVE EVERYTHING */
.hero-section .container {
  position: relative;
  z-index: 2;
}

/* PARTICLES */
.hero-particles {
  z-index: 1;
}
.hero-slider .slide {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 1s ease-in-out, transform 9s ease;
}

.hero-slider .slide.active {
  opacity: 1;
  transform: scale(1);
}

/* LOGO SIZE FIX */
.logo-img {
  height: 60px;   /* perfect fit for navbar */
  width: auto;
  object-fit: contain;
}

/* NAVBAR HEIGHT */
#mainNav {
  padding: 10px 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(8px);
}

/* NAV LINKS */
.navbar-nav .nav-link {
  color: #fff;
  font-weight: 500;
  transition: 0.3s;
}

.navbar-nav .nav-link:hover {
  color: #d4af37;
}

/* BOOK BUTTON */
.btn-book {
  background: #d4af37;
  color: #000 !important;
  border-radius: 30px;
  font-weight: 600;
  transition: 0.3s;
}

.btn-book:hover {
  background: #fff;
  color: #000 !important;
}

/* MOBILE FIX */
@media (max-width: 991px) {
  .logo-img {
    height: 50px;
  }

  .navbar-nav {
    text-align: center;
    gap: 10px;
  }

  .btn-book {
    display: inline-block;
    margin-top: 10px;
  }
}

#mainNav {
  background: rgba(0, 0, 0, 0.55); /* adjust opacity here */
  backdrop-filter: blur(8px); /* glass effect 🔥 */
  -webkit-backdrop-filter: blur(8px);
  transition: all 0.3s ease;
}

/* IMAGE WRAPPER */
.about-img-wrap {
  position: relative;
  display: inline-block;
}

/* CURVED IMAGE */
.curved-img img {
  width: 100%;
  max-width: 652px;
  height: 759px;
  object-fit: cover;

  border-radius: 120px 0 120px 0; /* one-sided curve 🔥 */
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);

  transition: transform 0.4s ease;
}

/* HOVER EFFECT */
.curved-img img:hover {
  transform: scale(1.03);
}

/* BADGE (TOP LEFT FLOAT) */
.img-badge {
  position: absolute;
  top: 20px;
  left: -11px;
  background: #d4af37;
  color: #080707;
  padding: 7px 15px;
  border-radius: 10px;
  display: flex;
  gap: 10px;
  align-items: center;
}

/* CARD (BOTTOM RIGHT FLOAT) */
.about-img-card {
  position: absolute;
  bottom: 20px;
  right: -30px;
  background: #111;
  color: #fff;
  padding: 12px 18px;
  border-radius: 10px;
  font-size: 14px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

/* OPTIONAL BACKGROUND SHAPE */
.about-img-wrap::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(201, 163, 78, 0.15);
  top: 20px;
  left: 20px;
  border-radius: 120px 0 120px 0;
  z-index: -1;
}
/* SECTION BACKGROUND */
.clients-section {
  background: #082121; /* your color */
  position: relative;
  overflow: hidden;
}

/* SLIDER */
.client-slider {
  overflow: hidden;
  margin-top: 40px;
  position: relative;
}

/* TRACK */
.client-track {
  display: flex;
  gap: 30px;
  animation: scroll 30s linear infinite;
}

/* PAUSE ON HOVER */
.client-slider:hover .client-track {
  animation-play-state: paused;
}

/* CARD STYLE */
.client-card {
  flex: 0 0 auto;
  width: 180px;
  height: 110px;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(8px);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
  border: 1px solid rgba(255,255,255,0.08);
}

/* IMAGE */
.client-card img {
  max-width: 80%;
  max-height: 60px;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all 0.4s ease;
}

/* HOVER EFFECT 🔥 */
.client-card:hover {
  transform: translateY(-8px) scale(1.05);
  background: rgba(201, 163, 78, 0.15);
  box-shadow: 0 10px 30px rgba(201,163,78,0.3);
}

.client-card:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

/* ANIMATION */
@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.client-slider::before,
.client-slider::after {
  content: "";
  position: absolute;
  top: 0;
  width: 120px;
  height: 100%;
  z-index: 2;
}

.ms-lg-3 {
    margin-left: 0rem!important;
}

.client-slider::before {
  left: 0;
  background: linear-gradient(to right, #0b0b0b, transparent);
}

.client-slider::after {
  right: 0;
  background: linear-gradient(to left, #0b0b0b, transparent);
}
.client-card {
  flex: 0 0 auto;
  width: 180px;
  height: 110px;

  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(8px);

  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;

  transition: all 0.4s ease;
  border: 1px solid rgba(255,255,255,0.08);
}

/* HOVER (gold + teal mix 🔥) */
.client-card:hover {
  transform: translateY(-8px) scale(1.05);
  background: rgba(201, 163, 78, 0.15);
  box-shadow: 0 10px 30px rgba(201,163,78,0.25);
}

.footer-logo {
  width: 160px;   /* best fit */
  height: auto;   /* maintain aspect ratio */
  object-fit: contain;
  display: block;
}

/* optional alignment */
.footer-brand {
  display: flex;
  align-items: center;
}
.footer-logo {
  width: 160px;
  height: auto;
  filter: drop-shadow(0 5px 10px rgba(0,0,0,0.3));
  transition: 0.3s ease;
}

.footer-logo:hover {
  transform: scale(1.05);
}


/* ABOUT SECTION */
.about-section {
  padding: 100px 0;
  overflow: hidden;
}

/* Background */
.about-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  background: url('https://images.unsplash.com/photo-1501785888041-af3ef285b470?w=1600&q=80') center/cover no-repeat;
  opacity: 0.08;
  top: 0;
  left: 0;
}

/* Heading */
.about-main-title {
  font-size: 42px;
  font-weight: 800;
}

.about-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 15px;
}

.about-text {
  color: #666;
  line-height: 1.7;
}

/* Image */
.about-img-box {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  background: transparent;   /* IMPORTANT */
  box-shadow: none;          /* remove white glow */
}

.img-card {
  position: absolute;
  bottom: 14px;
  right: 15px;
  background: #032030;
  padding: 3px 10px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.img-card i {
  color: #d4af37; /* gold */
}


.about-img-box img {
  display: block;
  width: 100%;
  border-radius: 20px;
  border: none;              /* remove white border */
}
.main-img {
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.img-badge {
  position: absolute;
  top: 14px;
  left: -1px;
  background: #d4af37;
  color: #000000;
  padding: 6px 12px;
  border-radius: 10px;
  display: flex;
  gap: 10px;
  align-items: center;
}

/* Card */
.img-card {
  position: absolute;
  bottom: 14px;
  right: 15px;
  background: #032030;
  padding: 3px 10px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}


/* Feature */
.feature-box {
  background: rgb(0 33 40); /* solid clean white */
  /* color: #fff; */
  padding: 14px 16px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: #fff;
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
  transition: 0.3s ease;
}
/* ICON COLOR */
.feature-box i {
  color: #d4af37;
  font-size: 18px;
}

/* HOVER EFFECT */
.feature-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.25);
}


/* =========================================
   RK CONTACT SECTION
========================================= */

.rk-contact-section {
  background:
    linear-gradient(rgba(2, 24, 22, 0.95),
      rgba(2, 24, 22, 0.95)),
    url("images/bg-pattern.jpg");

  background-size: cover;
  background-position: center;

  padding: 100px 0;
  position: relative;
}

/* TOP */
.rk-contact-top {
  margin-bottom: 60px;
}

.rk-contact-title {
  font-size: 52px;
  font-weight: 800;
  color: #fff;
}

.rk-contact-subtitle {
  color: rgba(255,255,255,0.7);
  max-width: 650px;
  margin: auto;
  margin-top: 15px;
  font-size: 17px;
}

/* FORM */
.rk-contact-form {
  background: rgba(13, 64, 58, 0.75);

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

  backdrop-filter: blur(12px);

  padding: 40px;
  border-radius: 20px;
}

.rk-contact-form h4 {
  color: #fff;
  font-weight: 700;
}

/* INPUTS */
.rk-input {
  width: 100%;
  height: 55px;

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

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

  color: #fff;

  padding: 14px 18px;

  border-radius: 12px;

  outline: none;

  transition: 0.3s;
}

.rk-input::placeholder {
  color: rgba(255,255,255,0.55);
}

.rk-input:focus {
  border-color: #d4af37;
  background: rgba(255,255,255,0.06);
}

.rk-textarea {
  height: 160px;
  resize: none;
  padding-top: 18px;
}

/* BUTTON */
.rk-contact-btn {
  background: #d4af37;
  color: #111;
  border: none;
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 700;
  transition: 0.3s;
}

.rk-contact-btn:hover {
  background: #c49b2c;
  transform: translateY(-3px);
}

/* INFO BOX */
.rk-contact-info {
  background: rgba(13, 64, 58, 0.75);

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

  backdrop-filter: blur(12px);

  padding: 40px;
  border-radius: 20px;
}

.rk-contact-info h4 {
  color: #fff;
  font-weight: 700;
}

/* INFO ITEM */
.contact-info-item {
  display: flex;
  gap: 18px;
  margin-bottom: 30px;
}

.contact-icon {
  min-width: 55px;
  height: 55px;

  background: rgba(212,175,55,0.12);

  border-radius: 14px;

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

.contact-icon i {
  color: #d4af37;
  font-size: 20px;
}

.contact-info-item h6 {
  color: #fff;
  font-weight: 700;
  margin-bottom: 6px;
}

.contact-info-item p {
  color: rgba(255,255,255,0.72);
  margin: 0;
  line-height: 1.7;
}

/* MAP */
.rk-map-wrapper {
  overflow: hidden;
  border-radius: 20px;
  border: 2px solid rgba(212,175,55,0.15);
}

.rk-map-wrapper iframe {
  width: 100%;
  height: 420px;
  border: 0;
}

/* MOBILE */
@media (max-width: 768px) {

  .rk-contact-title {
    font-size: 36px;
  }

  .rk-contact-form,
  .rk-contact-info {
    padding: 25px;
  }

}
/* DROPDOWN MENU */
.service-dropdown {
  background: #062222;
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 15px;
  padding: 10px;
  min-width: 260px;
  margin-top: 12px;
}

/* DROPDOWN ITEMS */
.service-dropdown .dropdown-item {
  color: #fff;
  padding: 12px 15px;
  border-radius: 10px;
  font-size: 15px;
  transition: 0.3s ease;
}

/* HOVER EFFECT */
.service-dropdown .dropdown-item:hover {
  background: #d4af37;
  color: #000;
  transform: translateX(5px);
}

/* ICON COLOR */
.service-dropdown .dropdown-item i {
  color: #d4af37;
  transition: 0.3s;
}

.service-dropdown .dropdown-item:hover i {
  color: #000;
}

/* REMOVE BOOTSTRAP DEFAULT ARROW COLOR ISSUE */
.navbar .dropdown-toggle::after {
  margin-left: 8px;
  display: none;
}

/* MOBILE DROPDOWN */
@media (max-width: 991px) {

  .service-dropdown {
    background: transparent;
    border: none;
    padding-left: 10px;
    margin-top: 0;
  }

  .service-dropdown .dropdown-item {
    color: #fff;
  }

}

/* =========================================
   TAXI HERO SECTION
========================================= */

.taxi-hero-section{
    position: relative;
    height: 75vh;
    background: url('images/taxi-bg.jpg') center center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.taxi-overlay{
    position: absolute;
    inset: 0;
    background: linear-gradient(
        rgba(0,0,0,0.7),
        rgba(0,20,20,0.85)
    );
}

.taxi-heading{
    position: relative;
    z-index: 2;
}

.section-tag{
    color: #d4af37;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 14px;
    font-weight: 600;
}

.taxi-heading h1{
    color: #fff;
    font-size: 70px;
    font-weight: 800;
    margin-top: 20px;
}

.taxi-heading h1 span{
    color: #d4af37;
}

.taxi-heading p{
    color: #ddd;
    margin-top: 20px;
    font-size: 18px;
}

/* =========================================
   TAXI SERVICES SECTION
========================================= */

.taxi-services-section{
    background: #021313;
    padding: 0 0;
}

.vehicle-category{
    margin-bottom: 80px;
}

.category-title{
    text-align: center;
    margin-bottom: 50px;
}

.category-title h2{
    color: #d4af37;
    font-size: 42px;
    font-weight: 700;
}

.category-title p{
    color: #bbb;
    margin-top: 10px;
}

/* =========================================
   CAR CARD
========================================= */

.car-card{
    background: rgba(255,255,255,0.04);
    border-radius: 20px;
    overflow: hidden;
    transition: 0.4s;
    border: 1px solid rgba(212,175,55,0.1);
    backdrop-filter: blur(10px);
}

.car-card:hover{
    transform: translateY(-10px);
    border-color: #d4af37;
    box-shadow: 0 10px 30px rgba(212,175,55,0.2);
}

.car-card img{
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.car-content{
    padding: 20px;
    text-align: center;
}

.car-content h4{
    color: #fff;
    font-size: 24px;
    margin-bottom: 8px;
}

.car-content span{
    color: #d4af37;
    font-size: 15px;
}

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

@media(max-width:768px){

    .taxi-heading h1{
        font-size: 42px;
    }

    .category-title h2{
        font-size: 32px;
    }

    .car-card img{
        height: 220px;
    }

}
/* =========================================
   FLIGHT HERO SECTION
========================================= */

.flight-hero-section{
    position: relative;
    height: 75vh;
    background: url('images/airport-bg.jpg') center center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.flight-overlay{
    position: absolute;
    inset: 0;
    background: linear-gradient(
        rgba(0,0,0,0.75),
        rgba(0,20,20,0.88)
    );
}

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

.flight-tag{
    color: #d4af37;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 14px;
    font-weight: 600;
}

.flight-hero-content h1{
    color: #fff;
    font-size: 72px;
    font-weight: 800;
    margin-top: 20px;
}

.flight-hero-content h1 span{
    color: #d4af37;
}

.flight-hero-content p{
    color: #ddd;
    margin-top: 18px;
    font-size: 18px;
}

/* =========================================
   AIRPORT CARS SECTION
========================================= */

.airport-cars-section{
    background: #021313;
    padding: 100px 0;
}

.section-title h2{
    color: #d4af37;
    font-size: 45px;
    font-weight: 700;
}

.section-title p{
    color: #bbb;
    margin-top: 10px;
}

.airport-car-card{
    background: rgba(255,255,255,0.04);
    border-radius: 20px;
    overflow: hidden;
    transition: 0.4s;
    border: 1px solid rgba(212,175,55,0.15);
}

.airport-car-card:hover{
    transform: translateY(-10px);
    border-color: #d4af37;
    box-shadow: 0 10px 30px rgba(212,175,55,0.2);
}

.airport-car-card img{
    width: 100%;
    height: 260px;
    object-fit: cover;
}

.airport-car-content{
    padding: 20px;
    text-align: center;
}

.airport-car-content h4{
    color: #fff;
    margin-bottom: 10px;
}

.airport-car-content span{
    color: #d4af37;
}

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

.flight-booking-form-section{
    background: #031919;
    padding: 100px 0;
}

.booking-small-title{
    color: #d4af37;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 14px;
}

.booking-left-content h2{
    color: #fff;
    font-size: 48px;
    margin: 20px 0;
}

.booking-left-content p{
    color: #bbb;
    line-height: 1.8;
}

.booking-feature{
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 25px;
}

.booking-feature i{
    width: 50px;
    height: 50px;
    background: rgba(212,175,55,0.1);
    color: #d4af37;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.booking-feature span{
    color: #fff;
    font-size: 17px;
}

/* FORM BOX */

.flight-form-box{
    background: rgba(255,255,255,0.04);
    padding: 40px;
    border-radius: 25px;
    border: 1px solid rgba(212,175,55,0.12);
    backdrop-filter: blur(10px);
}

.flight-form-box h3{
    color: #fff;
    margin-bottom: 30px;
    font-size: 32px;
}

.flight-form-box .form-control,
.flight-form-box .form-select{
    height: 55px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    color: #fff;
    border-radius: 12px;
}

.flight-form-box textarea.form-control{
    height: auto;
}

.flight-form-box .form-control::placeholder{
    color: #bbb;
}

.flight-form-box .form-control:focus,
.flight-form-box .form-select:focus{
    border-color: #d4af37;
    box-shadow: none;
    background: rgba(255,255,255,0.08);
    color: #fff;
}

/* BUTTON */

.flight-submit-btn{
    background: #d4af37;
    color: #000;
    border: none;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 700;
    transition: 0.3s;
}

.flight-submit-btn:hover{
    background: #fff;
    transform: translateY(-3px);
}

/* MOBILE */

@media(max-width:768px){

    .flight-hero-content h1{
        font-size: 42px;
    }

    .section-title h2{
        font-size: 34px;
    }

    .booking-left-content h2{
        font-size: 34px;
    }

    .flight-form-box{
        padding: 25px;
    }

}

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

.hotel-hero-section{
    position: relative;
    background:
    linear-gradient(rgba(0,0,0,0.70), rgba(0,0,0,0.75)),
    url("images/bg-1.jpg");
    background-size: cover;
    background-position: center;
    padding: 180px 0 120px;
}

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

.hotel-tag{
    display: inline-block;
    background: rgba(212,175,55,0.15);
    color: #d4af37;
    padding: 10px 22px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid rgba(212,175,55,0.35);
}

.hotel-hero-content h1{
    color: #fff;
    font-size: 65px;
    font-weight: 800;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
}

.hotel-hero-content h1 span{
    color: #d4af37;
}

.hotel-hero-content p{
    color: #f1f1f1;
    font-size: 18px;
}

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

.hotel-booking-section{
    padding: 100px 0;
    background: #091919;
}

.small-title{
    color: #d4af37;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hotel-left-content h2{
    font-size: 45px;
    font-weight: 800;
    margin: 20px 0;
    color: #ffffff;
    font-family: 'Playfair Display', serif;
}

.hotel-left-content p{
    color: #555;
    line-height: 1.8;
    margin-bottom: 30px;
}

.hotel-feature{
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.hotel-feature i{
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg,#d4af37,#f0cd63);
    color: #111;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hotel-feature span{
    font-weight: 600;
    color: #ffffff;
}

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

.hotel-form-box{
    background: #030000;
    padding: 45px;
    border-radius: 25px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    border-top: 5px solid #d4af37;
}

.hotel-form-box h3{
    font-size: 35px;
    font-weight: 800;
    margin-bottom: 30px;
    color: #fff;
    font-family: 'Playfair Display', serif;
}

.hotel-form-box .form-control,
.hotel-form-box .form-select{
    height: 58px;
    border-radius: 14px;
    border: 1px solid #ddd;
    padding: 10px 18px;
    box-shadow: none;
}

.hotel-form-box textarea.form-control{
    height: 140px;
    resize: none;
    padding-top: 18px;
}

.hotel-form-box .form-control:focus,
.hotel-form-box .form-select:focus{
    border-color: #d4af37;
    box-shadow: 0 0 0 0.2rem rgba(212,175,55,0.20);
}

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

.hotel-submit-btn{
    background: linear-gradient(135deg,#d4af37,#f1cf66);
    border: none;
    color: #111;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 700;
    transition: 0.4s;
}

.hotel-submit-btn:hover{
    transform: translateY(-3px);
    background: linear-gradient(135deg,#c99d22,#e3bb49);
    color: #000;
}

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

@media(max-width:991px){

    .hotel-hero-content h1{
        font-size: 45px;
    }

    .hotel-left-content{
        margin-bottom: 40px;
    }
}

@media(max-width:576px){

    .hotel-hero-content h1{
        font-size: 34px;
    }

    .hotel-form-box{
        padding: 25px;
    }
}
/* ========== TOUR HERO SECTION ========== */

.tour-hero-section{
    position: relative;
    background: url("images/bg-1.jpg") center center/cover no-repeat;
    padding: 180px 0 120px;
    overflow: hidden;
}

.tour-overlay{
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.65);
}

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

.tour-tag{
    color: #d4af37;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.tour-hero-content h1{
    font-size: 65px;
    font-weight: 800;
    color: #fff;
    margin-top: 20px;
}

.tour-hero-content h1 span{
    color: #d4af37;
}

.tour-hero-content p{
    color: #ddd;
    font-size: 18px;
    margin-top: 20px;
}


/* ========== TOUR PACKAGES ========== */

.tour-packages-section{
    padding: 100px 0;
    background: #061a1a;
}

.section-title h2{
    color: #fff;
    font-size: 45px;
    font-weight: 700;
}

.section-title p{
    color: #ccc;
}

.tour-card{
    background: #0b2222;
    border-radius: 20px;
    overflow: hidden;
    transition: 0.4s;
    border: 1px solid rgba(212,175,55,0.2);
}

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

.tour-card img{
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.tour-card-content{
    padding: 25px;
}

.tour-card-content h4{
    color: #fff;
    font-size: 24px;
    margin-bottom: 10px;
}

.tour-card-content p{
    color: #ccc;
    font-size: 15px;
}

.tour-days{
    color: #d4af37;
    font-weight: 600;
}


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

.tour-booking-section{
    padding: 100px 0;
    background: linear-gradient(to right,#041414,#0b2222);
}

.tour-small-title{
    color: #d4af37;
    letter-spacing: 2px;
    font-weight: 600;
    text-transform: uppercase;
}

.tour-left-content h2{
    color: #fff;
    font-size: 50px;
    font-weight: 700;
    margin: 20px 0;
}

.tour-left-content p{
    color: #ccc;
    margin-bottom: 30px;
}

.tour-feature{
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    color: #fff;
}

.tour-feature i{
    width: 50px;
    height: 50px;
    background: #d4af37;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.tour-form-box{
    background: #0b2222;
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(212,175,55,0.2);
}

.tour-form-box h3{
    color: #fff;
    margin-bottom: 30px;
    font-size: 32px;
}

.tour-form-box .form-control,
.tour-form-box .form-select{
    height: 55px;
    background: #081818;
    border: 1px solid rgba(255,255,255,0.1);
    color: #fff;
}

.tour-form-box textarea.form-control{
    height: auto;
}

.tour-form-box .form-control::placeholder{
    color: #aaa;
}

.tour-submit-btn{
    background: #d4af37;
    color: #000;
    padding: 14px 35px;
    border-radius: 50px;
    font-weight: 700;
    border: none;
    transition: 0.3s;
}

.tour-submit-btn:hover{
    background: #fff;
    color: #000;
}


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

@media(max-width:768px){

    .tour-hero-content h1{
        font-size: 42px;
    }

    .tour-left-content h2{
        font-size: 36px;
    }

}
/* ========== WEDDING HERO SECTION ========== */

.wedding-hero-section{
    position: relative;
    background-image: url("images/bg-1.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 220px 0 140px;
}

.wedding-overlay{
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.70);
}

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

.wedding-tag{
    color: #d4af37;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.wedding-hero-content h1{
    color: #fff;
    font-size: 65px;
    font-weight: 800;
    margin-top: 20px;
}

.wedding-hero-content h1 span{
    color: #d4af37;
}

.wedding-hero-content p{
    color: #ddd;
    font-size: 18px;
    margin-top: 20px;
}


/* ========== WEDDING CAR SECTION ========== */

.wedding-cars-section{
    padding: 100px 0;
    background: #071818;
}

.section-title h2{
    color: #fff;
    font-size: 45px;
    font-weight: 700;
}

.section-title p{
    color: #ccc;
}

.wedding-car-card{
    background: #0b2222;
    border-radius: 20px;
    overflow: hidden;
    transition: 0.4s;
    border: 1px solid rgba(212,175,55,0.2);
}

.wedding-car-card:hover{
    transform: translateY(-10px);
}

.wedding-car-card img{
    width: 100%;
    height: 260px;
    object-fit: cover;
}

.wedding-car-content{
    padding: 25px;
}

.wedding-car-content h4{
    color: #fff;
    font-size: 24px;
}

.wedding-car-content span{
    color: #d4af37;
}


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

.wedding-booking-section{
    padding: 100px 0;
    background: linear-gradient(to right,#041414,#0b2222);
}

.wedding-small-title{
    color: #d4af37;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.wedding-left-content h2{
    color: #fff;
    font-size: 50px;
    font-weight: 700;
    margin: 20px 0;
}

.wedding-left-content p{
    color: #ccc;
    margin-bottom: 30px;
}

.wedding-feature{
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    color: #fff;
}

.wedding-feature i{
    width: 50px;
    height: 50px;
    background: #d4af37;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}


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

.wedding-form-box{
    background: #0b2222;
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(212,175,55,0.2);
}

.wedding-form-box h3{
    color: #fff;
    font-size: 32px;
    margin-bottom: 30px;
}

.wedding-form-box .form-control,
.wedding-form-box .form-select{
    height: 55px;
    background: #081818;
    border: 1px solid rgba(255,255,255,0.1);
    color: #fff;
}

.wedding-form-box textarea.form-control{
    height: auto;
}

.wedding-form-box .form-control::placeholder{
    color: #aaa;
}

.wedding-submit-btn{
    background: #d4af37;
    color: #000;
    padding: 14px 35px;
    border-radius: 50px;
    font-weight: 700;
    border: none;
    transition: 0.3s;
}

.wedding-submit-btn:hover{
    background: #fff;
    color: #000;
}


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

@media(max-width:768px){

    .wedding-hero-content h1{
        font-size: 42px;
    }

    .wedding-left-content h2{
        font-size: 36px;
    }

}
/* =========================================
   GALLERY HERO SECTION
========================================= */

.gallery-hero-section{
    position: relative;
    width: 100%;
    min-height: 75vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;

    background:
    linear-gradient(rgba(0,0,0,0.55),
    rgba(0,0,0,0.65)),
    url("images/bg-1.jpg");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.gallery-overlay{
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.2);
}

.gallery-hero-content{
    position: relative;
    z-index: 2;
    color: #fff;
}

.gallery-tag{
    display: inline-block;
    padding: 10px 24px;
    border-radius: 50px;
    background: rgba(212,175,55,0.15);
    border: 1px solid #d4af37;
    color: #d4af37;
    font-weight: 600;
    margin-bottom: 20px;
}

.gallery-hero-content h1{
    font-size: 68px;
    font-weight: 800;
    margin-bottom: 20px;
}

.gallery-hero-content h1 span{
    color: #d4af37;
}

.gallery-hero-content p{
    font-size: 18px;
    color: #f1f1f1;
}

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

.gallery-main-section{
    padding: 100px 0;
    background: #000000;
}

.gallery-card{
    position: relative;
    overflow: hidden;
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    transition: 0.4s ease;
}

.gallery-card img{
    width: 100%;
    height: 320px;
    object-fit: cover;
    transition: 0.5s;
}

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

.gallery-card::before{
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
    rgba(0,0,0,0.85),
    transparent);
    opacity: 0;
    transition: 0.4s;
}

.gallery-card:hover::before{
    opacity: 1;
}

.gallery-content{
    position: absolute;
    bottom: -60px;
    left: 0;
    width: 100%;
    padding: 25px;
    color: #000000;
    transition: 0.4s;
    z-index: 2;
}

.gallery-card:hover .gallery-content{
    bottom: 0;
}

.gallery-content h4{
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 0;
    color: #d4af37;
}

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

@media(max-width:768px){

    .gallery-hero-content h1{
        font-size: 42px;
    }

    .gallery-card img{
        height: 260px;
    }

}
/* =========================================
   BLOG HERO SECTION
========================================= */

.blog-hero-section{
    position: relative;
    width: 100%;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;

    background:
    linear-gradient(rgba(0,0,0,0.55),
    rgba(0,0,0,0.65)),
    url("images/bg-1.jpg");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.blog-overlay{
    position: absolute;
    inset: 0;
}

.blog-hero-content{
    position: relative;
    z-index: 2;
    color: #fff;
}

.blog-tag{
    display: inline-block;
    padding: 10px 24px;
    border-radius: 50px;
    background: rgba(212,175,55,0.15);
    border: 1px solid #d4af37;
    color: #d4af37;
    margin-bottom: 20px;
    font-weight: 600;
}

.blog-hero-content h1{
    font-size: 70px;
    font-weight: 800;
    margin-bottom: 20px;
}

.blog-hero-content h1 span{
    color: #d4af37;
}

.blog-hero-content p{
    font-size: 18px;
    color: #ffffff;
}

/* =========================================
   BLOG SECTION
========================================= */

.blog-list-section{
    padding: 100px 0;
    background: #000000;
}

.blog-text-card{
    background: #061212;
    padding: 35px;
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    transition: 0.4s;
    height: 100%;
    border-left: 5px solid #d4af37;
}

.blog-text-card:hover{
    transform: translateY(-8px);
}

.blog-date{
    color: #d4af37;
    font-size: 14px;
    font-weight: 700;
}

.blog-text-card h3{
    font-size: 28px;
    margin: 15px 0;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.4;
}

.blog-text-card p{
    color: #666;
    line-height: 1.8;
    margin-bottom: 0;
}

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

@media(max-width:768px){

    .blog-hero-content h1{
        font-size: 42px;
    }

    .blog-text-card{
        padding: 25px;
    }

    .blog-text-card h3{
        font-size: 22px;
    }

}

/* =======================================================
   DESTINATION HERO SECTION
======================================================= */

.destination-hero-section{
    position: relative;
    padding: 180px 0 120px;
    background: url('images/bg-1.jpg') center center/cover no-repeat;
    overflow: hidden;
}

.destination-overlay{
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.65);
}

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

.destination-tag{
    display: inline-block;
    background: #c89b3c;
    color: #fff;
    padding: 10px 22px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.destination-hero-content h1{
    font-size: 60px;
    color: #fff;
    font-weight: 800;
    margin-bottom: 20px;
}

.destination-hero-content h1 span{
    color: #c89b3c;
}

.destination-hero-content p{
    color: #eee;
    font-size: 18px;
}

/* =======================================================
   DESTINATION SECTION
======================================================= */

.destination-section{
    padding: 100px 0;
    background: #000000;
}

.destination-card{
    background: #061212;
    border-radius: 20px;
    overflow: hidden;
    transition: 0.4s;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    height: 100%;
}

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

.destination-card img{
    width: 100%;
    height: 260px;
    object-fit: cover;
}

.destination-content{
    padding: 25px;
}

.destination-content h4{
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
}

.destination-content p{
    color: #666;
    line-height: 1.8;
    margin-bottom: 0;
}

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

@media(max-width:768px){

    .destination-hero-content h1{
        font-size: 38px;
    }

    .destination-card img{
        height: 220px;
    }

}

@media only screen and (max-width: 1199px) {

}
@media only screen and (max-width: 992px) {

}
@media only screen and (max-width: 767px) {

}