/* =============================================
   STAR GO CAB - Premium Travel & Taxi Website
   Global Design System — Clean Version
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&family=Montserrat:wght@400;600;700;800&display=swap');

/* ---- CSS Variables ---- */
:root {
  --gold: #C89B3C;
  --gold-light: #E8B84B;
  --gold-dark: #9A7328;
  --gold-pale: #FFF8E7;
  --dark: #0F172A;
  --dark-2: #1E293B;
  --dark-3: #334155;
  --text-gray: #64748B;
  --white: #FFFFFF;
  --off-white: #F8FAFC;
  --border: rgba(200, 155, 60, 0.15);
  --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.18);
  --shadow-gold: 0 8px 30px rgba(200, 155, 60, 0.25);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---- Reset & Base ---- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: 'Poppins', sans-serif;
  background: var(--off-white);
  color: var(--dark);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

input,
select,
textarea {
  font-family: inherit;
}

/* ---- Scrollbar ---- */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--off-white);
}

::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 10px;
}

/* ---- Typography ---- */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

.section-title {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  color: var(--dark);
  margin-bottom: 8px;
}

.section-subtitle {
  font-size: 0.95rem;
  color: var(--text-gray);
  max-width: 560px;
  margin: 0 auto 40px;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold-pale);
  border: 1px solid var(--border);
  color: var(--gold-dark);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 14px;
}

.section-label::before {
  content: '✦';
  color: var(--gold);
}

.text-center {
  text-align: center;
}

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

/* ---- Layout ---- */
.container {
  width: 100%;
  max-width: 1352px;
  margin: 0 auto;
  padding: 0 14px;
}

section {
  padding: 80px 0;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  transition: var(--transition);
  white-space: nowrap;
  letter-spacing: 0.3px;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
  color: var(--white);
  box-shadow: 0 4px 20px rgba(200, 155, 60, 0.4);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(200, 155, 60, 0.55);
  filter: brightness(1.08);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--gold);
  color: var(--gold);
}

.btn-outline:hover {
  background: var(--gold);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-dark {
  background: var(--dark);
  color: var(--white);
  box-shadow: var(--shadow-md);
}

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

.btn-white {
  background: var(--white);
  color: var(--dark);
  box-shadow: var(--shadow-md);
}

.btn-white:hover {
  background: var(--gold-pale);
  color: var(--gold-dark);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.82rem;
}

.btn-lg {
  padding: 17px 36px;
  font-size: 1rem;
}

/* ---- Cards ---- */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

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

.card-body {
  padding: 20px;
}

.card-title {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--dark);
}

.card-text {
  font-size: 0.875rem;
  color: var(--text-gray);
  line-height: 1.5;
}

/* ============================================
   HEADER / NAVBAR
   ============================================ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 15px rgba(0,0,0,0.08);
  transition: var(--transition);
}

.header.scrolled {
  background: var(--white);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 45px 20px;
  height: 72px;
  max-width: 1400px;
  margin: 0 auto;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-logo img {
  width: 100px;
  height: 90px;
  object-fit: contain;
  /* margin-top: 25px; */
  padding: 2px;
  border-radius: 6px;
  filter: drop-shadow(0 2px 8px rgba(200, 155, 60, 0.4));
}

.nav-logo-text {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--dark);
  line-height: 1.1;
}

.nav-logo-text span {
  display: block;
  font-size: 0.65rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--dark-2);
  padding: 8px 14px;
  border-radius: 8px;
  transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--gold);
  background: rgba(200, 155, 60, 0.1);
}

/* Dropdown Styles */
.nav-item-dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  min-width: 260px;
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius-md);
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  border: 1px solid rgba(200, 155, 60, 0.1);
  z-index: 1000;
}

.nav-item-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li a {
  display: block;
  padding: 10px 20px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--dark-2);
  transition: var(--transition);
}

.dropdown-menu li a:hover {
  background: rgba(200, 155, 60, 0.08);
  color: var(--gold);
  padding-left: 25px;
}

.nav-link i {
  font-size: 0.7rem;
  margin-left: 4px;
  transition: transform 0.3s ease;
}

.nav-item-dropdown:hover .nav-link i {
  transform: rotate(180deg);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: var(--transition);
}

/* Mobile Side Nav */
.mobile-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 999;
  opacity: 0;
  transition: opacity 0.3s;
}

.mobile-nav-overlay.active {
  opacity: 1;
  display: block;
}

.mobile-nav {
  position: fixed;
  top: 0;
  right: -300px;
  bottom: 0;
  width: 300px;
  background: var(--white);
  z-index: 1001;
  transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  padding: 24px 0;
  overflow-y: auto;
}

.mobile-nav.open {
  right: 0;
}

.mobile-nav-header {
  display: flex;
  background: var(--white);
  align-items: center;
  justify-content: space-between;
  padding: 0 20px 20px;
  border-bottom: 1px solid rgba(200, 155, 60, 0.2);
  margin-bottom: 16px;
}

.mobile-nav-close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--dark);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  transition: var(--transition);
}

.mobile-nav-close:hover {
  background: var(--dark-2);
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 24px;
  color: var(--dark-2);
  font-size: 0.95rem;
  font-weight: 500;
  transition: var(--transition);
  border-left: 3px solid transparent;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  color: var(--gold);
  background: rgba(200, 155, 60, 0.08);
  border-left-color: var(--gold);
}

/* Mobile Dropdown */
.mobile-nav-dropdown {
  width: 100%;
}

.mobile-dropdown-content {
  display: none;
  background: rgba(0, 0, 0, 0.02);
  padding-left: 15px;
}

.mobile-nav-dropdown.active .mobile-dropdown-content {
  display: block;
}

.mobile-nav-dropdown .dropdown-toggle {
  justify-content: space-between;
}

.mobile-nav-dropdown .dropdown-toggle i:last-child {
  font-size: 0.8rem;
  transition: transform 0.3s ease;
}

.mobile-nav-dropdown.active .dropdown-toggle i:last-child {
  transform: rotate(180deg);
}

.mobile-nav-footer {
  padding: 20px;
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* ============================================
   MOBILE BOTTOM NAV
   ============================================ */
.bottom-nav {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--white);
  border-top: 1px solid rgba(200, 155, 60, 0.2);
  z-index: 900;
  padding: 10px 0 14px;
  backdrop-filter: blur(20px);
}

.bottom-nav-inner {
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.bottom-nav-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  color: var(--text-gray);
  font-size: 0.65rem;
  font-weight: 500;
  transition: var(--transition);
  padding: 4px;
}

.bottom-nav-item.active,
.bottom-nav-item:hover {
  color: var(--gold);
}

.bottom-nav-item .nav-icon {
  font-size: 1.3rem;
}

.bottom-nav-item.center-btn {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  border-radius: 50%;
  width: 52px;
  height: 52px;
  margin-top: -24px;
  color: var(--white);
  box-shadow: 0 4px 20px rgba(200, 155, 60, 0.5);
  font-size: 0.6rem;
  flex: none;
}

.bottom-nav-item.center-btn .nav-icon {
  font-size: 1.4rem;
}

/* ============================================
   FLOATING BUTTONS
   ============================================ */
.float-btns {
  position: fixed;
  right: 18px;
  bottom: 100px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 850;
}

.float-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  transition: var(--transition);
  position: relative;
}

.float-btn:hover {
  transform: scale(1.12) translateY(-3px);
}

.float-btn-whatsapp {
  background: #25D366;
  color: var(--white);
}

.float-btn-call {
  background: var(--dark);
  color: var(--white);
}

.float-btn::before {
  content: attr(data-tooltip);
  position: absolute;
  right: calc(100% + 12px);
  white-space: nowrap;
  background: var(--dark);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 8px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}

.float-btn:hover::before {
  opacity: 1;
}

.pulse-ring {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
  }

  70% {
    box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/amerfort.webp');
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  transition: transform 6s ease;
}

.hero-bg.loaded {
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      rgba(15, 23, 42, 0.88) 0%,
      rgba(15, 23, 42, 0.6) 50%,
      rgba(200, 155, 60, 0.15) 100%);
}

.hero-container {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 60px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 100px 40px 60px;
}

.hero-content {
  flex: 1 1 500px;
}

.hero-booking {
  flex: 1 1 400px;
  max-width: 480px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(200, 155, 60, 0.15);
  border: 1px solid rgba(200, 155, 60, 0.4);
  color: var(--gold-light);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 50px;
  backdrop-filter: blur(10px);
  margin-bottom: 22px;
  animation: fadeInDown 0.6s ease both;
}

.hero-badge::before {
  content: '⭐';
}

.hero-title {
  font-size: clamp(2.2rem, 6vw, 4rem);
  color: var(--white);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 18px;
  animation: fadeInUp 0.7s ease 0.1s both;
  max-width: 680px;
}

.hero-title .highlight {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.18rem);
  color: rgba(255, 255, 255, 0.78);
  max-width: 540px;
  margin-bottom: 36px;
  animation: fadeInUp 0.7s ease 0.2s both;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 48px;
  animation: fadeInUp 0.7s ease 0.3s both;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  animation: fadeInUp 0.7s ease 0.4s both;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  color: var(--white);
}

.hero-stat .number {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--gold-light);
  font-family: 'Montserrat', sans-serif;
  line-height: 1;
}

.hero-stat .label {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 4px;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: bounce 2.5s infinite;
}

.scroll-line {
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}

@keyframes bounce {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(8px);
  }
}

/* ============================================
   QUICK BOOKING FORM
   ============================================ */
.booking-card {
  background: linear-gradient(135deg, var(--dark-2), var(--dark));
  border: 1px solid rgba(200, 155, 60, 0.2);
  border-radius: var(--radius-xl);
  padding: 36px;
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 10;
}

.booking-title {
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.booking-title span {
  color: var(--gold);
  font-size: 1.6rem;
}

.booking-form {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  align-items: end;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.form-control {
  background: var(--white);
  border: 1px solid rgba(200, 155, 60, 0.4);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  color: var(--dark);
  font-size: 0.9rem;
  transition: var(--transition);
  outline: none;
  -webkit-appearance: none;
}

.form-control::placeholder {
  color: var(--text-gray);
}

.form-control:focus {
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(200, 155, 60, 0.15);
}

.form-control option {
  background: var(--white);
  color: var(--dark);
}

/* ============================================
   ABOUT SECTION (Homepage)
   ============================================ */
.about-intro {
  background: var(--off-white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-img-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  height: 480px;
}

.about-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-img-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--white);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  box-shadow: var(--shadow-lg);
}

.about-img-badge .big-num {
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1;
}

.about-img-badge .sub {
  font-size: 0.78rem;
  opacity: 0.9;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 28px;
}

.about-feature {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
}

.feat-icon {
  width: 44px;
  height: 44px;
  background: var(--gold-pale);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.feat-text h5 {
  font-size: 0.9rem;
  color: var(--dark);
  margin-bottom: 4px;
}

.feat-text p {
  font-size: 0.8rem;
  color: var(--text-gray);
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services-section {
  background: var(--off-white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid transparent;
  transition: var(--transition);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--gold-pale), transparent);
  opacity: 0;
  transition: var(--transition);
}

.service-card:hover {
  border-color: var(--gold);
  transform: translateY(-8px);
  box-shadow: var(--shadow-gold);
}

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

.service-icon {
  width: 76px;
  height: 76px;
  background: linear-gradient(135deg, var(--gold-pale), rgba(200, 155, 60, 0.1));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 20px;
  position: relative;
  transition: var(--transition);
  border: 2px solid rgba(200, 155, 60, 0.2);
}

.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  transform: scale(1.1) rotate(5deg);
  box-shadow: var(--shadow-gold);
}

.service-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
  position: relative;
}

.service-desc {
  font-size: 0.85rem;
  color: var(--text-gray);
  line-height: 1.6;
  position: relative;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 600;
  margin-top: 16px;
  position: relative;
  transition: var(--transition);
}

.service-link:hover {
  gap: 10px;
}

/* ============================================
   TOUR PACKAGES SECTION
   ============================================ */
.packages-section {
  background: var(--dark);
}

.packages-section .section-title {
  color: var(--white);
}

.packages-section .section-subtitle {
  color: rgba(255, 255, 255, 0.6);
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  gap: 24px;
  margin-top: 40px;
}

.package-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--dark-2);
  border: 1px solid rgba(200, 155, 60, 0.15);
  transition: var(--transition);
  cursor: pointer;
}

.package-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}

.package-img-wrap {
  position: relative;
  height: 230px;
  overflow: hidden;
}

.package-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.package-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 50px;
  letter-spacing: 0.5px;
}

.package-duration {
  position: absolute;
  bottom: 14px;
  right: 14px;
  background: rgba(15, 23, 42, 0.85);
  color: var(--gold-light);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 50px;
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  gap: 5px;
}

.package-body {
  padding: 20px;
}

.package-title {
  font-size: 1.05rem;
  color: var(--white);
  font-weight: 700;
  margin-bottom: 8px;
}

.package-includes {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 14px;
}

.include-chip {
  background: rgba(200, 155, 60, 0.1);
  border: 1px solid rgba(200, 155, 60, 0.2);
  color: var(--gold-light);
  font-size: 0.7rem;
  padding: 3px 10px;
  border-radius: 50px;
}

.package-price {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(200, 155, 60, 0.15);
  padding-top: 14px;
}

.price-amount {
  font-size: 1.25rem;
  color: var(--gold-light);
  font-weight: 700;
}

.price-per {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.45);
}

/* Package card WhatsApp + Book Now row */
.pkg-action-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(200, 155, 60, 0.15);
  padding-top: 14px;
  gap: 10px;
}

.pkg-wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #25D366;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
  white-space: nowrap;
}

.pkg-wa-btn:hover {
  background: #1ebe5d;
  transform: translateY(-2px);
  color: #fff;
}

.pkg-wa-btn i {
  font-size: 1rem;
}

/* ============================================
   TAXI FLEET SECTION
   ============================================ */
.fleet-section {
  background: var(--off-white);
}

.fleet-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  gap: 28px;
  margin-top: 40px;
}

.fleet-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid transparent;
  transition: var(--transition);
  cursor: pointer;
}

.fleet-card:hover {
  border-color: var(--gold);
  transform: translateY(-8px);
  box-shadow: var(--shadow-gold);
}

.fleet-img-wrap {
  position: relative;
  height: 210px;
  background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
  overflow: hidden;
}

.fleet-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.fleet-card:hover .fleet-img {
  transform: scale(1.05);
}

.fleet-tag {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--dark);
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 50px;
  letter-spacing: 0.5px;
  border: 1px solid rgba(200, 155, 60, 0.3);
}

.fleet-body {
  padding: 22px;
}

.fleet-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
}

.fleet-desc {
  font-size: 0.83rem;
  color: var(--text-gray);
  margin-bottom: 16px;
}

.fleet-specs {
  display: flex;
  gap: 14px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}

.spec-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: var(--text-gray);
}

.spec-item .spec-icon {
  font-size: 1rem;
  color: var(--gold);
}

.fleet-price {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #f1f5f9;
  padding-top: 16px;
}

.fleet-rate {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dark);
}

.fleet-rate span {
  font-size: 0.78rem;
  color: var(--text-gray);
  font-weight: 400;
}

/* ============================================
   WHY CHOOSE US
   ============================================ */
.why-section {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%);
  position: relative;
  overflow: hidden;
}

.why-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(200, 155, 60, 0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.why-section .section-title {
  color: var(--white);
}

.why-section .section-subtitle {
  color: rgba(255, 255, 255, 0.55);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.why-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(200, 155, 60, 0.15);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  gap: 18px;
  transition: var(--transition);
  backdrop-filter: blur(4px);
}



.why-card:hover {
  background: rgba(200, 155, 60, 0.07);
  border-color: rgba(200, 155, 60, 0.4);
  transform: translateY(-4px);
}

.why-icon-wrap {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, rgba(200, 155, 60, 0.2), rgba(200, 155, 60, 0.05));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  border: 1px solid rgba(200, 155, 60, 0.2);
}

.why-text h4 {
  font-size: 0.95rem;
  color: var(--white);
  margin-bottom: 6px;
}

.why-text p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
}

/* ============================================
   STATS SECTION
   ============================================ */
.stats-section {
  background: var(--white);
  padding: 60px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 24px;
  text-align: center;
}

.stat-item {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.stat-number {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--gold);
  font-family: 'Montserrat', sans-serif;
  line-height: 1;
}

.stat-label {
  font-size: 0.82rem;
  color: var(--text-gray);
  margin-top: 6px;
  font-weight: 500;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-section {
  background: var(--off-white);
  overflow: hidden;
}

.reviews-track-wrapper {
  overflow: hidden;
  margin-top: 40px;
  cursor: grab;
  user-select: none;
}

.reviews-track-wrapper:active {
  cursor: grabbing;
}

.reviews-track {
  display: flex;
  gap: 24px;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.review-card {
  flex-shrink: 0;
  width: 320px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 26px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: var(--transition);
}

.review-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.review-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.reviewer-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--white);
  flex-shrink: 0;
}

.reviewer-name {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--dark);
}

.reviewer-location {
  font-size: 0.75rem;
  color: var(--text-gray);
}

.review-stars {
  color: var(--gold);
  font-size: 0.85rem;
  margin-bottom: 10px;
  letter-spacing: 2px;
}

.review-text {
  font-size: 0.85rem;
  color: var(--text-gray);
  line-height: 1.7;
  font-style: italic;
}

.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
}

.slider-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  font-size: 1rem;
  color: var(--dark);
}

.slider-btn:hover {
  background: var(--dark);
  border-color: var(--gold);
  color: var(--white);
}

.slider-dots {
  display: flex;
  gap: 8px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  cursor: pointer;
  transition: var(--transition);
}

.dot.active {
  background: var(--gold);
  width: 22px;
  border-radius: 4px;
}

/* ============================================
   GALLERY SECTION
   ============================================ */
.gallery-section {
  background: var(--dark);
}

.gallery-section .section-title {
  color: var(--white);
}

.gallery-section .section-subtitle {
  color: rgba(255, 255, 255, 0.55);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 40px;
}

.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  position: relative;
  height: 220px;
}

.gallery-item:nth-child(1) {
  grid-column: span 2;
  height: 300px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(15, 23, 42, 0.75) 100%);
  opacity: 0;
  transition: opacity 0.3s;
  display: flex;
  align-items: flex-end;
  padding: 16px;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-label {
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
}

/* ============================================
   CTA BANNER
   ============================================ */
.cta-section {
  position: relative;
  padding: 50px 0;
  background: var(--dark);
  color: var(--white);
  text-align: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 50%, var(--gold-light) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}

.cta-section::after {
  content: '';
  position: absolute;
  bottom: -40%;
  left: -5%;
  width: 300px;
  height: 300px;
  background: rgba(15, 23, 42, 0.08);
  border-radius: 50%;
}

.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.cta-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--white);
  margin-bottom: 14px;
}

.cta-subtitle {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 32px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--dark);
  padding: 70px 0 0;
  border-top: 1px solid rgba(200, 155, 60, 0.15);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 1fr);
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.footer-brand-logo img {
  width: 56px;
}

.footer-brand-text h3 {
  font-size: 1.2rem;
  color: var(--gold);
}

.footer-brand-text span {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 2px;
}

.footer-desc {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.8;
  margin-bottom: 22px;
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.social-icon {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(200, 155, 60, 0.2);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 1rem;
  transition: var(--transition);
}

.social-icon:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
  transform: translateY(-3px);
}

.footer-col h4 {
  font-size: 0.9rem;
  color: var(--white);
  font-weight: 700;
  margin-bottom: 18px;
  position: relative;
  padding-bottom: 10px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 28px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-link {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-link:hover {
  color: var(--gold);
  padding-left: 4px;
}

.footer-link::before {
  content: '›';
  color: var(--gold);
  font-size: 1rem;
}

.contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
}

.contact-icon {
  width: 36px;
  height: 36px;
  background: rgba(200, 155, 60, 0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.contact-text {
  font-size: 0.83rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.5;
}

.contact-text strong {
  color: rgba(255, 255, 255, 0.85);
  display: block;
  margin-bottom: 2px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 18px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.35);
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.35);
  transition: var(--transition);
}

.footer-bottom-links a:hover {
  color: var(--gold);
}

/* ============================================
   PAGE BANNER (Inner Pages)
   ============================================ */
.page-banner {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%);
  padding: 120px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 100%, rgba(200, 155, 60, 0.12) 0%, transparent 70%);
}

.page-banner h1 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--white);
  position: relative;
}

.page-banner h1 span {
  color: var(--gold);
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 12px;
  position: relative;
}

.breadcrumb a {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  transition: var(--transition);
}

.breadcrumb a:hover {
  color: var(--gold);
}

.breadcrumb span {
  color: var(--gold);
  font-size: 0.85rem;
}

.breadcrumb .current {
  font-size: 0.85rem;
  color: var(--gold);
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-section {
  background: var(--off-white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-info-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  gap: 16px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.contact-info-card:hover {
  box-shadow: var(--shadow-gold);
  border-color: var(--gold);
}

.contact-form-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 36px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}

.contact-form-card h3 {
  font-size: 1.3rem;
  color: var(--dark);
  margin-bottom: 24px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

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

.form-group-light {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-label-light {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--dark-3);
}

.form-control-light {
  background: var(--off-white);
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  color: var(--dark);
  font-size: 0.9rem;
  outline: none;
  transition: var(--transition);
}

.form-control-light:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200, 155, 60, 0.12);
}

textarea.form-control-light {
  resize: vertical;
  min-height: 120px;
}

.map-wrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
  margin-top: 40px;
  box-shadow: var(--shadow-md);
  height: 350px;
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ============================================
   SINGLE PACKAGE / TAXI PAGE
   ============================================ */
.single-hero {
  border-radius: var(--radius-xl);
  overflow: hidden;
  height: 400px;
  position: relative;
  margin-bottom: 32px;
}

.single-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.single-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(15, 23, 42, 0.85) 100%);
  display: flex;
  align-items: flex-end;
  padding: 32px;
}

.single-content-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 32px;
  align-items: start;
}

.single-sidebar {
  position: sticky;
  top: 90px;
}

.price-card {
  background: var(--dark);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid rgba(200, 155, 60, 0.2);
}

.price-card .big-price {
  font-size: 2.2rem;
  color: var(--gold-light);
  font-weight: 800;
  margin-bottom: 4px;
}

.price-card .price-note {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 20px;
}

.price-includes {
  margin-bottom: 24px;
}

.price-includes h4 {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 12px;
  font-weight: 500;
}

.include-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--dark-3);
  margin-bottom: 8px;
}

.include-item::before {
  content: '✓';
  color: var(--gold);
  font-weight: 700;
}

.price-card .include-item,
.single-sidebar .include-item {
  color: rgba(255, 255, 255, 0.75);
}

.detail-section {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-bottom: 22px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.detail-section h3 {
  font-size: 1.1rem;
  color: var(--dark);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--gold-pale);
}

.itinerary-item {
  display: flex;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid #f1f5f9;
}

.itinerary-item:last-child {
  border-bottom: none;
}

.day-badge {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--white);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
}

.itinerary-text h5 {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 4px;
}

.itinerary-text p {
  font-size: 0.8rem;
  color: var(--text-gray);
  line-height: 1.6;
}

/* ============================================
   SERVICES DETAIL PAGE
   ============================================ */
.service-detail-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  margin-bottom: 40px;
}

.service-detail-card.reverse {
  direction: rtl;
}

.service-detail-card.reverse>* {
  direction: ltr;
}

.service-detail-img {
  overflow: hidden;
  min-height: 300px;
}

.service-detail-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-detail-body {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-detail-body h3 {
  font-size: 1.5rem;
  color: var(--dark);
  margin-bottom: 14px;
}

.service-detail-body p {
  font-size: .88rem;
  color: var(--text-gray);
  line-height: 1.8;
  margin-bottom: 20px;
}

.service-features-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}

.service-feat-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .84rem;
  color: var(--dark-3);
}

.service-feat-item::before {
  content: '✓';
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

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

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

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

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

/* ============================================
   UTILITY CLASSES
   ============================================ */
.mt-1 {
  margin-top: 8px;
}

.mt-2 {
  margin-top: 16px;
}

.mt-3 {
  margin-top: 24px;
}

.mt-4 {
  margin-top: 32px;
}

.mb-1 {
  margin-bottom: 8px;
}

.mb-2 {
  margin-bottom: 16px;
}

.w-full {
  width: 100%;
}

.d-flex {
  display: flex;
}

.align-center {
  align-items: center;
}

.justify-between {
  justify-content: space-between;
}

.gap-1 {
  gap: 8px;
}

.gap-2 {
  gap: 16px;
}

.tag {
  display: inline-block;
  background: var(--gold-pale);
  color: var(--gold-dark);
  border: 1px solid rgba(200, 155, 60, 0.3);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 50px;
}

/* ============================================
   RESPONSIVE — TABLET (1024px)
   ============================================ */
@media (max-width: 1024px) {
  .packages-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  }

  .fleet-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  }

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

  .single-content-grid {
    grid-template-columns: 1fr;
  }

  .single-sidebar {
    position: static;
  }

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

  .about-img-wrap {
    height: 320px;
  }

  .gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
    grid-template-columns: repeat(3, 1fr);
  }

  .gallery-item:nth-child(1) {
    grid-column: span 2;
  }
}

/* ============================================
   RESPONSIVE — MOBILE (768px)
   ============================================ */
@media (max-width: 768px) {
  section {
    padding: 60px 0;
  }

  .nav-menu,
  .nav-cta {
    display: none;
  }

  .hamburger {
    display: flex !important;
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 16px;
  }

  .why-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px 14px;
  }

  .why-icon-wrap {
    margin-bottom: 8px;
  }

  .bottom-nav {
    display: block;
  }

  .float-btns {
    bottom: 80px;
    right: 14px;
  }

  .float-btn {
    width: 46px;
    height: 46px;
    font-size: 1.2rem;
  }

  .hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  }

  .hero-container {
    padding: 80px 20px 60px !important;
    gap: 40px;
  }

  .hero-content {
    text-align: center;
  }

  .hero-subtitle {
    margin-inline: auto;
  }

  .hero-buttons,
  .hero-stats {
    justify-content: center;
  }

  .hero-booking {
    max-width: 100%;
  }

  .hero-stats {
    gap: 18px;
  }

  .booking-card {
    border-radius: var(--radius-lg);
    padding: 20px 16px;
  }

  .booking-title {
    font-size: 1.15rem;
    margin-bottom: 16px;
    justify-content: center;
  }

  .booking-title span {
    font-size: 1.35rem;
  }

  .form-control {
    padding: 10px 14px;
    font-size: 0.85rem;
  }

  .form-label {
    font-size: 0.75rem;
  }

  .booking-form {
    grid-template-columns: 1fr;
    gap: 12px;
  }

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

  .service-card {
    padding: 22px 18px;
  }

  /* Fleet: horizontal scroll slider on mobile */
  .fleet-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  gap: 25px;
    gap: 16px !important;
    overflow-x: visible !important;
    width: 100% !important;
    padding-bottom: 0 !important;
  }

  /* Mobile grid override for packages.html - Changed to 1 column */
  .grid-on-mobile {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }

  .grid-on-mobile .package-card {
    flex: unset !important;
    scroll-snap-align: unset !important;
  }

  .packages-grid::-webkit-scrollbar,
  .fleet-grid::-webkit-scrollbar {
    display: none;
  }

  .fleet-card {
    flex: 0 0 85%;
    scroll-snap-align: center;
    margin-right: 12px;
    border-radius: var(--radius-lg) !important;
  }

  .package-card {
    width: 100% !important;
    margin-right: 0 !important;
  }

  .package-card:last-child,
  .fleet-card:last-child {
    margin-right: 0;
  }

  .gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
    grid-template-columns: 1fr 1fr !important;
  }

  .gallery-item {
    height: 160px !important;
  }

  .gallery-item:nth-child(1) {
    grid-column: span 2;
    height: 200px !important;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-bottom-links {
    justify-content: center;
  }

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

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

  .service-detail-card {
    grid-template-columns: 1fr;
  }

  .service-detail-card.reverse {
    direction: ltr;
  }

  .service-detail-img {
    height: 220px;
    min-height: unset;
  }

  .service-detail-body {
    padding: 24px;
  }

  body {
    padding-bottom: 70px;
  }
}

/* ============================================
   RESPONSIVE — SMALL MOBILE (480px)
   ============================================ */
@media (max-width: 480px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

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

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

  .hero-buttons {
    flex-direction: column;
  }

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

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .review-card {
    width: 280px;
  }

  .gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
    grid-template-columns: 1fr !important;
  }

  .gallery-item {
    height: 180px !important;
  }

  .gallery-item:nth-child(1) {
    grid-column: span 1 !important;
    height: 220px !important;
  }

  .package-card,
  .fleet-card {
    flex: 0 0 92%;
  }
}

/* ============================================
   PREMIUM TAXI SECTION
   ============================================ */
.premium-taxi-section {
  background: #f5f7fa;
  padding: 80px 0;
}

/* Category heading row */
.taxi-category-label {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.taxi-cat-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
}

.taxi-category-label>span:not(.taxi-cat-icon) {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  white-space: nowrap;
}

.taxi-cat-line {
  flex: 1;
  height: 2px;
  background: linear-gradient(to right, rgba(200, 155, 60, 0.4), transparent);
  border-radius: 2px;
}

/* Grid — 3 columns desktop */
.premium-taxi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 8px;
}

/* Individual Card */
.ptaxi-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.07);
  border: 1.5px solid #ececec;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  cursor: pointer;
}

.ptaxi-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 36px rgba(200, 155, 60, 0.18);
  border-color: var(--gold);
}

.ptaxi-card.ptaxi-featured {
  border-color: var(--gold);
  box-shadow: 0 6px 24px rgba(200, 155, 60, 0.22);
}

/* Image wrapper */
.ptaxi-img-wrap {
  position: relative;
  height: 200px;
  background: linear-gradient(135deg, #f0f4f8, #e2e8f0);
  overflow: hidden;
}

.ptaxi-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.ptaxi-card:hover .ptaxi-img {
  transform: scale(1.06);
}

/* Badge on image */
.ptaxi-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--dark);
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 700;
  padding: 4px 11px;
  border-radius: 50px;
  letter-spacing: 0.5px;
  border: 1px solid rgba(200, 155, 60, 0.35);
}

.ptaxi-badge-gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #fff;
  border: none;
}

/* Card body */
.ptaxi-body {
  padding: 20px 20px 22px;
}

.ptaxi-name {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
}

.ptaxi-stars {
  color: #f5a623;
  font-size: 1rem;
  margin-bottom: 14px;
  letter-spacing: 1px;
}

.ptaxi-stars span {
  font-size: 0.78rem;
  color: var(--text-gray);
  letter-spacing: 0;
  font-weight: 400;
}

.half-star {
  color: #f5a623;
  font-size: 0.85rem;
}

/* Info rows */
.ptaxi-info {
  border-top: 1px solid #f0f0f0;
  border-bottom: 1px solid #f0f0f0;
  padding: 10px 0;
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ptaxi-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: #555;
}

.ptaxi-row strong {
  font-weight: 700;
  color: var(--dark);
}

/* Contact Now button */
.ptaxi-btn {
  display: block;
  text-align: center;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 12px 20px;
  border-radius: 10px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(200, 155, 60, 0.3);
}

.ptaxi-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(200, 155, 60, 0.45);
  color: #fff;
}

/* WhatsApp button inside taxi card */
.ptaxi-wa-btn {
  display: block;
  text-align: center;
  background: #25D366;
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 11px 20px;
  border-radius: 10px;
  transition: background 0.2s, transform 0.2s;
  text-decoration: none;
  margin-top: 8px;
}

.ptaxi-wa-btn:hover {
  background: #1ebe5d;
  transform: translateY(-2px);
  color: #fff;
}

.ptaxi-wa-btn i {
  margin-right: 6px;
}

/* ── RESPONSIVE: 2 columns on tablet + mobile ── */
@media (max-width: 1024px) {
  .premium-taxi-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
}

@media (max-width: 768px) {
  .premium-taxi-section {
    padding: 30px 0;
  }

  .premium-taxi-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .ptaxi-img-wrap {
    height: 120px;
  }

  .ptaxi-body {
    padding: 10px;
  }

  .ptaxi-name {
    font-size: 0.95rem;
  }

  .taxi-category-label {
    margin-bottom: 16px;
  }

  .taxi-category-label>span:not(.taxi-cat-icon) {
    font-size: 0.95rem;
  }

  .ptaxi-info {
    padding: 6px 0;
    margin-bottom: 12px;
  }

  .ptaxi-btn {
    padding: 8px 12px;
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .premium-taxi-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .ptaxi-img-wrap {
    height: 100px;
  }

  .ptaxi-name {
    font-size: 0.85rem;
  }

  .ptaxi-row {
    font-size: 0.7rem;
  }

  .ptaxi-btn {
    font-size: 0.75rem;
    padding: 8px 10px;
  }

  .ptaxi-stars {
    font-size: 0.8rem;
    margin-bottom: 8px;
  }

  .taxi-category-label>span:not(.taxi-cat-icon) {
    font-size: 0.85rem;
  }

  .grid-on-mobile {
    grid-template-columns: 1fr !important;
  }
}
@media (max-width: 768px) {
  .hero { min-height: 60vh; padding-top: 60px; }
  .hero-container { padding: 40px 15px !important; }
  .packages-grid, .fleet-grid {
    display: flex !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory;
    gap: 15px !important;
    padding-bottom: 20px;
    -webkit-overflow-scrolling: touch;
  }
  .package-card, .fleet-card {
    flex: 0 0 280px !important;
    scroll-snap-align: center;
  }
  .stat-item {
     box-shadow: var(--shadow-sm);
     border-radius: var(--radius-md);
     border: 1px solid rgba(0,0,0,0.05);
  }
}

/* Mega Menu Styles */
@media (min-width: 992px) {
  .nav-item-dropdown.mega-dropdown {
    position: static;
  }
  
  .dropdown-menu.mega-menu {
    min-width: 800px;
    width: max-content;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    padding: 25px;
    gap: 5px 25px;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    border-top: 3px solid var(--gold);
    border-radius: 0 0 var(--radius-md) var(--radius-md);
  }
  
  .nav-item-dropdown.mega-dropdown:hover .dropdown-menu.mega-menu {
    transform: translateX(-50%) translateY(0);
  }
  
  .mega-menu li a {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    font-size: 0.95rem;
    font-weight: 500;
  }
  
  .mega-menu li a i {
    color: var(--gold);
    margin-right: 12px;
    font-size: 0.85rem;
    transition: transform 0.3s ease;
  }
  
  .mega-menu li a:hover {
    padding-left: 15px;
  }
  
  .mega-menu li a:hover i {
    transform: translateX(5px);
  }
}

@media (max-width: 991px) {
  .dropdown-menu.mega-menu {
    display: flex;
    flex-direction: column;
  }
  .mega-menu li a i {
    color: var(--gold);
    margin-right: 10px;
    font-size: 0.85rem;
  }
}
