/* Import Premium Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

/* CSS Custom Properties / Design Tokens */
:root {
  --primary-dark: #384b5f;       /* Mediterranean Blue/Slate */
  --primary-dark-rgb: 56, 75, 95;
  --secondary-dark: #212d39;     /* Deep Abyssal Blue */
  --accent-gold: #c5a059;        /* Warm Sunset Gold */
  --accent-gold-rgb: 197, 160, 89;
  --accent-light: #f2e6cf;       /* Cream Sand */
  --bg-canvas: #f6f8fb;          /* Off-white canvas */
  --bg-card: #ffffff;
  --text-dark: #2c3e50;          /* High contrast text */
  --text-light: #ffffff;
  --text-muted: #6f8597;         /* Soft slate text */
  --border-color: rgba(56, 75, 95, 0.1);
  --border-gold: rgba(197, 160, 89, 0.3);
  
  /* Shadows */
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  --shadow-md: 0 10px 20px -5px rgba(56, 75, 95, 0.08), 0 4px 6px -2px rgba(56, 75, 95, 0.04);
  --shadow-lg: 0 20px 35px -5px rgba(56, 75, 95, 0.15), 0 10px 20px -5px rgba(56, 75, 95, 0.06);
  --shadow-premium: 0 30px 60px -15px rgba(0, 0, 0, 0.25);
  
  /* Fonts */
  --font-headings: 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
  
  /* Layout */
  --container-width: 1200px;
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s ease;
  --border-radius-sm: 8px;
  --border-radius-md: 16px;
  --border-radius-lg: 24px;
}

/* Base Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-canvas);
  color: var(--text-dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Typography Utilities */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-headings);
  font-weight: 600;
  line-height: 1.25;
  color: var(--secondary-dark);
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

/* Layout Elements */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
}

section {
  padding: 6rem 0;
  position: relative;
}

.section-title-wrapper {
  text-align: center;
  margin-bottom: 4rem;
}

.section-subtitle {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--accent-gold);
  font-weight: 700;
  margin-bottom: 0.75rem;
  display: block;
}

.section-title {
  font-size: 2.8rem;
  margin-bottom: 1.5rem;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background-color: var(--accent-gold);
  margin: 1.5rem auto 0;
  border-radius: 2px;
}

.section-description {
  font-family: var(--font-sans);
  color: var(--text-muted);
  max-width: 650px;
  margin: 0 auto;
  font-size: 1.1rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.25rem;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border-radius: 50px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-primary {
  background-color: var(--accent-gold);
  color: var(--text-light);
  box-shadow: 0 4px 15px rgba(197, 160, 89, 0.3);
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  box-shadow: 0 6px 20px rgba(56, 75, 95, 0.4);
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: transparent;
  border-color: var(--text-light);
  color: var(--text-light);
}

.btn-secondary:hover {
  background-color: var(--text-light);
  color: var(--primary-dark);
  transform: translateY(-2px);
}

.btn-outline {
  background-color: transparent;
  border-color: var(--accent-gold);
  color: var(--accent-gold);
}

.btn-outline:hover {
  background-color: var(--accent-gold);
  color: var(--text-light);
  transform: translateY(-2px);
}

/* Header & Navigation */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px) saturate(180%);
  border-bottom: 1px solid var(--border-color);
  transition: var(--transition-smooth);
}

header.scrolled {
  background-color: rgba(33, 45, 57, 0.95);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: var(--shadow-md);
}

header.scrolled .logo-img {
  filter: brightness(0) invert(1);
}

header.scrolled .nav-link {
  color: var(--text-light);
}

header.scrolled .nav-link:hover {
  color: var(--accent-gold);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 90px;
  transition: var(--transition-smooth);
}

header.scrolled .header-container {
  height: 70px;
}

.logo {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 48px;
  width: auto;
  transition: var(--transition-smooth);
}

.nav-menu {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 1.8rem;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--primary-dark);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent-gold);
  transition: var(--transition-fast);
}

.nav-link:hover {
  color: var(--accent-gold);
}

.nav-link:hover::after {
  width: 100%;
}

.btn-nav {
  padding: 0.6rem 1.5rem;
  font-size: 0.85rem;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  background-color: var(--primary-dark);
  transition: var(--transition-fast);
}

header.scrolled .nav-toggle span {
  background-color: var(--text-light);
}

/* Hero Section */
.hero {
  height: 100vh;
  min-height: 700px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: var(--text-light);
  text-align: center;
  padding-top: 160px; /* Safe padding pushes content area below the fixed header */
  background: linear-gradient(rgba(33, 45, 57, 0.45), rgba(33, 45, 57, 0.7)),
              url('https://totalactivityholidays.com/wp-content/uploads/1243x700Sunrise1bedAltview90-scaled.jpg') center/cover no-repeat fixed;
}

.hero-content {
  max-width: 900px;
  margin: 0 auto;
  animation: fadeInUp 1s ease-out;
}

.hero-tagline {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 1.5rem;
}

.hero-title {
  font-size: 4rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 1.5rem;
  line-height: 1.15;
}

.hero-desc {
  font-size: 1.3rem;
  font-weight: 300;
  margin-bottom: 2.5rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-meta {
  display: inline-flex;
  align-items: center;
  gap: 2rem;
  margin-top: 3rem;
  padding: 1rem 2rem;
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 0.95rem;
  letter-spacing: 0.5px;
}

.hero-meta-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-meta-item i {
  color: var(--accent-gold);
}

.hero-meta-separator {
  width: 1px;
  height: 20px;
  background-color: rgba(255, 255, 255, 0.3);
}

/* Concept / Intro Section */

.concept {
  background-color: var(--bg-canvas);
}

.concept-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
}

.concept-image-wrapper {
  position: relative;
}

.concept-img {
  width: 100%;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-lg);
  display: block;
}

.concept-image-deco {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 100px;
  height: 100px;
  background-color: var(--accent-gold);
  z-index: -1;
  border-radius: var(--border-radius-sm);
  opacity: 0.5;
}

.concept-content h3 {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
  color: var(--primary-dark);
}

.concept-p {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.checklist-title {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--secondary-dark);
}

.concept-checklist {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.concept-checklist li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-dark);
}

.concept-checklist li i {
  color: var(--accent-gold);
  font-size: 1.1rem;
}

/* What's Included Grid */
.included {
  background-color: var(--bg-card);
}

.included-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.included-card {
  background-color: var(--bg-canvas);
  padding: 2.5rem 2rem;
  border-radius: var(--border-radius-md);
  border: 1px solid var(--border-color);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.included-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background-color: var(--accent-gold);
  opacity: 0;
  transition: var(--transition-fast);
}

.included-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--border-gold);
}

.included-card:hover::before {
  opacity: 1;
}

.included-icon-wrapper {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: rgba(197, 160, 89, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.included-icon-wrapper i {
  font-size: 1.5rem;
  color: var(--accent-gold);
}

.included-card h4 {
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
  color: var(--secondary-dark);
}

.included-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Timeline/Itinerary Section */
.itinerary {
  background-color: var(--bg-canvas);
}

.timeline {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 30px;
  width: 2px;
  height: 100%;
  background-color: var(--border-color);
}

.timeline-item {
  position: relative;
  padding-left: 80px;
  margin-bottom: 2rem;
}

.timeline-badge {
  position: absolute;
  top: 0;
  left: 10px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background-color: var(--bg-card);
  border: 2px solid var(--accent-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent-gold);
  z-index: 2;
  transition: var(--transition-fast);
}

.timeline-item.active .timeline-badge {
  background-color: var(--accent-gold);
  color: var(--text-light);
  box-shadow: 0 0 0 4px rgba(197, 160, 89, 0.2);
}

.timeline-content {
  background-color: var(--bg-card);
  border-radius: var(--border-radius-md);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: var(--transition-smooth);
}

.timeline-header {
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  background-color: var(--bg-card);
  user-select: none;
}

.timeline-header h4 {
  font-size: 1.25rem;
  color: var(--primary-dark);
}

.timeline-title-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.timeline-day-num {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
  color: var(--accent-gold);
  background-color: rgba(197, 160, 89, 0.1);
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
}

.timeline-toggle-icon {
  font-size: 1.2rem;
  color: var(--text-muted);
  transition: var(--transition-fast);
}

.timeline-item.active .timeline-toggle-icon {
  transform: rotate(180deg);
  color: var(--accent-gold);
}

.timeline-item.active .timeline-content {
  box-shadow: var(--shadow-md);
  border-color: rgba(197, 160, 89, 0.4);
}

.timeline-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0, 1, 0, 1); /* Custom collapse curve */
}

.timeline-item.active .timeline-body {
  max-height: 1000px; /* arbitrary high value */
  transition: max-height 1s cubic-bezier(1, 0, 1, 0);
}

.timeline-body-inner {
  padding: 0 2rem 2rem;
  border-top: 1px solid rgba(56, 75, 95, 0.05);
  margin-top: -1px;
}

.timeline-activity-list {
  list-style: none;
  margin-top: 1.25rem;
}

.timeline-activity-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  font-size: 1rem;
  color: var(--text-dark);
}

.timeline-activity-list li i {
  color: var(--accent-gold);
  margin-top: 0.3rem;
  font-size: 0.9rem;
}

/* Accommodation Section */
.accommodation {
  background-color: var(--bg-card);
}

.accom-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.accom-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.accom-img-large {
  grid-column: span 2;
  border-radius: var(--border-radius-md);
  width: 100%;
  box-shadow: var(--shadow-md);
  display: block;
}

.accom-img-small {
  border-radius: var(--border-radius-sm);
  width: 100%;
  box-shadow: var(--shadow-sm);
  display: block;
  height: 180px;
  object-fit: cover;
}

.accom-content h3 {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
  color: var(--primary-dark);
}

.accom-desc {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.accom-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  list-style: none;
}

.accom-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
  font-size: 0.95rem;
}

.accom-features li i {
  color: var(--accent-gold);
}

/* Hosts Section */
.hosts {
  background-color: var(--bg-card);
}

.hosts-grid {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 800px;
  margin: 0 auto;
}

.host-card {
  background: var(--bg-canvas);
  border-radius: var(--border-radius-md);
  overflow: hidden;
  transition: var(--transition-smooth);
  border: 1px solid var(--border-color);
}

.host-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.host-image-wrapper {
  width: 100%;
  height: 320px;
  overflow: hidden;
}

.host-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.host-card:hover .host-img {
  transform: scale(1.05);
}

.host-info {
  padding: 2rem;
}

.host-info h4 {
  font-size: 1.35rem;
  margin-bottom: 0.25rem;
  color: var(--secondary-dark);
}

.host-role {
  display: inline-block;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent-gold);
  font-weight: 600;
  margin-bottom: 1rem;
}

.host-info p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.host-quote {
  font-family: var(--font-headings);
  font-style: italic;
  color: var(--primary-dark) !important;
  font-size: 1rem !important;
  border-left: 3px solid var(--accent-gold);
  padding-left: 1rem;
  margin-top: 0.5rem;
}

.host-divider {
  height: 1px;
  background: linear-gradient(to right, transparent, var(--border-gold), transparent);
  margin: 2rem 0;
  border: none;
}

.host-info-block {
  margin-bottom: 0.5rem;
}

.host-info-block:last-child {
  margin-bottom: 0;
}

/* What You'll Experience Section */
.experience {
  background-color: var(--bg-canvas);
}

.experience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  max-width: 800px;
  margin: 0 auto 2rem;
}

.experience-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--bg-card);
  padding: 1.25rem 1.5rem;
  border-radius: var(--border-radius-sm);
  border: 1px solid var(--border-color);
  transition: var(--transition-smooth);
}

.experience-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
  border-color: var(--border-gold);
}

.experience-item i {
  font-size: 1.25rem;
  color: var(--accent-gold);
  width: 1.5rem;
  text-align: center;
  flex-shrink: 0;
}

.experience-item span {
  font-size: 0.95rem;
  color: var(--text-dark);
  line-height: 1.4;
}

.experience-note {
  text-align: center;
  font-family: var(--font-headings);
  font-style: italic;
  color: var(--text-muted);
  max-width: 600px;
  margin: 1.5rem auto 0;
  font-size: 1.05rem;
}

/* What You'll Leave With Section */
.takeaway {
  background-color: var(--bg-card);
}

.takeaway-content {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.takeaway-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  max-width: 500px;
  margin: 0 auto 2.5rem;
}

.takeaway-item {
  font-family: var(--font-headings);
  font-size: 1.15rem;
  color: var(--secondary-dark);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  justify-content: center;
}

.takeaway-item i {
  color: var(--accent-gold);
  font-size: 0.9rem;
}

.takeaway-quote {
  background: var(--bg-canvas);
  border-radius: var(--border-radius-md);
  padding: 2.5rem;
  border-left: 4px solid var(--accent-gold);
  text-align: left;
}

.quote-mark {
  font-family: var(--font-headings);
  color: var(--accent-gold);
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 0;
  vertical-align: -0.15em;
}

.quote-mark.closing {
  vertical-align: -0.35em;
}

.takeaway-quote p {
  font-family: var(--font-headings);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--primary-dark);
  line-height: 1.6;
}

/* Pricing and Booking Panel */
.booking {
  background: linear-gradient(rgba(33, 45, 57, 0.92), rgba(33, 45, 57, 0.95)),
              url('https://totalactivityholidays.com/wp-content/uploads/Drone-TWH-Closer-scaled.jpg') center/cover no-repeat fixed;
  color: var(--text-light);
}

.booking .section-title {
  color: var(--text-light);
}

.booking-panel {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  background-color: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-premium);
  max-width: 1050px;
  margin: 0 auto;
}

.booking-info {
  padding: 4rem 3rem;
  border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.booking-price-card {
  background-color: rgba(197, 160, 89, 0.1);
  border: 1px solid var(--accent-gold);
  border-radius: var(--border-radius-md);
  padding: 2rem;
  margin-top: 3rem;
  text-align: center;
}

.price-text {
  font-family: var(--font-headings);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--accent-gold);
}

.price-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.booking-form-side {
  padding: 4rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Booking CTA (no payment) */
.booking-cta-content {
  text-align: center;
}
.booking-cta-content h4 {
  font-size: 1.8rem;
  color: var(--text-light);
  margin-bottom: 1rem;
}
.booking-cta-text {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

/* Booking form input focus */
.booking-cta-content input:focus,
.booking-cta-content textarea:focus {
  outline: none;
  border-color: var(--accent-gold) !important;
  background-color: rgba(255, 255, 255, 0.1) !important;
}

/* Thank you state */
.booking-thankyou {
  display: none;
  text-align: center;
  padding: 2rem 0;
}
.booking-thankyou .success-icon {
  font-size: 3rem;
  color: #2ecc71;
  margin-bottom: 1rem;
}
.booking-thankyou h4 {
  font-size: 1.8rem;
  color: var(--text-light);
  margin-bottom: 0.75rem;
}
.booking-thankyou p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
}

/* Footer Section */
footer {
  background-color: var(--secondary-dark);
  color: var(--text-light);
  padding: 4rem 0 2rem;
  font-size: 0.95rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 3rem;
}

.footer-logo img {
  height: 48px;
  margin-bottom: 1.5rem;
  filter: brightness(0) invert(1);
}

.footer-p {
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
}

.footer-links-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.6);
}

.footer-links a:hover {
  color: var(--accent-gold);
  padding-left: 5px;
}

.footer-contact-info li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer-contact-info li i {
  color: var(--accent-gold);
  margin-top: 0.25rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.85rem;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(231, 76, 60, 0.4);
  }
  70% {
    transform: scale(1.05);
    box-shadow: 0 0 0 10px rgba(231, 76, 60, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(231, 76, 60, 0);
  }
}

/* Mobile & Tablet Styles */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 3rem;
  }
  .nav-menu {
    gap: 1rem;
  }
  .nav-link {
    font-size: 0.8rem;
  }
  .btn-nav {
    padding: 0.4rem 1rem;
    font-size: 0.75rem;
  }
  .concept-grid, .accom-grid, .hosts-grid, .booking-panel {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .booking-info {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 3rem 2rem;
  }
  .booking-form-side {
    padding: 3rem 2rem;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 768px) {
  .header-container {
    height: 70px;
  }
  .logo-img {
    height: 36px;
  }
  section {
    padding: 4rem 0;
  }
  .section-title {
    font-size: 2.2rem;
  }
  .nav-menu {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background-color: var(--bg-card);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-lg);
    z-index: 999;
  }
  .nav-menu.open {
    left: 0;
  }
  .nav-toggle {
    display: flex;
  }
  .nav-toggle.open span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
  }
  .nav-toggle.open span:nth-child(2) {
    opacity: 0;
  }
  .nav-toggle.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  .nav-menu .btn {
    width: auto;
    padding: 0.6rem 2rem;
  }
  .hero-meta {
    flex-direction: column;
    border-radius: 20px;
    gap: 0.75rem;
    padding: 1.25rem;
  }
  .hero-meta-separator {
    display: none;
  }
  .concept-checklist {
    grid-template-columns: 1fr;
  }
  .timeline::before {
    left: 20px;
  }
  .timeline-item {
    padding-left: 50px;
  }
  .timeline-badge {
    left: 0;
    width: 38px;
    height: 38px;
    font-size: 0.8rem;
  }
  .timeline-header {
    padding: 1.25rem 1.5rem;
  }
  .timeline-header h4 {
    font-size: 1.1rem;
  }
  .timeline-body-inner {
    padding: 0 1.5rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1.25rem;
  }
  section {
    padding: 3rem 0;
  }
  .section-title {
    font-size: 1.8rem;
  }
  .section-description {
    font-size: 0.95rem;
  }
  .hero {
    padding-top: 120px;
    min-height: 600px;
  }
  .hero-title {
    font-size: 2rem;
  }
  .hero-tagline {
    font-size: 0.9rem;
    letter-spacing: 2px;
  }
  .hero-desc {
    font-size: 1rem;
    margin-bottom: 2rem;
  }
  .hero-meta {
    width: 100%;
    font-size: 0.85rem;
    gap: 0.5rem;
    padding: 1rem;
    margin-top: 2rem;
  }
  .concept-checklist li {
    font-size: 0.9rem;
  }
  .included-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .included-card {
    padding: 2rem 1.5rem;
  }
  .included-icon-wrapper {
    width: 50px;
    height: 50px;
    margin-bottom: 1rem;
  }
  .included-icon-wrapper i {
    font-size: 1.25rem;
  }
  .included-card h4 {
    font-size: 1.15rem;
  }
  .timeline-item {
    padding-left: 40px;
  }
  .timeline-badge {
    width: 32px;
    height: 32px;
    font-size: 0.75rem;
  }
  .timeline-header {
    padding: 1rem 1.15rem;
  }
  .timeline-header h4 {
    font-size: 0.95rem;
  }
  .timeline-body-inner {
    padding: 0 1.15rem 1.15rem;
  }
  .accom-images {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .accom-img-large {
    grid-column: span 1;
  }
  .accom-img-small {
    height: 140px;
  }
  .host-image-wrapper {
    height: 240px;
  }
  .experience-grid,
  .takeaway-list {
    grid-template-columns: 1fr;
  }
  .accom-features {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
  .booking-info, .booking-form-side {
    padding: 2.25rem 1.25rem;
  }
  .booking-price-card {
    padding: 1.5rem 1.25rem;
  }
}
