/* ==========================================================================
   NAVEEN CABS - PREMIUM STYLE SHEET
   ========================================================================== */

/* ===== DESIGN SYSTEM & VARIABLES ===== */
:root {
  /* Colors - Matched to NAVEEN CABS Logo */
  --primary-emerald: hsl(114, 64%, 24%);
  /* Forest Green */
  --primary-emerald-hover: hsl(114, 64%, 32%);
  --primary-emerald-light: hsl(114, 64%, 96%);
  --primary-emerald-glow: rgba(30, 101, 22, 0.15);

  --accent-amber: hsl(33, 100%, 47%);
  /* Orange */
  --accent-amber-hover: hsl(33, 100%, 40%);

  --dark-slate-950: hsl(212, 78%, 10%);
  /* Deep Navy */
  --dark-slate-900: hsl(212, 78%, 15%);
  /* Navy Blue */
  --dark-slate-800: hsl(212, 50%, 22%);
  --dark-slate-700: hsl(212, 35%, 30%);

  --light-slate-50: hsl(210, 40%, 98%);
  --light-slate-100: hsl(210, 40%, 96%);
  --light-slate-200: hsl(210, 30%, 90%);
  --light-slate-600: hsl(215, 16%, 47%);

  --text-dark: hsl(222, 47%, 12%);
  --text-muted: hsl(215, 16%, 47%);
  --text-light: hsl(210, 40%, 98%);
  --text-light-muted: hsl(210, 30%, 80%);

  /* Glassmorphism */
  --glass-bg: rgba(255, 255, 255, 0.8);
  --glass-bg-dark: rgba(15, 23, 42, 0.85);
  --glass-border: rgba(255, 255, 255, 0.2);
  --glass-border-dark: rgba(255, 255, 255, 0.08);

  /* Typography */
  --font-headings: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Transitions & Animation */
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s ease;

  /* Shadows */
  --shadow-sm: 0 2px 8px -2px rgba(15, 23, 42, 0.08);
  --shadow-md: 0 12px 24px -4px rgba(15, 23, 42, 0.08), 0 4px 12px -2px rgba(15, 23, 42, 0.04);
  --shadow-lg: 0 24px 48px -12px rgba(15, 23, 42, 0.12), 0 8px 24px -4px rgba(15, 23, 42, 0.06);
  --shadow-glow: 0 0 25px rgba(16, 185, 129, 0.3);

  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;

  /* Site Layout */
  --header-height: 80px;
}

/* ===== RESET & BASE STYLE ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--light-slate-50);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-headings);
  font-weight: 700;
  line-height: 1.25;
  color: var(--text-dark);
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

ul,
ol {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button,
input,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
}

button {
  cursor: pointer;
}

/* ===== LAYOUT & REUSABLE COMPONENTS ===== */
section {
  padding: 100px 0;
  position: relative;
}

.section-dark {
  background-color: var(--dark-slate-950);
  color: var(--text-light);
}

.section-dark h2 {
  color: var(--text-light);
}

.section-wrap {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-head {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 60px auto;
}

.section-head h2 {
  font-size: 2.5rem;
  margin-top: 10px;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.section-head h2::after {
  content: '';
  display: block;
  width: 80px;
  height: 5px;
  background: linear-gradient(90deg, var(--primary-emerald), #22c55e);
  margin: 15px auto 0 auto;
  border-radius: 10px;
}

.section-head p {
  color: var(--text-muted);
  font-size: 1.1rem;
}

.section-head p.light {
  color: var(--text-light-muted);
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-headings);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--primary-emerald);
  padding: 6px 16px;
  background-color: var(--primary-emerald-light);
  border-radius: var(--radius-full);
}

.eyebrow-light {
  color: var(--text-light);
  background-color: rgba(255, 255, 255, 0.1);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-headings);
  font-weight: 600;
  padding: 12px 28px;
  border-radius: var(--radius-md);
  transition: var(--transition-smooth);
}

.btn-lg {
  padding: 16px 36px;
  font-size: 1.1rem;
}

.btn-cta {
  background: linear-gradient(135deg, var(--primary-emerald), var(--primary-emerald-hover));
  color: white;
  box-shadow: 0 4px 14px rgba(16, 185, 129, 0.4);
}

.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.6);
}

.btn-ghost {
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: white;
}

.btn-ghost:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: white;
  transform: translateY(-2px);
}

.btn-outline-dark {
  border: 2px solid var(--text-dark);
  color: var(--text-dark);
  background: transparent;
}

.btn-outline-dark:hover {
  background-color: var(--text-dark);
  color: white;
  transform: translateY(-2px);
}

.btn-dark-solid {
  background-color: var(--dark-slate-800);
  color: white;
}

.btn-dark-solid:hover {
  background-color: var(--dark-slate-700);
  transform: translateY(-2px);
}

.btn-outline-orange {
  border: 2px solid var(--accent-amber);
  color: var(--accent-amber);
}

.btn-outline-orange:hover {
  background-color: var(--accent-amber);
  color: white;
  transform: translateY(-2px);
}

.w-full {
  width: 100%;
}

.gradient-text {
  background: linear-gradient(135deg, var(--primary-emerald), #22c55e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ===== FLOATING ACTION BUTTONS ===== */
.fab-call,
.fab-whatsapp,
.scroll-top {
  position: fixed;
  width: 56px;
  height: 56px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
  box-shadow: var(--shadow-lg);
  z-index: 999;
  transition: var(--transition-smooth);
}

.fab-call {
  bottom: 24px;
  left: 24px;
  background-color: #2563eb;
}

.fab-call:hover {
  transform: scale(1.1);
  background-color: #1d4ed8;
}

.fab-whatsapp {
  bottom: 24px;
  right: 24px;
  background-color: #25d366;
}

.fab-whatsapp:hover {
  transform: scale(1.1);
  background-color: #128c7e;
}

.scroll-top {
  bottom: 96px;
  right: 24px;
  background-color: var(--dark-slate-800);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
}

.scroll-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top:hover {
  background-color: var(--primary-emerald);
  transform: scale(1.1);
}

/* ===== HEADER & NAVIGATION ===== */
#main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  transition: var(--transition-smooth);
  display: flex;
  align-items: center;
}

#main-header.scrolled {
  height: 70px;
  background-color: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  max-width: 1240px;
  width: 100%;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-icon {
  font-size: 2rem;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-main {
  font-family: var(--font-headings);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--dark-slate-900);
  line-height: 1;
}

.logo-main .green {
  color: var(--primary-emerald);
}

.logo-sub {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--light-slate-600);
}

.nav-list {
  display: flex;
  gap: 32px;
}

.nav-link {
  font-family: var(--font-headings);
  font-weight: 600;
  color: var(--dark-slate-700);
  font-size: 0.95rem;
  position: relative;
  padding: 8px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2.5px;
  background-color: var(--primary-emerald);
  transition: var(--transition-fast);
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary-emerald);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
}

.header-book-btn {
  padding: 10px 22px;
  font-size: 0.9rem;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  width: 30px;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2.5px;
  background-color: var(--dark-slate-900);
  border-radius: var(--radius-full);
  transition: var(--transition-fast);
}

.hamburger.active span:nth-child(1) {
  transform: translateY(8.5px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-8.5px) rotate(-45deg);
}

/* ===== HERO SECTION ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: calc(var(--header-height) + 40px);
  padding-bottom: 80px;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('images/hero-bg.png');
  background-size: cover;
  background-position: center;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(2, 6, 23, 0.80) 0%, rgba(2, 6, 23, 0.60) 60%, rgba(2, 6, 23, 0.25) 100%);
  z-index: 2;
}

.hero-inner {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: center;
}

.hero-content {
  color: white;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  background-color: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: var(--primary-emerald);
  padding: 8px 18px;
  border-radius: var(--radius-full);
  font-family: var(--font-headings);
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 24px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.hero-heading {
  font-size: 4.5rem;
  font-weight: 900;
  color: white;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -0.04em;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.hero-sub {
  font-size: 1.2rem;
  color: var(--text-light-muted);
  margin-bottom: 40px;
  max-width: 580px;
}

.hero-btns {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
}

.hero-phone {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 48px;
}

.phone-ring {
  width: 50px;
  height: 50px;
  background-color: var(--primary-emerald);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  box-shadow: var(--shadow-glow);
  animation: pulse-ring 2s infinite;
}

.hero-phone small {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-light-muted);
}

.hero-phone a {
  font-family: var(--font-headings);
  font-size: 1.6rem;
  font-weight: 800;
  color: white;
}

.hero-phone a:hover {
  color: var(--primary-emerald);
}

/* Stats */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-num {
  font-family: var(--font-headings);
  font-size: 2.2rem;
  font-weight: 800;
  color: white;
  line-height: 1;
}

.stat-plus {
  color: var(--primary-emerald);
  font-size: 1.8rem;
  font-weight: 800;
}

.stat-text {
  font-family: var(--font-headings);
  font-size: 2.2rem;
  font-weight: 800;
  color: white;
  line-height: 1;
}

.stat-item small {
  font-size: 0.75rem;
  color: var(--text-light-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 4px;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.15);
}

/* Booking Card (Glassmorphic) */
.booking-card {
  background-color: var(--glass-bg-dark);
  border: 1px solid var(--glass-border-dark);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  color: white;
}

.booking-card-header {
  margin-bottom: 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 20px;
}

.booking-card-header h2 {
  font-size: 1.8rem;
  color: white;
  display: flex;
  align-items: center;
  gap: 12px;
}

.booking-card-header h2 i {
  color: var(--primary-emerald);
}

.booking-card-header p {
  color: var(--text-light-muted);
  font-size: 0.95rem;
  margin-top: 4px;
}

#book-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.field-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

label {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-light-muted);
}

.req {
  color: #ef4444;
}

.input-wrap {
  position: relative;
}

.input-wrap i {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--primary-emerald);
  font-size: 1.1rem;
}

.field {
  width: 100%;
  background-color: rgba(255, 255, 255, 0.06);
  border: 1.5px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 14px 16px 14px 48px;
  color: white;
  transition: var(--transition-fast);
}

.field::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.field:focus {
  border-color: var(--primary-emerald);
  background-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.2);
}

/* Custom Dropdown Styling */
.select-wrap {
  position: relative;
}

.select-wrap select {
  appearance: none;
  cursor: pointer;
}

.select-wrap select option {
  background-color: var(--dark-slate-900);
  color: white;
}

.select-wrap .chevron {
  position: absolute;
  right: 16px;
  left: auto;
  pointer-events: none;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.8rem;
}

textarea.field {
  padding-top: 14px;
  resize: none;
}

.submit-btn {
  margin-top: 10px;
  width: 100%;
  padding: 16px;
  font-size: 1.05rem;
}

.form-note {
  font-size: 0.8rem;
  color: var(--text-light-muted);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

/* Input validation visual states */
.field.error {
  border-color: #ef4444 !important;
  box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.2) !important;
}

/* ===== FLEET SECTION ===== */
.fleet-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 32px;
}

.fleet-card {
  background-color: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.fleet-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.fleet-img {
  position: relative;
  height: 230px;
  overflow: hidden;
}

.fleet-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.fleet-card:hover .fleet-img img {
  transform: scale(1.08);
}

#tempo-img {
  transform: scale(1.18);
}
.fleet-card:hover #tempo-img {
  transform: scale(1.25);
}

.fleet-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background-color: var(--dark-slate-900);
  color: white;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-family: var(--font-headings);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: var(--shadow-sm);
}

.fleet-tag-green {
  background-color: var(--primary-emerald);
}

.fleet-body {
  padding: 32px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.fleet-body h3 {
  font-size: 1.5rem;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.fleet-body h3 small {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 500;
}

.fleet-body p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 24px;
}

.fleet-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding-top: 20px;
  border-top: 1px solid var(--light-slate-200);
  margin-bottom: 28px;
}

.fleet-specs li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--dark-slate-700);
}

.fleet-specs li i {
  color: var(--primary-emerald);
  font-size: 1rem;
  width: 16px;
}

.fleet-footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  border-top: 1px solid var(--light-slate-200);
}

.fleet-price small {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
}

.fleet-price strong {
  font-family: var(--font-headings);
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--dark-slate-900);
}

.fleet-price strong span {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
}

/* ===== LOCAL RENTAL SECTION ===== */
.pricing-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}

.pricing-grid-3 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.pricing-card {
  background-color: var(--dark-slate-900);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  padding: 48px;
  position: relative;
  transition: var(--transition-smooth);
}

.pricing-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.12);
}

.pricing-card-featured {
  background: linear-gradient(135deg, var(--dark-slate-900), var(--dark-slate-800));
  border: 2px solid var(--primary-emerald);
  box-shadow: 0 10px 30px rgba(16, 185, 129, 0.1);
}

.pricing-badge {
  position: absolute;
  top: 24px;
  right: 24px;
  background-color: var(--primary-emerald);
  color: white;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-family: var(--font-headings);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.pricing-icon {
  width: 60px;
  height: 60px;
  background-color: rgba(16, 185, 129, 0.1);
  color: var(--primary-emerald);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 28px;
}

.pricing-card h3 {
  font-size: 1.8rem;
  color: white;
  margin-bottom: 12px;
}

.pricing-amount {
  font-family: var(--font-headings);
  font-size: 3rem;
  font-weight: 900;
  color: white;
  margin-bottom: 20px;
}

.pricing-split {
  margin-bottom: 24px;
}

.pricing-split-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-split-row:last-child {
  border-bottom: none;
}

.pricing-split-label {
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--text-light-muted);
}

.pricing-split-value {
  font-family: var(--font-headings);
  font-size: 2.2rem;
  font-weight: 800;
  color: white;
}

.pricing-card p {
  color: var(--text-light-muted);
  font-size: 0.95rem;
  margin-bottom: 32px;
}

.pricing-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
}

.pricing-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--text-light-muted);
}

.pricing-list li i {
  color: var(--primary-emerald);
}

/* ===== AIRPORT SECTION ===== */
.airport-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.airport-content h2 {
  font-size: 2.5rem;
  margin-top: 12px;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.airport-content p {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 36px;
}

.airport-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 48px;
}

.airport-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--dark-slate-700);
}

.airport-features li i {
  color: var(--primary-emerald);
  font-size: 1.1rem;
}

.airport-price-box {
  background-color: var(--light-slate-100);
  border-radius: var(--radius-md);
  padding: 24px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: var(--shadow-sm);
}

.airport-price-box small {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
}

.airport-price-box strong {
  font-family: var(--font-headings);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--dark-slate-900);
}

.airport-img {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.airport-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.airport-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background-color: white;
  padding: 16px 24px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: var(--shadow-md);
}

.airport-badge i {
  font-size: 1.8rem;
  color: var(--primary-emerald);
}

.airport-badge strong {
  display: block;
  font-size: 1rem;
  color: var(--dark-slate-900);
}

.airport-badge small {
  color: var(--text-muted);
  font-size: 0.8rem;
}
/* ===== DESTINATION CARDS (Visual Option 1) ===== */
.dest-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 650px;
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow-md);
  transition: var(--transition-smooth);
}

.dest-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(0,0,0,0.3);
}

.dest-card-title {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 30px 20px 20px 20px;
  background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
  color: white;
  z-index: 1;
  transition: var(--transition-smooth);
}
.dest-card-title h3 {
  margin: 0;
  font-size: 1.5rem;
  color: white;
}

.dest-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: white;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 2;
}

.dest-card:hover .dest-overlay {
  transform: translateY(0);
}



.dest-rate {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-emerald);
  margin-bottom: 15px;
}

.dest-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
  font-size: 0.9rem;
}

.dest-list li {
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.dest-list li i {
  color: var(--primary-emerald);
}

/* ===== OUTSTATION SECTION ===== */
.outstation-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}

.outstation-card {
  background-color: var(--dark-slate-900);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: flex;
  flex-direction: column;
  transition: var(--transition-smooth);
}

.outstation-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.12);
}

.outstation-card-featured {
  border: 2px solid var(--primary-emerald);
  position: relative;
}

.outstation-icon {
  width: 50px;
  height: 50px;
  background-color: rgba(16, 185, 129, 0.1);
  color: var(--primary-emerald);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 24px;
}

.outstation-card h3 {
  color: white;
  font-size: 1.6rem;
  margin-bottom: 8px;
}

.outstation-rate {
  font-family: var(--font-headings);
  font-size: 2.2rem;
  font-weight: 800;
  color: white;
  margin-bottom: 20px;
}

.outstation-rate span {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-light-muted);
}

.outstation-card p {
  color: var(--text-light-muted);
  font-size: 0.95rem;
  margin-bottom: 28px;
}

.outstation-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 36px;
  flex-grow: 1;
}

.outstation-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--text-light-muted);
}

.outstation-list li i {
  color: var(--primary-emerald);
}

.routes-list li {
  font-size: 0.95rem;
}

.routes-list li i {
  color: var(--accent-amber);
}

/* ===== FULL DAY PACKAGE SECTION ===== */
.fullday-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 32px;
}

.fullday-card {
  background-color: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.fullday-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.fullday-card-featured {
  border: 2px solid var(--primary-emerald);
}

.fullday-img {
  height: 180px;
  width: 100%;
  overflow: hidden;
}

.fullday-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.fullday-card:hover .fullday-img img {
  transform: scale(1.08);
}

.fullday-body {
  padding: 24px 32px 32px 32px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.fullday-card h3 {
  font-size: 1.35rem;
  margin-bottom: 12px;
}

.fullday-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 24px;
  flex-grow: 1;
}

.fullday-details {
  display: flex;
  justify-content: space-between;
  padding: 16px 0;
  border-top: 1px solid var(--light-slate-200);
  border-bottom: 1px solid var(--light-slate-200);
  margin-bottom: 24px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dark-slate-700);
}

.fullday-details span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.fullday-details i {
  color: var(--primary-emerald);
}

/* ===== WHY CHOOSE US ===== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 32px;
}

.why-card {
  background-color: var(--dark-slate-900);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-md);
  padding: 32px;
  transition: var(--transition-smooth);
}

.why-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.12);
}

.why-icon {
  width: 48px;
  height: 48px;
  background-color: rgba(16, 185, 129, 0.1);
  color: var(--primary-emerald);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 20px;
}

.why-card h4 {
  color: white;
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.why-card p {
  color: var(--text-light-muted);
  font-size: 0.88rem;
  line-height: 1.5;
}

/* ===== TESTIMONIALS ===== */
.testimonial-slider {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  padding: 20px 0;
}

.testimonial-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  width: 100%;
}

.testimonial-slide {
  flex-shrink: 0;
  width: 100%;
  padding: 0 40px;
  text-align: center;
}

.t-quote {
  font-size: 2.5rem;
  color: var(--primary-emerald-light);
  line-height: 1;
  margin-bottom: 16px;
}

.t-stars {
  color: var(--accent-amber);
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.t-text {
  font-family: var(--font-headings);
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.6;
  color: var(--dark-slate-800);
  margin-bottom: 28px;
}

.t-author-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.t-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid white;
  box-shadow: var(--shadow-sm);
}

.t-author-info {
  text-align: left;
}

.t-author-info strong {
  display: block;
  font-size: 1.1rem;
  color: var(--dark-slate-900);
}

.t-author-info small {
  display: block;
  color: var(--text-muted);
  font-size: 0.85rem;
}

.t-verified {
  display: block;
  font-size: 0.8rem;
  color: var(--primary-emerald);
  margin-top: 4px;
  font-weight: 500;
}

.testimonial-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 40px;
}

.t-btn {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  border: 1.5px solid var(--light-slate-200);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark-slate-700);
  transition: var(--transition-fast);
}

.t-btn:hover {
  background-color: var(--dark-slate-900);
  color: white;
  border-color: var(--dark-slate-900);
}

.t-dots {
  display: flex;
  gap: 8px;
}

.t-dot {
  width: 8px;
  height: 8px;
  border-radius: var(--radius-full);
  background-color: var(--light-slate-200);
  cursor: pointer;
  transition: var(--transition-fast);
}

.t-dot.active {
  background-color: var(--primary-emerald);
  width: 20px;
}

/* ===== POPULAR DESTINATIONS ===== */
.dest-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 32px;
}

.dest-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 280px;
  box-shadow: var(--shadow-md);
  transition: var(--transition-smooth);
}

.dest-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.dest-card:hover .dest-img {
  transform: scale(1.08);
}

.dest-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(2, 6, 23, 0.95) 10%, rgba(2, 6, 23, 0.4) 60%, rgba(2, 6, 23, 0.1) 100%);
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: white;
}

.dest-emoji {
  font-size: 1.8rem;
  margin-bottom: 8px;
}

.dest-overlay h3 {
  color: white;
  font-size: 1.6rem;
  margin-bottom: 8px;
}

.dest-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.dest-meta span {
  font-size: 0.9rem;
  color: var(--text-light-muted);
}

.dest-btn {
  font-family: var(--font-headings);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary-emerald);
  background-color: white;
  padding: 8px 18px;
  border-radius: var(--radius-full);
}

.dest-btn:hover {
  background-color: var(--primary-emerald);
  color: white;
}

/* ===== CONTACT SECTION ===== */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-detail-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 36px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.contact-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background-color: var(--primary-emerald-light);
  color: var(--primary-emerald);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.contact-icon.green {
  background-color: rgba(37, 211, 102, 0.1);
  color: #25d366;
}

.contact-icon.orange {
  background-color: rgba(249, 115, 22, 0.1);
  color: #f97316;
}

.contact-item strong {
  display: block;
  font-size: 0.95rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}

.contact-item a,
.contact-item span {
  font-family: var(--font-headings);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--dark-slate-900);
}

.contact-item a:hover {
  color: var(--primary-emerald);
}

.contact-cta-row {
  display: flex;
  gap: 16px;
  margin-bottom: 36px;
}

.contact-cta-btn {
  flex: 1;
  padding: 12px;
  font-size: 0.9rem;
}

.map-frame {
  height: 250px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--light-slate-200);
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Contact Form Card */
.contact-form-card {
  background-color: white;
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
}

.contact-form-card h3 {
  font-size: 1.8rem;
  margin-bottom: 8px;
}

.contact-form-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 32px;
}

#contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cfield {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cfield label {
  color: var(--dark-slate-700);
  font-size: 0.8rem;
}

.cfield-input {
  width: 100%;
  border: 1.5px solid var(--light-slate-200);
  background-color: var(--light-slate-50);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  color: var(--text-dark);
  transition: var(--transition-fast);
}

.cfield-input::placeholder {
  color: var(--text-muted);
  opacity: 0.6;
}

.cfield-input:focus {
  border-color: var(--primary-emerald);
  background-color: white;
  box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.1);
}

textarea.cfield-input {
  resize: none;
}

/* Alerts */
.form-alert {
  padding: 14px 20px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 24px;
  display: none;
}

.form-alert.success {
  display: block;
  background-color: rgba(16, 185, 129, 0.1);
  color: var(--primary-emerald-hover);
  border: 1px solid rgba(16, 185, 129, 0.2);
}

.form-alert.error {
  display: block;
  background-color: rgba(239, 68, 68, 0.1);
  color: #ef4444;
  border: 1px solid rgba(239, 68, 68, 0.2);
}

/* ===== FOOTER ===== */
#footer {
  background-color: var(--dark-slate-950);
  color: var(--text-light-muted);
  padding: 80px 0 30px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px 60px 24px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
  gap: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-brand p {
  margin-top: 20px;
  margin-bottom: 24px;
  line-height: 1.5;
  font-size: 0.9rem;
}

.footer-logo {
  font-family: var(--font-headings);
  font-size: 1.8rem;
  font-weight: 800;
  color: white;
}

.footer-logo span {
  color: var(--primary-emerald);
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.fsocial {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  background-color: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: var(--transition-fast);
}

.fsocial:hover {
  background-color: var(--primary-emerald);
  transform: translateY(-2px);
}

.footer-links-col h4,
.footer-contact-col h4 {
  font-family: var(--font-headings);
  color: white;
  font-size: 1.1rem;
  margin-bottom: 24px;
}

.footer-links-col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links-col a {
  font-size: 0.9rem;
  color: var(--text-light-muted);
}

.footer-links-col a:hover {
  color: white;
  padding-left: 4px;
}

.footer-contact-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.fcontact-row {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
}

.fcontact-row i {
  color: var(--primary-emerald);
  width: 16px;
}

.fcontact-row a:hover {
  color: white;
}

.footer-wa-btn {
  margin-top: 12px;
  width: 100%;
  padding: 12px;
  font-size: 0.9rem;
}

.footer-bottom {
  max-width: 1240px;
  margin: 30px auto 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a:hover {
  color: white;
}

/* ===== ANIMATIONS & REVEAL CLASSES ===== */
@keyframes pulse-ring {
  0% {
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4);
  }

  70% {
    box-shadow: 0 0 0 12px rgba(16, 185, 129, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 1024px) {
  .hero-heading {
    font-size: 3.5rem;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .booking-card {
    max-width: 550px;
    margin: 0 auto;
  }

  .airport-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .airport-img {
    order: -1;
    max-height: 400px;
  }

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .footer-inner {
    grid-template-columns: 1.5fr 1fr 1fr;
  }

  .footer-contact-col {
    grid-column: span 3;
  }
}

@media (max-width: 768px) {
  section {
    padding: 70px 0;
  }

  .section-head h2 {
    font-size: 2rem;
  }

  #main-header {
    background-color: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
  }

  .hamburger {
    display: flex;
  }

  .nav-list {
    position: fixed;
    top: var(--header-height);
    left: -100%;
    width: 100%;
    height: calc(100vh - var(--header-height));
    background-color: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    transition: var(--transition-smooth);
    border-top: 1px solid var(--glass-border);
    z-index: 998;
  }

  .nav-list.active {
    left: 0;
  }

  .nav-link {
    font-size: 1.25rem;
  }

  .header-actions {
    display: none;
  }

  .hero-heading {
    font-size: 2.5rem;
  }

  .hero-btns {
    flex-direction: column;
  }

  .pricing-grid-2,
  .pricing-grid-3 {
    grid-template-columns: 1fr;
  }

  .outstation-grid {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .footer-contact-col {
    grid-column: span 1;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
  }

  .contact-cta-row {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .hero-stats {
    flex-wrap: wrap;
    gap: 16px;
  }

  .stat-divider {
    display: none;
  }

  .field-row {
    grid-template-columns: 1fr;
  }

  .booking-card {
    padding: 24px;
  }

  .t-slide {
    padding: 0 10px;
  }

  .t-text {
    font-size: 1.15rem;
  }
}


