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

/* CSS Variables */
:root {
  --bg-primary: #001706; /* Deep dark forest green of ecotripasia.com */
  --bg-secondary: #00220A; /* Rich dark green */
  --bg-card: rgba(0, 46, 12, 0.45); /* Forest glass card */
  --bg-card-hover: rgba(0, 46, 12, 0.65);
  --primary: #d7ff36; /* Vibrant Neon Lime-Yellow of ecotripasia.com */
  --primary-hover: #e3ff66;
  --secondary: #00b090; /* Success Mint Green of ecotripasia.com */
  --secondary-hover: #00cbb4;
  --accent: #008361; /* Deep Emerald */
  --text-main: #F8FAFC;
  --text-muted: #94A3B8;
  --text-highlight: #b8f5c0;
  --border-color: rgba(215, 255, 54, 0.16); /* Neon lime-yellow borders */
  --border-color-hover: rgba(215, 255, 54, 0.35);
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.3), 0 2px 4px -1px rgba(0, 0, 0, 0.2);
  --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.5), 0 4px 6px -2px rgba(0, 0, 0, 0.3);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.7), 0 10px 10px -5px rgba(0, 0, 0, 0.4);
  --font-title: 'Outfit', sans-serif; /* Modern high-energy Outfit headings */
  --font-body: 'Inter', sans-serif;
  --max-width: 1200px;
  --transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-primary);
  color: var(--text-main);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
  background: #00360F;
  border: 2px solid var(--bg-primary);
  border-radius: 8px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--primary);
}

/* Typography & Layout Utilities */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-title);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

p {
  color: var(--text-muted);
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

section {
  padding: 6.5rem 0;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 4.5rem;
}

.section-tag {
  display: inline-block;
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(215, 255, 54, 0.1);
  padding: 0.45rem 1.25rem;
  border-radius: 50px;
  border: 1px solid var(--border-color);
  margin-bottom: 1.2rem;
  letter-spacing: 0.1em;
}

.section-title {
  font-size: 2.6rem;
  font-weight: 800;
  margin-bottom: 1.2rem;
}

.section-subtitle {
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

.highlight {
  color: var(--primary);
  text-shadow: 0 0 15px rgba(215, 255, 54, 0.2);
}

.gold-highlight {
  color: var(--secondary);
}

/* Header & Navigation */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: rgba(0, 23, 6, 0.8);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(215, 255, 54, 0.08);
  transition: var(--transition);
}

header.scrolled {
  background: var(--bg-secondary);
  box-shadow: var(--shadow-md);
  padding: 0.5rem 0;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.logo-wrapper {
  display: flex;
  flex-direction: column;
}

.logo {
  font-family: var(--font-title);
  font-weight: 900;
  font-size: 1.45rem;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

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

.logo-sub {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--text-muted);
  font-family: var(--font-title);
  font-weight: 500;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 2.5rem;
}

nav ul a {
  font-weight: 600;
  font-size: 0.95rem;
  position: relative;
}

nav ul a:hover, nav ul a.active {
  color: var(--primary);
}

nav ul a::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: var(--transition);
}

nav ul a:hover::after, nav ul a.active::after {
  width: 100%;
}

.btn-book {
  background: var(--primary);
  color: #001706;
  padding: 0.75rem 1.8rem;
  border-radius: 12px;
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 0.92rem;
  box-shadow: 0 4px 20px rgba(215, 255, 54, 0.35);
  transition: var(--transition);
  border: none;
  cursor: pointer;
}

.btn-book:hover {
  background: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(215, 255, 54, 0.6);
}

/* Mobile Menu Button */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  background: none;
  border: none;
}

.menu-toggle span {
  display: block;
  width: 28px;
  height: 3px;
  background: var(--text-main);
  border-radius: 2px;
  transition: var(--transition);
}

/* 3D Perspective Wrappers */
.overview, .itinerary, .inclusions-exclusions, .gallery-section, .booking-section, .faq-section {
  perspective: 1200px;
}

/* Hero Section with Blobs */
.hero {
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  background: linear-gradient(rgba(0, 23, 6, 0.6), rgba(0, 23, 6, 0.95)), url('assets/86b5816ba98857f13770b1693db6c3bb82958a38ec6c7033846da9482ea88391.avif') no-repeat center center/cover;
  padding-top: 80px;
  position: relative;
  overflow: visible;
}

.hero::before {
  content: '';
  position: absolute;
  top: 20%;
  left: 5%;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(215, 255, 54, 0.12) 0%, transparent 70%);
  filter: blur(60px);
  z-index: 1;
  pointer-events: none;
  animation: blobFloat 15s ease-in-out infinite alternate;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 10%;
  right: 15%;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(0, 176, 144, 0.1) 0%, transparent 70%);
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
  animation: blobFloat 22s ease-in-out infinite alternate-reverse;
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 750px;
}

.hero-subtitle {
  font-family: var(--font-title);
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  animation: fadeInUp 0.8s ease-out;
}

.hero-title {
  font-size: 3.8rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 2rem;
  animation: fadeInUp 1s ease-out;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.8);
}

.hero-description {
  font-size: 1.2rem;
  margin-bottom: 3rem;
  max-width: 650px;
  color: #E2E8F0;
  animation: fadeInUp 1.2s ease-out;
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  animation: fadeInUp 1.4s ease-out;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-main);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 0.75rem 1.8rem;
  border-radius: 12px;
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 0.92rem;
  transition: var(--transition);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: var(--primary);
}

/* Quick Specs */
.quick-specs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  position: absolute;
  bottom: -50px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 4rem);
  max-width: var(--max-width);
  z-index: 20;
}

/* 3D Glassmorphism Cards with Hover Tilt */
.info-badge-card, .spec-card, .timeline-content, .inc-card, .exc-card, .booking-card {
  transform-style: preserve-3d;
  transform: translateZ(0);
  background: var(--bg-card);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-color);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5), inset 0 0 20px rgba(215, 255, 54, 0.04);
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.5s ease, border-color 0.5s ease;
}

.spec-card {
  padding: 1.5rem;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.info-badge-card:hover, .spec-card:hover, .timeline-content:hover, .inc-card:hover, .exc-card:hover {
  transform: translateY(-8px) translateZ(30px) rotateX(4deg) rotateY(-4deg);
  border-color: var(--primary);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.6), 0 0 30px rgba(215, 255, 54, 0.15), inset 0 0 15px rgba(215, 255, 54, 0.08);
}

.spec-icon {
  background: rgba(215, 255, 54, 0.15);
  width: 50px;
  height: 50px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.45rem;
  color: var(--primary);
  flex-shrink: 0;
  text-shadow: 0 0 8px rgba(215, 255, 54, 0.3);
}

.spec-details h4 {
  font-size: 0.8rem;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  margin-bottom: 0.2rem;
}

.spec-details p {
  color: var(--text-main);
  font-weight: 700;
  font-size: 0.98rem;
}

/* Tour Description & Grid Section */
.overview {
  padding-top: 10rem;
  background-color: var(--bg-secondary);
}

.overview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.overview-text h3 {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
}

.overview-text p {
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
  line-height: 1.8;
}

.overview-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.info-badge-card {
  border-radius: 20px;
  padding: 2rem;
}

.info-badge-card h4 {
  font-size: 1.25rem;
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.info-badge-card p {
  font-size: 0.95rem;
}

/* Interactive Itinerary Section */
.itinerary {
  background-color: var(--bg-primary);
}

.itinerary-timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem 0;
}

.timeline-item {
  position: relative;
  margin-bottom: 4rem;
  width: 100%;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-dot {
  position: absolute;
  top: 24px;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 24px;
  height: 24px;
  background: var(--bg-primary);
  border: 4px solid var(--primary);
  border-radius: 50%;
  z-index: 10;
  box-shadow: 0 0 15px rgba(215, 255, 54, 0.6);
  transition: var(--transition);
}

.timeline-item:hover .timeline-dot {
  background: var(--primary);
  transform: translate(-50%, -50%) scale(1.2);
}

.timeline-content {
  position: relative;
  width: 45%;
  padding: 2rem;
  border-radius: 20px;
}

.timeline-item:nth-child(even) .timeline-content {
  left: 55%;
}

.timeline-item:nth-child(odd) .timeline-content {
  left: 0;
  text-align: right;
}

.timeline-time {
  display: inline-block;
  font-family: var(--font-title);
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.timeline-title {
  font-size: 1.35rem;
  font-weight: 750;
  margin-bottom: 1rem;
}

.timeline-desc {
  font-size: 0.95rem;
}

.timeline-option-badge {
  display: inline-block;
  font-size: 0.75rem;
  background: rgba(0, 176, 144, 0.15);
  color: var(--secondary-hover);
  border: 1px solid rgba(0, 176, 144, 0.3);
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  margin-top: 0.8rem;
  font-weight: 700;
}

.timeline-media {
  margin-top: 1.2rem;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.timeline-media img {
  width: 100%;
  height: 155px;
  object-fit: cover;
  display: block;
  transition: var(--transition);
}

.timeline-content:hover .timeline-media img {
  transform: scale(1.05);
}

/* Inclusions & Exclusions Section */
.inclusions-exclusions {
  background-color: var(--bg-secondary);
}

.inc-exc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.inc-card, .exc-card {
  border-radius: 24px;
  padding: 3rem;
  height: 100%;
}

.inc-card {
  border: 1px solid rgba(0, 176, 144, 0.3);
}

.exc-card {
  border: 1px solid rgba(214, 138, 141, 0.2);
}

.inc-card h3, .exc-card h3 {
  font-size: 1.8rem;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.inc-card h3 {
  color: var(--secondary-hover);
}

.exc-card h3 {
  color: #F87171;
}

.list-items {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.list-items li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-size: 1.05rem;
}

.list-items li p {
  color: var(--text-main);
  font-weight: 600;
}

.list-items li span {
  font-size: 0.86rem;
  display: block;
  color: var(--text-muted);
  margin-top: 0.2rem;
}

.list-items li i {
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.inc-card i {
  color: var(--secondary-hover);
}

.exc-card i {
  color: #F87171;
}

/* Photo Gallery Section */
.gallery-section {
  background-color: var(--bg-primary);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.blog-main-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
}

.blog-sub-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem 3rem;
}

.gallery-item {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 1.33;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-md);
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 23, 6, 0.9) 10%, rgba(0, 23, 6, 0.2) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: var(--transition);
}

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

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

.gallery-tag {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.3rem;
}

.gallery-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-main);
}

/* Interactive Calculator & Booking Form */
.booking-section {
  background-color: var(--bg-secondary);
  background-image: radial-gradient(circle at 10% 20%, rgba(215, 255, 54, 0.04) 0%, transparent 40%),
                    radial-gradient(circle at 90% 80%, rgba(0, 176, 144, 0.04) 0%, transparent 40%);
}

.booking-section::before {
  content: '';
  position: absolute;
  top: 10%;
  left: 20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(215, 255, 54, 0.08) 0%, transparent 70%);
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
  animation: blobFloat 18s ease-in-out infinite alternate;
}

.booking-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: flex-start;
  position: relative;
  z-index: 2;
}

.booking-info h3 {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
}

.booking-info p {
  margin-bottom: 2rem;
  font-size: 1.05rem;
}

.pricing-cards {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.price-box {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  padding: 1.5rem 2rem;
  border-radius: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: var(--shadow-sm);
}

.price-box-title h4 {
  font-size: 1.15rem;
  margin-bottom: 0.25rem;
}

.price-box-title p {
  font-size: 0.85rem;
}

.price-box-value {
  text-align: right;
}

.price-box-amount {
  font-size: 2.2rem;
  font-family: var(--font-title);
  font-weight: 900;
  color: var(--primary);
  text-shadow: 0 0 10px rgba(215, 255, 54, 0.2);
}

.price-box-unit {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
}

.policy-list {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.policy-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.policy-item i {
  color: var(--primary);
  font-size: 1.2rem;
  margin-top: 0.2rem;
}

.policy-item h5 {
  font-size: 1rem;
  color: var(--text-main);
  margin-bottom: 0.25rem;
}

.policy-item p {
  font-size: 0.9rem;
}

/* Booking Card (Form + Live Calculator) with 3D Pop-out */
.booking-card {
  border-radius: 28px;
  padding: 3rem;
}

.booking-card:hover {
  transform: translateY(-5px) translateZ(20px) rotateX(2deg) rotateY(-2deg);
  border-color: var(--primary);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.7), 0 0 40px rgba(215, 255, 54, 0.15), inset 0 0 30px rgba(215, 255, 54, 0.1);
}

.booking-card h3 {
  font-size: 1.8rem;
  margin-bottom: 2rem;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 1rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin-bottom: 1.5rem;
}

label {
  display: block;
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.6rem;
  letter-spacing: 0.05em;
}

input, select, textarea {
  width: 100%;
  background: rgba(0, 23, 6, 0.6);
  border: 1px solid var(--border-color);
  color: var(--text-main);
  padding: 0.85rem 1.2rem;
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition);
}

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 10px rgba(215, 255, 54, 0.15);
  background: rgba(0, 23, 6, 0.9);
}

textarea {
  resize: vertical;
  height: 80px;
}

/* Calculator Summary Box */
.calc-summary-box {
  background: rgba(0, 15, 4, 0.8);
  border: 1px dashed var(--border-color);
  border-radius: 12px;
  padding: 1.5rem;
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.summary-title {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 1rem;
  color: var(--text-main);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 0.5rem;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  margin-bottom: 0.6rem;
  color: var(--text-muted);
}

.summary-row.total {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--primary);
  margin-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 0.8rem;
  margin-bottom: 0;
  text-shadow: 0 0 8px rgba(215, 255, 54, 0.2);
}

.holiday-notice {
  font-size: 0.8rem;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.8rem;
  font-weight: 600;
}

.btn-submit {
  width: 100%;
  background: var(--primary);
  color: #001706;
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 1.1rem;
  padding: 1rem;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(215, 255, 54, 0.35);
  transition: var(--transition);
}

.btn-submit:hover {
  background: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(215, 255, 54, 0.55);
}

/* Modal Popup Styles */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 15, 4, 0.85);
  backdrop-filter: blur(10px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.modal.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-content {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  width: 90%;
  max-width: 500px;
  border-radius: 24px;
  padding: 3rem;
  box-shadow: var(--shadow-lg);
  text-align: center;
  position: relative;
  transform: scale(0.85);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.modal.active .modal-content {
  transform: scale(1);
}

.modal-icon {
  width: 80px;
  height: 80px;
  background: rgba(0, 176, 144, 0.15);
  color: var(--secondary-hover);
  font-size: 2.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
}

.modal-title {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.modal-message {
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.modal-btn-close {
  background: var(--primary);
  color: #001706;
  font-family: var(--font-title);
  font-weight: 700;
  padding: 0.8rem 2rem;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.modal-btn-close:hover {
  background: var(--primary-hover);
}

/* FAQ / Policies Accordion Section */
.faq-section {
  background-color: var(--bg-primary);
}

.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.accordion-item {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  overflow: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.accordion-header {
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: var(--transition);
}

.accordion-header:hover {
  background: rgba(255, 255, 255, 0.02);
}

.accordion-header h4 {
  font-size: 1.15rem;
  font-weight: 600;
}

.accordion-icon {
  font-size: 1.2rem;
  color: var(--primary);
  transition: var(--transition);
}

.accordion-item.active .accordion-icon {
  transform: rotate(180deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
  padding: 0 2rem;
  background: rgba(0, 0, 0, 0.15);
}

.accordion-item.active .accordion-content {
  max-height: 500px;
  padding: 1.5rem 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  transition: max-height 0.4s ease-in-out;
}

.accordion-content p {
  color: var(--text-main);
  font-size: 0.95rem;
}

/* Footer Section */
footer {
  background-color: #000c03;
  border-top: 1px solid rgba(215, 255, 54, 0.08);
  padding: 5rem 0 3rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-about h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.footer-about p {
  margin-bottom: 1.5rem;
  max-width: 320px;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-main);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 1.1rem;
}

.social-link:hover {
  background: var(--primary);
  color: #001706;
  border-color: var(--primary);
  transform: translateY(-3px);
}

.footer-nav h4 {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: var(--text-main);
}

.footer-nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-nav ul a {
  color: var(--text-muted);
}

.footer-nav ul a:hover {
  color: var(--primary);
  padding-left: 5px;
}

.footer-contact h4 {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: var(--text-main);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  color: var(--text-muted);
}

.contact-info li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.contact-info li i {
  color: var(--primary);
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 2rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(25px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Animated E-Bike & Leaf Effects */

/* Hero E-Bike 3D Glass Screen */
.hero-bike-container {
  position: absolute;
  bottom: 80px;
  right: 5%;
  z-index: 5;
  pointer-events: none;
  background: rgba(0, 46, 12, 0.2);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1.5px solid rgba(215, 255, 54, 0.25);
  border-radius: 30px;
  padding: 2.5rem;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), 0 0 30px rgba(215, 255, 54, 0.1);
  transform: rotateY(-15deg) rotateX(10deg);
  transform-style: preserve-3d;
  animation: rideIn3D 2.2s cubic-bezier(0.25, 0.8, 0.25, 1) forwards, float3D 6s ease-in-out infinite alternate 2.2s;
}

.hero-bike {
  filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.5));
  animation: bikeVibe 0.2s linear infinite alternate;
}

.hero-leaf-particle {
  position: absolute;
  width: 10px;
  height: 10px;
  background: var(--primary);
  clip-path: polygon(50% 0%, 100% 35%, 80% 90%, 50% 100%, 20% 90%, 0% 35%);
  border-radius: 50% 0 50% 0;
  pointer-events: none;
  z-index: 4;
  bottom: 10px;
  transform: translate(-50%, -50%) rotate(0deg);
  animation: heroLeafBlow 1.5s cubic-bezier(0.1, 0.8, 0.2, 1) forwards;
}

/* Wheel & Pedal Spin Animations */
.wheel-spin {
  transform-origin: center;
  animation: spinWheel 0.8s linear infinite;
}

.pedal-spin {
  transform-origin: 75px 65px;
  animation: spinPedal 1.6s linear infinite;
}

@keyframes spinWheel {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes spinPedal {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* Timeline Animated E-Bike Styling */
.timeline-line {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 100%;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 2px;
  z-index: 1;
}

.timeline-line-active {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 0%;
  background: linear-gradient(to bottom, var(--primary), var(--secondary), var(--accent));
  border-radius: 2px;
  z-index: 2;
  transition: height 0.1s ease-out;
}

.timeline-atv {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, -50%) rotate(0deg);
  z-index: 12;
  pointer-events: none;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.5));
  transition: top 0.15s ease-out, transform 0.15s ease-out;
}

.timeline-dust-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 3;
}

/* Dynamic Leaf Particle classes for timeline */
.timeline-dust {
  position: absolute;
  width: 8px;
  height: 8px;
  background: var(--primary);
  clip-path: polygon(50% 0%, 100% 35%, 80% 90%, 50% 100%, 20% 90%, 0% 35%);
  border-radius: 50% 0 50% 0;
  pointer-events: none;
  z-index: 5;
  transform: translate(-50%, -50%) rotate(0deg);
  animation: timelineLeafBlow 0.9s cubic-bezier(0.1, 0.8, 0.3, 1) forwards;
}

/* Animations */
@keyframes rideIn3D {
  0% {
    transform: translateX(120vw) rotateY(-30deg) rotateX(20deg);
    opacity: 0;
  }
  100% {
    transform: rotateY(-15deg) rotateX(10deg);
    opacity: 1;
  }
}

@keyframes float3D {
  0% {
    transform: rotateY(-15deg) rotateX(10deg) translateY(0);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), 0 0 30px rgba(215, 255, 54, 0.1), inset 0 0 25px rgba(215, 255, 54, 0.08);
  }
  100% {
    transform: rotateY(-10deg) rotateX(15deg) translateY(-18px);
    box-shadow: 0 45px 80px rgba(0, 0, 0, 0.7), 0 0 40px rgba(215, 255, 54, 0.2), inset 0 0 35px rgba(215, 255, 54, 0.15);
  }
}

@keyframes blobFloat {
  0% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(60px, -40px) scale(1.15);
  }
  100% {
    transform: translate(-40px, 50px) scale(0.9);
  }
}

@keyframes bikeVibe {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-1.5px);
  }
}

@keyframes heroLeafBlow {
  0% {
    transform: translate(-50%, -50%) scale(0.6) rotate(0deg);
    opacity: 0.8;
  }
  50% {
    opacity: 0.6;
  }
  100% {
    transform: translate(calc(-50% - 140px), calc(-50% - 20px)) scale(1.5) rotate(270deg);
    opacity: 0;
  }
}

@keyframes timelineLeafBlow {
  0% {
    transform: translate(-50%, -50%) scale(0.5) rotate(0deg);
    opacity: 0.8;
  }
  100% {
    transform: translate(calc(-50% + var(--dx)), calc(-50% - var(--dy))) scale(2) rotate(180deg);
    opacity: 0;
  }
}

/* Interactive Booking Split Console & 3D Boarding Pass */
.booking-console-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3.5rem;
  align-items: start;
  width: 100%;
}

/* Left Column: Modern Control Console */
.booking-console {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}
.booking-console:hover {
  border-color: var(--border-color-hover);
  box-shadow: var(--shadow-lg), 0 0 25px rgba(215, 255, 54, 0.04);
}
.console-title {
  font-family: var(--font-title);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-bottom: 1.5px solid rgba(215, 255, 54, 0.15);
  padding-bottom: 0.8rem;
}

/* Glowing Input Wrapper styling */
.input-glow-wrapper {
  position: relative;
  width: 100%;
}
.input-glow-wrapper input {
  width: 100%;
  padding: 0.85rem 1rem 0.85rem 2.8rem !important;
  background: rgba(0, 23, 6, 0.4) !important;
  border: 1.5px solid rgba(215, 255, 54, 0.15) !important;
  color: var(--text-main) !important;
  border-radius: 12px !important;
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: all 0.3s ease;
}
.input-glow-wrapper input:focus {
  outline: none;
  border-color: var(--primary) !important;
  box-shadow: 0 0 15px rgba(215, 255, 54, 0.25) !important;
  background: rgba(0, 23, 6, 0.6) !important;
}
.input-icon {
  position: absolute;
  left: 1.1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 1rem;
  pointer-events: none;
  transition: all 0.3s ease;
}
.input-glow-wrapper input:focus + .input-icon,
.input-glow-wrapper input:focus ~ .input-icon {
  color: var(--primary);
}

/* Readonly Badge styling */
.readonly-badge {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(0, 176, 144, 0.12);
  border: 1px solid rgba(0, 176, 144, 0.3);
  padding: 0.8rem 1rem;
  border-radius: 12px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--secondary);
  height: 48px;
}

/* Segmented Pill Selector */
.segmented-control {
  display: flex;
  background: rgba(0, 23, 6, 0.5);
  border: 1.5px solid rgba(215, 255, 54, 0.15);
  border-radius: 12px;
  padding: 3px;
  gap: 3px;
  height: 48px;
  width: 100%;
}
.segment-btn {
  flex: 1;
  border: none;
  background: transparent;
  color: var(--text-muted);
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: 9px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.segment-btn:hover {
  color: var(--text-main);
}
.segment-btn.active {
  background: var(--primary);
  color: #001706;
  box-shadow: 0 4px 10px rgba(215, 255, 54, 0.25);
}

/* Quantity Stepper (Adults/Children) */
.quantity-stepper {
  display: flex;
  align-items: center;
  background: rgba(0, 23, 6, 0.5);
  border: 1.5px solid rgba(215, 255, 54, 0.15);
  border-radius: 12px;
  padding: 3px;
  height: 48px;
  width: 100%;
}
.stepper-btn {
  width: 42px;
  height: 42px;
  border: none;
  background: transparent;
  color: var(--text-muted);
  font-size: 0.9rem;
  cursor: pointer;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}
.stepper-btn:hover {
  background: rgba(255, 255, 255, 0.05);
  color: var(--primary);
}
.quantity-stepper input {
  flex: 1;
  border: none;
  background: transparent;
  color: var(--text-main);
  text-align: center;
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 1.15rem;
  width: 100%;
  pointer-events: none;
}

/* Right Column: 3D Boarding Pass */
.booking-ticket-wrap {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
  width: 100%;
  perspective: 1500px;
}
.booking-ticket {
  width: 100%;
  background: linear-gradient(135deg, #00220A 0%, #001404 100%);
  border: 1.5px solid rgba(215, 255, 54, 0.2);
  border-radius: 28px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), 0 0 30px rgba(215, 255, 54, 0.05);
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
  transition: transform 0.15s ease-out, box-shadow 0.15s ease-out;
}
.ticket-inner {
  padding: 2.2rem;
  transform: translateZ(30px);
}
.ticket-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1.5px dashed rgba(215, 255, 54, 0.15);
  padding-bottom: 1.2rem;
  margin-bottom: 1.5rem;
}
.ticket-logo {
  font-family: var(--font-title);
  font-weight: 900;
  font-size: 1.1rem;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  letter-spacing: 0.05em;
}
.ticket-tag {
  background: rgba(215, 255, 54, 0.1);
  border: 1px solid rgba(215, 255, 54, 0.25);
  color: var(--primary);
  padding: 0.35rem 0.8rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  font-family: var(--font-title);
  letter-spacing: 0.08em;
}
.ticket-body {
  margin-bottom: 1.5rem;
}
.ticket-info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem 1rem;
}
.ticket-info-item label {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  margin-bottom: 0.3rem;
  font-family: var(--font-title);
}
.ticket-info-item .value {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-main);
  text-transform: uppercase;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* Ticket Perforation styling */
.ticket-divider {
  position: relative;
  height: 20px;
  margin: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ticket-divider .circle {
  width: 24px;
  height: 24px;
  background: var(--bg-primary);
  border-radius: 50%;
  position: absolute;
  z-index: 2;
}
.ticket-divider .circle.left {
  left: -34px;
  border-right: 1.5px solid rgba(215, 255, 54, 0.2);
}
.ticket-divider .circle.right {
  right: -34px;
  border-left: 1.5px solid rgba(215, 255, 54, 0.2);
}
.ticket-divider .dashed-line {
  width: 100%;
  height: 1.5px;
  border-top: 1.5px dashed rgba(215, 255, 54, 0.25);
  opacity: 0.6;
}

.ticket-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1.2rem;
}
.ticket-price-box label {
  display: block;
  font-size: 0.7rem;
  color: var(--text-muted);
  font-family: var(--font-title);
  letter-spacing: 0.05em;
  margin-bottom: 0.1rem;
}
.ticket-price-box .price {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--primary);
  font-family: var(--font-title);
  text-shadow: 0 0 15px rgba(215, 255, 54, 0.35);
  line-height: 1;
}

/* Custom CSS Barcode */
.ticket-barcode-box {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.25rem;
}
.barcode {
  display: flex;
  height: 32px;
  align-items: stretch;
  background: transparent;
  opacity: 0.75;
}
.barcode .bar {
  background: var(--text-main);
  margin-right: 2px;
}
.barcode .bar.w-1 { width: 1.5px; }
.barcode .bar.w-2 { width: 3px; }
.barcode .bar.w-3 { width: 4.5px; }
.barcode .bar.w-4 { width: 6px; }
.barcode-text {
  font-family: monospace;
  font-size: 0.65rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
}

/* Holiday notice banner inside ticket wrap */
.holiday-notice-banner {
  background: rgba(215, 255, 54, 0.06);
  border: 1px solid rgba(215, 255, 54, 0.2);
  border-radius: 12px;
  padding: 0.85rem 1.2rem;
  color: var(--primary);
  font-size: 0.88rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Futuristic Pulsing submit button */
.glowing-btn {
  position: relative;
  background: var(--primary);
  color: #001706;
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 1.1rem;
  border-radius: 14px;
  border: none;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(215, 255, 54, 0.25), 0 0 15px rgba(215, 255, 54, 0.1);
  transition: var(--transition);
  overflow: hidden;
}
.glowing-btn:hover {
  background: var(--primary-hover);
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(215, 255, 54, 0.4), 0 0 25px rgba(215, 255, 54, 0.2);
}
.glowing-btn:active {
  transform: translateY(-1px);
}

/* Booking Introduction Info Cards */
.booking-intro-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
  position: relative;
  z-index: 2;
}

.booking-intro-cards .info-badge-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: var(--shadow-md);
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  transition: var(--transition);
}
.booking-intro-cards .info-badge-card:hover {
  border-color: var(--border-color-hover);
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg), 0 0 20px rgba(215, 255, 54, 0.03);
}

.booking-intro-cards .card-icon {
  width: 48px;
  height: 48px;
  background: rgba(215, 255, 54, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.3rem;
  flex-shrink: 0;
  border: 1px solid rgba(215, 255, 54, 0.2);
}

.booking-intro-cards .card-details h4 {
  font-family: var(--font-title);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text-main);
}

.booking-intro-cards .card-details .rate {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--primary);
  font-family: var(--font-title);
  margin-bottom: 0.25rem;
  line-height: 1.1;
}

.booking-intro-cards .card-details .rate span {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
}

.booking-intro-cards .card-details .child-rate {
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* Hide hero E-Bike on mobile screens to preserve text readability */
@media (max-width: 1024px) {
  .hero-bike-container {
    display: none;
  }
}

/* Responsive Styling */
@media (max-width: 1024px) {
  .hero {
    display: flex;
    flex-direction: column;
    height: auto;
    min-height: auto;
    padding: 8rem 0 4rem;
    align-items: stretch;
    justify-content: flex-start;
  }
  .hero-title {
    font-size: 2.8rem;
  }
  .quick-specs {
    grid-template-columns: repeat(2, 1fr);
    position: static;
    transform: none;
    width: 100%;
    margin-top: 3rem;
    padding: 0 2rem;
  }
  .overview {
    padding-top: 5rem;
  }
  .overview-grid, .booking-grid, .booking-console-grid, .booking-intro-cards {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .booking-console {
    padding: 1.8rem;
  }
  .ticket-inner {
    padding: 1.8rem;
  }
  .timeline-line, .timeline-line-active {
    left: 40px;
  }
  .timeline-atv {
    left: 40px;
  }
  .timeline-dot {
    left: 40px;
  }
  .timeline-content {
    width: calc(100% - 80px);
    left: 80px !important;
    text-align: left !important;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .blog-main-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-container .btn-book {
    display: none;
  }
  .price-box {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
  }
  .price-box-value {
    text-align: left;
    width: 100%;
  }
  .blog-main-grid, .blog-sub-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  section {
    padding: 4rem 0;
  }
  .nav-container {
    height: 70px;
  }
  nav {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background: var(--bg-secondary);
    z-index: 99;
    padding: 3rem 2rem;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }
  nav.active {
    left: 0;
  }
  nav ul {
    flex-direction: column;
    gap: 1.5rem;
  }
  nav ul a {
    font-size: 1.2rem;
  }
  .menu-toggle {
    display: flex;
  }
  .menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
  }
  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  .menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }
  .hero {
    height: auto;
    min-height: auto;
    padding: 6.5rem 0 2rem;
  }
  .hero-subtitle {
    font-size: 0.85rem;
    margin-bottom: 0.75rem;
  }
  .hero-title {
    font-size: 1.8rem;
    line-height: 1.2;
    margin-bottom: 1rem;
  }
  .hero-description {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    line-height: 1.5;
  }
  .hero-buttons {
    gap: 0.8rem;
  }
  .btn-book, .btn-secondary {
    padding: 0.6rem 1.2rem;
    font-size: 0.85rem;
  }
  .quick-specs {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 0.8rem;
    margin-top: 2rem;
    padding: 0 1rem;
  }
  .spec-card {
    padding: 0.75rem 1rem;
    gap: 0.8rem;
    border-radius: 10px;
  }
  .spec-icon {
    width: 38px;
    height: 38px;
    font-size: 1.1rem;
    border-radius: 8px;
  }
  .spec-details h4 {
    font-size: 0.7rem;
    margin-bottom: 0.1rem;
  }
  .spec-details p {
    font-size: 0.85rem;
    line-height: 1.2;
  }
  .inc-exc-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .inc-card, .exc-card {
    padding: 2rem;
  }
  .booking-card {
    padding: 1.5rem;
  }
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}
