@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: #080C0A;
  --bg-secondary: #0E1611;
  --bg-card: rgba(18, 30, 23, 0.65);
  --bg-card-hover: rgba(26, 43, 33, 0.85);
  --primary: #A3E635; /* Vibrant Lime */
  --primary-hover: #BEF264;
  --secondary: #F59E0B; /* Amber Gold */
  --secondary-hover: #FBBF24;
  --accent: #10B981; /* Emerald */
  --text-main: #F8FAFC;
  --text-muted: #94A3B8;
  --text-highlight: #A7F3D0;
  --border-color: rgba(163, 230, 53, 0.15);
  --border-color-hover: rgba(163, 230, 53, 0.35);
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.3), 0 4px 6px -2px rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.5), 0 10px 10px -5px rgba(0, 0, 0, 0.3);
  --font-title: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  --max-width: 1200px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 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: #1B2E24;
  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: 700;
  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: 6rem 0;
  position: relative;
}

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

.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(163, 230, 53, 0.1);
  padding: 0.4rem 1.2rem;
  border-radius: 50px;
  border: 1px solid var(--border-color);
  margin-bottom: 1rem;
  letter-spacing: 0.1em;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

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

.highlight {
  color: var(--primary);
}

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

/* Header & Navigation */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: rgba(8, 12, 10, 0.75);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  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.5rem;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

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

.logo-sub {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  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: 500;
  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: #080C0A;
  padding: 0.75rem 1.75rem;
  border-radius: 8px;
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: 0 4px 20px rgba(163, 230, 53, 0.3);
  transition: var(--transition);
  border: none;
  cursor: pointer;
}

.btn-book:hover {
  background: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(163, 230, 53, 0.55);
}

/* 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);
}

/* Hero Section */
.hero {
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  background: linear-gradient(rgba(8, 12, 10, 0.4), rgba(8, 12, 10, 0.9)), url('assets/hero_background.png') no-repeat center center/cover;
  padding-top: 80px;
  position: relative;
  overflow: visible;
}

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

.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: 4rem;
  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.5);
}

.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.75rem;
  border-radius: 8px;
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
}

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

/* 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;
}

.spec-card {
  background: rgba(18, 30, 23, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-color);
  padding: 1.5rem;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
}

.spec-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary);
  box-shadow: 0 10px 30px rgba(163, 230, 53, 0.15);
}

.spec-icon {
  background: rgba(163, 230, 53, 0.15);
  width: 50px;
  height: 50px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--primary);
  flex-shrink: 0;
}

.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: 600;
  font-size: 1rem;
}

/* 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: 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 {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 2rem;
  transition: var(--transition);
}

.info-badge-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-color-hover);
  transform: translateY(-5px);
}

.info-badge-card h4 {
  font-size: 1.2rem;
  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(163, 230, 53, 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%;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  padding: 2rem;
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.timeline-content:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-color-hover);
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.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.3rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

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

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

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

.timeline-media img {
  width: 100%;
  height: 150px;
  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 {
  background: var(--bg-card);
  border-radius: 20px;
  padding: 3rem;
  box-shadow: var(--shadow-md);
  height: 100%;
}

.inc-card {
  border: 1px solid rgba(16, 185, 129, 0.2);
}

.exc-card {
  border: 1px solid rgba(239, 68, 68, 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(--accent);
}

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

.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: 500;
}

.list-items li span {
  font-size: 0.85rem;
  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(--accent);
}

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

/* 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: 16px;
  overflow: hidden;
  aspect-ratio: 1;
  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(8, 12, 10, 0.9) 10%, rgba(8, 12, 10, 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(163, 230, 53, 0.03) 0%, transparent 40%),
                    radial-gradient(circle at 90% 80%, rgba(245, 158, 11, 0.03) 0%, transparent 40%);
}

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

.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;
}

.price-box-title h4 {
  font-size: 1.1rem;
  margin-bottom: 0.2rem;
}

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

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

.price-box-amount {
  font-size: 2rem;
  font-family: var(--font-title);
  font-weight: 900;
  color: var(--primary);
}

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

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

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

.policy-item i {
  color: var(--secondary);
  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) */
.booking-card {
  background: rgba(18, 30, 23, 0.8);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border: 1px solid rgba(163, 230, 53, 0.25);
  border-radius: 24px;
  padding: 3rem;
  box-shadow: var(--shadow-lg);
}

.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(8, 12, 10, 0.5);
  border: 1px solid var(--border-color);
  color: var(--text-main);
  padding: 0.85rem 1.2rem;
  border-radius: 8px;
  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(163, 230, 53, 0.15);
  background: rgba(8, 12, 10, 0.8);
}

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

/* Calculator Summary Box */
.calc-summary-box {
  background: rgba(8, 12, 10, 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;
}

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

.btn-submit {
  width: 100%;
  background: var(--primary);
  color: #080C0A;
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 1.1rem;
  padding: 1rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(163, 230, 53, 0.3);
  transition: var(--transition);
}

.btn-submit:hover {
  background: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(163, 230, 53, 0.5);
}

/* Modal Popup Styles */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(8, 12, 10, 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(16, 185, 129, 0.15);
  color: var(--accent);
  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: #080C0A;
  font-family: var(--font-title);
  font-weight: 700;
  padding: 0.8rem 2rem;
  border: none;
  border-radius: 8px;
  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: 12px;
  overflow: hidden;
  transition: var(--transition);
}

.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.1);
}

.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: #040605;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  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: #080C0A;
  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 ATV & Dust Effects */

/* Hero ATV Styling */
.hero-atv-container {
  position: absolute;
  bottom: 80px;
  right: 5%;
  z-index: 5;
  pointer-events: none;
  transform-origin: bottom center;
  animation: driveIn 2.2s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
}

.hero-atv {
  filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.7));
  animation: engineVibe 0.15s linear infinite alternate;
}

.hero-dust-particle {
  position: absolute;
  width: 12px;
  height: 12px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.45) 0%, rgba(18, 30, 23, 0) 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 4;
  bottom: 10px;
  transform: translate(-50%, -50%);
  animation: heroATVDustBlow 1.5s cubic-bezier(0.1, 0.8, 0.2, 1) forwards;
}

/* Timeline Animated ATV 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%; /* Dynamic height calculated in JS */
  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; /* Dynamic top position */
  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 Dust Particle classes */
.timeline-dust {
  position: absolute;
  width: 8px;
  height: 8px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.5) 0%, rgba(18, 30, 23, 0) 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 5;
  transform: translate(-50%, -50%);
  animation: timelineDustBlow 0.9s cubic-bezier(0.1, 0.8, 0.3, 1) forwards;
}

/* Animations */
@keyframes driveIn {
  0% {
    transform: translateX(120vw) rotate(-2deg);
  }
  60% {
    transform: translateX(-30px) rotate(4deg) translateY(-8px);
  }
  75% {
    transform: translateX(15px) rotate(-2deg) translateY(3px);
  }
  90% {
    transform: translateX(-5px) rotate(1deg);
  }
  100% {
    transform: translateX(0) rotate(0);
  }
}

@keyframes engineVibe {
  0% {
    transform: translateY(0) scaleY(1);
  }
  100% {
    transform: translateY(-2px) scaleY(0.98);
  }
}

@keyframes heroATVDustBlow {
  0% {
    transform: translate(-50%, -50%) scale(0.6);
    opacity: 0.8;
  }
  50% {
    opacity: 0.6;
  }
  100% {
    transform: translate(calc(-50% - 120px), calc(-50% - 50px)) scale(7);
    opacity: 0;
  }
}

@keyframes timelineDustBlow {
  0% {
    transform: translate(-50%, -50%) scale(0.5);
    opacity: 0.8;
  }
  100% {
    transform: translate(calc(-50% + var(--dx)), calc(-50% - var(--dy))) scale(4.5);
    opacity: 0;
  }
}

/* Hide hero ATV on mobile screens to preserve text readability */
@media (max-width: 1024px) {
  .hero-atv-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 {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .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;
  }
}
