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

:root {
  --orange: #FF6B00;
  --orange-light: #FF8C38;
  --orange-dark: #E05A00;
  --navy: #0A1628;
  --navy-light: #142240;
  --navy-mid: #1E3A5F;
  --white: #FFFFFF;
  --gray: #F5F5F5;
  --text-dark: #1a1a2e;
  --text-muted: #6B7280;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text-dark);
  overflow-x: hidden;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(10, 22, 40, 0.95);
  backdrop-filter: blur(10px);
  padding: 0 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  border-bottom: 2px solid var(--orange);
  transition: all 0.3s;
}

.navbar.scrolled {
  background: var(--navy);
  box-shadow: 0 4px 30px rgba(0,0,0,0.4);
}

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

.logo-icon {
  width: 42px; height: 42px;
  background: var(--orange);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
}

.logo-text {
  font-family: 'Bebas Neue', cursive;
  font-size: 26px;
  letter-spacing: 2px;
  color: var(--white);
  line-height: 1;
}

.logo-text span { color: var(--orange); }

.nav-links {
  display: flex;
  list-style: none;
  gap: 30px;
  align-items: center;
}

.nav-links a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: color 0.3s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--orange);
  transition: width 0.3s;
}

.nav-links a:hover, .nav-links a.active { color: var(--orange); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.nav-cta {
  background: var(--orange) !important;
  color: white !important;
  padding: 8px 20px;
  border-radius: 25px;
  font-weight: 600 !important;
}

.nav-cta::after { display: none !important; }

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

.hamburger span {
  display: block;
  width: 25px; height: 2px;
  background: white;
  transition: all 0.3s;
}

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  min-height: 100vh;
  background: var(--navy);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/slider/slide1.jpg');
  background-size: cover;
  background-position: center;
  filter: brightness(0.3);
  animation: heroBgSlide 15s infinite;
}

@keyframes heroBgSlide {
  0%, 30% { background-image: url('../images/slider/slide1.jpg'); }
  35%, 65% { background-image: url('../images/slider/slide2.jpg'); }
  70%, 100% { background-image: url('../images/slider/slide3.jpg'); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,22,40,0.85) 0%, rgba(255,107,0,0.15) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 120px 5% 60px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,107,0,0.2);
  border: 1px solid var(--orange);
  color: var(--orange);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
  animation: fadeInUp 0.8s ease 0.2s both;
}

.hero h1 {
  font-family: 'Bebas Neue', cursive;
  font-size: clamp(50px, 8vw, 90px);
  color: var(--white);
  line-height: 1.0;
  margin-bottom: 10px;
  animation: fadeInUp 0.8s ease 0.4s both;
}

.hero h1 span { color: var(--orange); }

.hero-subtitle {
  font-size: clamp(16px, 2.5vw, 20px);
  color: rgba(255,255,255,0.8);
  margin-bottom: 15px;
  font-weight: 300;
  animation: fadeInUp 0.8s ease 0.5s both;
}

.hero-desc {
  font-size: 15px;
  color: rgba(255,255,255,0.6);
  max-width: 500px;
  margin-bottom: 40px;
  line-height: 1.7;
  animation: fadeInUp 0.8s ease 0.6s both;
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-bottom: 40px;
  animation: fadeInUp 0.8s ease 0.7s both;
}

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

.stat-num {
  font-family: 'Bebas Neue', cursive;
  font-size: 36px;
  color: var(--orange);
  display: block;
  line-height: 1;
}

.stat-label {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ===== BOOKING FORM ===== */
.booking-section {
  position: relative;
  z-index: 10;
  margin-top: -10px;
  padding: 0 5% 60px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.booking-card {
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
  overflow: hidden;
  animation: fadeInUp 0.8s ease 0.8s both;
}

.booking-tabs {
  display: flex;
  background: var(--navy);
}

.tab-btn {
  flex: 1;
  padding: 16px 20px;
  border: none;
  background: transparent;
  color: rgba(255,255,255,0.6);
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
}

.tab-btn.active {
  background: var(--orange);
  color: white;
}

.tab-btn:not(.active):hover {
  background: rgba(255,107,0,0.15);
  color: var(--orange);
}

.tab-icon { margin-right: 8px; }

.tab-content { display: none; padding: 30px; }
.tab-content.active { display: block; }

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

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

.form-group label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-group input,
.form-group select {
  padding: 12px 14px;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  color: var(--text-dark);
  transition: border-color 0.3s;
  outline: none;
  background: #fafafa;
}

.form-group input:focus,
.form-group select:focus {
  border-color: var(--orange);
  background: white;
}

.btn-search {
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: white;
  border: none;
  padding: 14px 30px;
  border-radius: 8px;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
  white-space: nowrap;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.btn-search:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255,107,0,0.4);
}

/* ===== SECTION STYLES ===== */
section { padding: 80px 5%; }

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-tag {
  display: inline-block;
  color: var(--orange);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.section-title {
  font-family: 'Bebas Neue', cursive;
  font-size: clamp(36px, 5vw, 56px);
  color: var(--navy);
  letter-spacing: 1px;
  line-height: 1.1;
  margin-bottom: 15px;
}

.section-title span { color: var(--orange); }

.section-desc {
  font-size: 15px;
  color: var(--text-muted);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.7;
}

.divider {
  width: 60px; height: 4px;
  background: linear-gradient(to right, var(--orange), var(--orange-light));
  margin: 15px auto 0;
  border-radius: 2px;
}

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

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: all 0.3s;
  position: relative;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

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

.service-body {
  padding: 24px;
}

.service-icon-wrap {
  width: 50px; height: 50px;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  margin-bottom: 16px;
  margin-top: -40px;
  position: relative;
  box-shadow: 0 4px 15px rgba(255,107,0,0.3);
}

.service-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.service-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}

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

.price-label {
  font-size: 12px;
  color: var(--text-muted);
}

.price-val {
  font-size: 16px;
  font-weight: 700;
  color: var(--orange);
}

/* ===== FLEET SECTION ===== */
.fleet-section { background: white; }

.fleet-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
  max-width: 1200px;
  margin: 0 auto;
}

.fleet-card {
  background: var(--navy);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s;
  position: relative;
}

.fleet-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(10,22,40,0.3);
}

.fleet-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--orange), var(--orange-light));
}

.fleet-img-wrap {
  padding: 30px 20px 10px;
  background: var(--navy-light);
  display: flex; align-items: center; justify-content: center;
  height: 200px;
  overflow: hidden;
}

.fleet-img-wrap img {
  max-width: 100%;
  max-height: 160px;
  object-fit: contain;
  filter: drop-shadow(0 10px 20px rgba(0,0,0,0.5));
  transition: transform 0.3s;
}

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

.fleet-info {
  padding: 20px;
}

.fleet-info h3 {
  font-family: 'Bebas Neue', cursive;
  font-size: 26px;
  color: white;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.fleet-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 16px;
}

.spec {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: rgba(255,255,255,0.7);
}

.spec-icon { color: var(--orange); font-size: 14px; }

.fleet-btn {
  display: block;
  width: 100%;
  text-align: center;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: white;
  padding: 11px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s;
}

.fleet-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 5px 20px rgba(255,107,0,0.4);
}

/* ===== ABOUT SECTION ===== */
.about-section {
  background: var(--navy);
  color: white;
  padding: 80px 5%;
}

.about-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-img-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}

.about-img-wrap img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 20px;
  filter: brightness(0.85);
}

.about-badge {
  position: absolute;
  bottom: 20px; left: 20px;
  background: var(--orange);
  color: white;
  padding: 12px 20px;
  border-radius: 12px;
  font-family: 'Bebas Neue', cursive;
  font-size: 22px;
  letter-spacing: 1px;
  box-shadow: 0 5px 20px rgba(255,107,0,0.4);
}

.about-content .section-tag { text-align: left; display: block; }

.about-content .section-title { text-align: left; color: white; }
.about-content .section-title span { color: var(--orange); }

.about-content p {
  color: rgba(255,255,255,0.75);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 20px;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 25px 0;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,0.85);
}

.feature-icon {
  width: 32px; height: 32px;
  background: rgba(255,107,0,0.15);
  border: 1px solid rgba(255,107,0,0.3);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--orange);
  font-size: 14px;
  flex-shrink: 0;
}

/* ===== WHY CHOOSE US ===== */
.why-section { background: white; }

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.why-card {
  text-align: center;
  padding: 36px 24px;
  border-radius: 16px;
  border: 2px solid #f0f0f0;
  transition: all 0.3s;
}

.why-card:hover {
  border-color: var(--orange);
  box-shadow: 0 10px 30px rgba(255,107,0,0.1);
  transform: translateY(-4px);
}

.why-icon {
  width: 70px; height: 70px;
  background: linear-gradient(135deg, rgba(255,107,0,0.1), rgba(255,107,0,0.05));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 30px;
  margin: 0 auto 20px;
  transition: all 0.3s;
}

.why-card:hover .why-icon {
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
}

.why-card h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.why-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ===== DESTINATIONS ===== */
.dest-section { background: var(--gray); }

.dest-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.dest-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  height: 280px;
  cursor: pointer;
}

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

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

.dest-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,22,40,0.9) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
}

.dest-card h3 {
  font-family: 'Bebas Neue', cursive;
  font-size: 28px;
  color: white;
  letter-spacing: 1px;
}

.dest-card p {
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  margin: 4px 0 10px;
}

.dest-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--orange);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: gap 0.3s;
}

.dest-card:hover .dest-link { gap: 10px; }

/* ===== TESTIMONIALS ===== */
.testi-section { background: var(--navy); }

.testi-section .section-title { color: white; }

.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.testi-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 28px;
  transition: all 0.3s;
}

.testi-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,107,0,0.3);
}

.stars {
  color: var(--orange);
  font-size: 16px;
  margin-bottom: 14px;
}

.testi-card p {
  color: rgba(255,255,255,0.8);
  font-size: 14px;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 20px;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Bebas Neue', cursive;
  font-size: 18px;
  color: white;
}

.author-name {
  font-weight: 600;
  color: white;
  font-size: 14px;
}

.author-loc {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
}

/* ===== CONTACT SECTION ===== */
.contact-section { background: white; }

.contact-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 60px;
  align-items: start;
}

.contact-info h3 {
  font-family: 'Bebas Neue', cursive;
  font-size: 36px;
  color: var(--navy);
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.contact-info p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 30px;
}

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

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.contact-icon {
  width: 46px; height: 46px;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  color: white;
}

.contact-item-text span {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 3px;
}

.contact-item-text a,
.contact-item-text p {
  color: var(--navy);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  margin: 0;
}

.contact-item-text a:hover { color: var(--orange); }

.contact-form {
  background: var(--navy);
  border-radius: 20px;
  padding: 36px;
}

.contact-form h3 {
  font-family: 'Bebas Neue', cursive;
  font-size: 30px;
  color: white;
  letter-spacing: 1px;
  margin-bottom: 24px;
}

.cf-group {
  margin-bottom: 18px;
}

.cf-group label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}

.cf-group input,
.cf-group select,
.cf-group textarea {
  width: 100%;
  padding: 12px 14px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px;
  color: white;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  outline: none;
  transition: border-color 0.3s;
}

.cf-group input::placeholder,
.cf-group textarea::placeholder {
  color: rgba(255,255,255,0.35);
}

.cf-group input:focus,
.cf-group select:focus,
.cf-group textarea:focus {
  border-color: var(--orange);
}

.cf-group textarea { resize: vertical; min-height: 100px; }

.cf-group select option { background: var(--navy); }

.btn-submit {
  width: 100%;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: white;
  border: none;
  padding: 14px;
  border-radius: 8px;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255,107,0,0.4);
}

/* ===== FOOTER ===== */
footer {
  background: var(--navy);
  color: rgba(255,255,255,0.75);
  padding: 60px 5% 0;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-about .logo { margin-bottom: 16px; }

.footer-about p {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,0.6);
  margin-bottom: 20px;
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-btn {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.07);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 15px;
  transition: all 0.3s;
}

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

.footer-col h4 {
  font-size: 15px;
  font-weight: 700;
  color: white;
  margin-bottom: 18px;
  position: relative;
  padding-bottom: 10px;
}

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

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul li a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s;
  display: flex; align-items: center; gap: 6px;
}

.footer-col ul li a::before {
  content: '›';
  color: var(--orange);
}

.footer-col ul li a:hover { color: var(--orange); }

.footer-bottom {
  padding: 20px 0;
  text-align: center;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}

.footer-bottom a { color: var(--orange); text-decoration: none; }

/* ===== PAGE HERO (for inner pages) ===== */
.page-hero {
  height: 380px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-top: 70px;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.3);
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,22,40,0.85), rgba(255,107,0,0.2));
}

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

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 12px;
}

.breadcrumb a { color: var(--orange); text-decoration: none; }
.breadcrumb span { color: rgba(255,255,255,0.4); }

.page-hero h1 {
  font-family: 'Bebas Neue', cursive;
  font-size: clamp(44px, 6vw, 72px);
  color: white;
  letter-spacing: 2px;
}

.page-hero h1 span { color: var(--orange); }

/* ===== CITY PAGE STYLES ===== */
.city-info {
  max-width: 1100px;
  margin: 0 auto;
  padding: 70px 5%;
}

.city-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: start;
}

.city-img {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}

.city-img img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: 20px;
}

.city-content h2 {
  font-family: 'Bebas Neue', cursive;
  font-size: 44px;
  color: var(--navy);
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.city-content h2 span { color: var(--orange); }

.city-content p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 16px;
}

.route-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 20px 0;
}

.route-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-dark);
  padding: 10px 14px;
  background: var(--gray);
  border-radius: 8px;
}

.route-list li::before {
  content: '🚕';
  font-size: 16px;
}

.city-price-table {
  max-width: 1100px;
  margin: 0 auto 60px;
  padding: 0 5%;
}

.city-price-table h3 {
  font-family: 'Bebas Neue', cursive;
  font-size: 36px;
  color: var(--navy);
  margin-bottom: 24px;
  letter-spacing: 1px;
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.price-table thead {
  background: var(--navy);
  color: white;
}

.price-table th {
  padding: 14px 20px;
  text-align: left;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.price-table tbody tr:nth-child(even) { background: #f9fafb; }
.price-table tbody tr:nth-child(odd) { background: white; }

.price-table td {
  padding: 14px 20px;
  font-size: 14px;
  color: var(--text-dark);
  border-bottom: 1px solid #f0f0f0;
}

.price-table td:last-child {
  color: var(--orange);
  font-weight: 700;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
}

.whatsapp-float a {
  width: 56px; height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px;
  color: white;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 4px 30px rgba(37,211,102,0.7); }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }

  .hero h1 { font-size: 46px; }
  .hero-stats { gap: 20px; flex-wrap: wrap; }
  .hero-stats .stat-item { min-width: 80px; }

  .about-inner,
  .contact-inner,
  .city-grid { grid-template-columns: 1fr; gap: 30px; }

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

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

  .booking-section { padding: 0 3% 40px; }
  .tab-btn { font-size: 12px; padding: 12px 10px; }

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

  section { padding: 60px 4%; }
}

@media (max-width: 480px) {
  .footer-inner { grid-template-columns: 1fr; }
  .about-features { grid-template-columns: 1fr; }
}
