/* ==================== CSS VARIABLES - CREAM & BROWN THEME ==================== */
:root {
  /* Color Palette - Cream & Brown */
  --color1: #fee3a2;        /* Cream Terang */
  --color2: #ddbe85;        /* Cream Gelap */
  --color3: #ab8b74;        /* Coklat Muda */
  --color4: #8d735a;        /* Coklat Sedang */
  --color5: #755848;        /* Coklat Tua */
  
  /* Primary Colors - Brown Theme */
  --primary: #8d735a;       /* Coklat Sedang */
  --secondary: #ab8b74;     /* Coklat Muda */
  --accent: #fee3a2;        /* Cream Accent */
  --dark: #755848;          /* Coklat Tua */
  
  /* Functional Colors */
  --success: #6b8e23;       /* Olive Green */
  --danger: #c14e3d;        /* Terracotta Red */
  --warning: #d4a574;       /* Sandy Brown */
  --info: #7b9cb5;          /* Steel Blue */
  --whatsapp: #25D366;
  --gold: #c9a961;
  
  /* Neutral Colors */
  --white: #ffffff;
  --light-cream: #fef9f0;
  --light-gray: #f5f1e8;
  --gray: #a89885;
  --dark-gray: #6d5d4f;
  --darker-gray: #5a4a3d;
  --black: #3d2f26;
  
  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --spacing-xxl: 4rem;
  
  /* Border Radius */
  --radius-sm: 10px;
  --radius-md: 15px;
  --radius-lg: 20px;
  --radius-xl: 50px;
  
  /* Shadows - Brown Tinted */
  --shadow-sm: 0 2px 8px rgba(117, 88, 72, 0.15);
  --shadow-md: 0 4px 12px rgba(117, 88, 72, 0.2);
  --shadow-lg: 0 10px 40px rgba(117, 88, 72, 0.25);
  --shadow-xl: 0 20px 60px rgba(117, 88, 72, 0.3);
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
}

/* ==================== BASE STYLES ==================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

*::before,
*::after {
  box-sizing: inherit;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: var(--light-cream);
  color: var(--color5);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  font-family: inherit;
  cursor: pointer;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
  width: 100%;
}

/* ==================== ANIMATIONS ==================== */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideRight {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

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

/* Animation Classes */
.fade-in { animation: fadeIn 0.8s ease-out; }
.slide-up {
  animation: slideUp 0.8s ease-out;
  animation-fill-mode: both;
}
.slide-down { animation: slideDown 0.8s ease-out; }
.slide-right { animation: slideRight 0.8s ease-out; }
.zoom-in { animation: zoomIn 0.8s ease-out; }
.pulse { animation: pulse 2s ease-in-out infinite; }
.float { animation: float 3s ease-in-out infinite; }

/* ==================== NAVBAR ==================== */
.navbar {
  background: linear-gradient(135deg, var(--color4) 0%, var(--color5) 100%);
  padding: var(--spacing-sm) 0;
  box-shadow: var(--shadow-md);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all var(--transition-normal);
}

.navbar.scrolled {
  padding: 0.5rem 0;
  box-shadow: var(--shadow-lg);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  transition: transform var(--transition-normal);
  cursor: pointer;
}

.logo-container:hover {
  transform: scale(1.05);
}

.logo-img {
  height: 50px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
  transition: filter var(--transition-normal);
}

.logo-img:hover {
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3));
}

.logo-text {
  color: var(--color1);
  font-size: 1.5rem;
  font-weight: bold;
  margin: 0;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: var(--spacing-lg);
  align-items: center;
}

.navbar a {
  color: var(--color1);
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all var(--transition-normal);
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0;
}

.navbar a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width var(--transition-normal);
}

.navbar a:hover::after {
  width: 100%;
}

.navbar a:hover {
  color: var(--accent);
  transform: translateY(-2px);
}

.btn-nav {

  padding: 0.6rem 1.2rem;
  border-radius: var(--radius-xl);
  font-weight: 700;
  box-shadow: var(--shadow-sm);
}

.btn-nav:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-nav::after {
  display: none;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--accent);
  font-size: 1.8rem;
  cursor: pointer;
  padding: 0.5rem;
  transition: all var(--transition-fast);
}

.mobile-menu-btn:hover {
  color: var(--color1);
  transform: scale(1.1);
}

/* ==================== HERO SECTION ==================== */
.hero-new {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(135deg, var(--color3) 0%, var(--color4) 50%, var(--color5) 100%);
  display: flex;
  align-items: center;
  padding-top: 80px;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(171, 139, 116, 0.85) 0%, rgba(141, 115, 90, 0.9) 50%, rgba(117, 88, 72, 0.95) 100%);
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.hero-badge {
  display: inline-block;
  background: rgba(254, 227, 162, 0.25);
  backdrop-filter: blur(10px);
  padding: 10px 25px;
  border-radius: var(--radius-xl);
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 30px;
  border: 2px solid rgba(254, 227, 162, 0.4);
  font-size: 0.95rem;
}

.hero-badge i {
  margin-right: 8px;
}

.hero-title {
  font-size: 3.5rem;
  margin-bottom: var(--spacing-md);
  color: var(--accent);
  font-weight: 800;
  text-shadow: 2px 2px 8px rgba(117, 88, 72, 0.5);
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.3rem;
  margin-bottom: 2.5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  color: var(--color1);
  opacity: 0.95;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin: 40px 0;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 60px;
  justify-content: center;
  margin-top: 60px;
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 15px;
  color: var(--accent);
  background: rgba(254, 227, 162, 0.15);
  backdrop-filter: blur(10px);
  padding: 20px 30px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(254, 227, 162, 0.3);
  transition: all var(--transition-normal);
}

.stat-item:hover {
  background: rgba(254, 227, 162, 0.25);
  transform: translateY(-5px);
}

.stat-item i {
  font-size: 2.5rem;
  opacity: 0.9;
}

.stat-item div {
  text-align: left;
}

.stat-item strong {
  display: block;
  font-size: 1.8rem;
  font-weight: 700;
}

.stat-item span {
  display: block;
  opacity: 0.9;
  font-size: 0.9rem;
}

.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--accent);
  font-size: 2rem;
  animation: bounce 2s infinite;
  cursor: pointer;
  z-index: 2;
  transition: opacity var(--transition-normal);
}

/* ==================== CTA BUTTONS ==================== */
.cta {
  display: inline-block;
  padding: 1.2rem 3rem;
  background: linear-gradient(135deg, var(--color4) 0%, var(--color5) 100%);
  color: var(--accent);
  text-decoration: none;
  border-radius: var(--radius-xl);
  font-weight: bold;
  font-size: 1.2rem;
  transition: all 0.4s;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
  border: none;
  cursor: pointer;
}

.cta::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(254, 227, 162, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
  z-index: -1;
}

.cta:hover::before {
  width: 300px;
  height: 300px;
}

.cta:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-xl);
}

/* CTA Primary - HIGH CONTRAST untuk Hero */
.cta-primary {
  background: var(--accent); /* Cream terang solid */
  color: var(--black); /* Coklat sangat gelap */
  font-weight: 800;
  border: 4px solid var(--color5);
  box-shadow: 0 10px 40px rgba(254, 227, 162, 0.7), 0 0 0 2px rgba(117, 88, 72, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cta-primary::before {
  background: rgba(255, 255, 255, 0.5);
}

.cta-primary:hover {
  background: var(--white);
  color: var(--dark);
  border-color: var(--color4);
  transform: translateY(-8px) scale(1.05);
  box-shadow: 0 20px 60px rgba(254, 227, 162, 0.9), 0 0 0 3px rgba(117, 88, 72, 0.5);
}

/* Hero Button Specific Override */
.hero-buttons .cta-primary {
  padding: 1.4rem 3.5rem;
  font-size: 1.3rem;
  background: var(--accent);
  color: var(--black);
  border: 4px solid var(--color5);
  box-shadow: 0 12px 45px rgba(254, 227, 162, 0.8), 
              0 0 0 3px rgba(117, 88, 72, 0.4),
              inset 0 2px 10px rgba(255, 255, 255, 0.3);
}

.hero-buttons .cta-primary:hover {
  background: var(--white);
  color: var(--dark);
  transform: translateY(-10px) scale(1.08);
  box-shadow: 0 25px 70px rgba(254, 227, 162, 1), 
              0 0 0 4px rgba(117, 88, 72, 0.6),
              inset 0 2px 15px rgba(255, 255, 255, 0.5);
}

/* CTA Secondary - Transparent Style */
.cta-secondary {
  background: rgba(254, 227, 162, 0.15);
  backdrop-filter: blur(15px);
  border: 4px solid var(--accent);
  color: var(--accent);
  font-weight: 700;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.cta-secondary::before {
  background: rgba(254, 227, 162, 0.2);
}

.cta-secondary:hover {
  background: rgba(254, 227, 162, 0.3);
  border-color: var(--white);
  color: var(--white);
  box-shadow: 0 15px 45px rgba(254, 227, 162, 0.5);
}

.hero-buttons .cta-secondary {
  padding: 1.4rem 3.5rem;
  font-size: 1.3rem;
}

/* CTA WhatsApp */
.cta-whatsapp {
  background: var(--whatsapp);
  color: white;
  border: 3px solid rgba(255, 255, 255, 0.3);
}

.cta-whatsapp:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(37, 211, 102, 0.4);
  background: #1fb359;
}

/* CTA Buttons Container */
.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-center {
  text-align: center;
  margin-top: var(--spacing-xl);
}

/* ==================== SECTIONS ==================== */
section {
  padding: var(--spacing-xxl) 0;
}

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

.section-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--color4) 0%, var(--color5) 100%);
  color: var(--accent);
  padding: 8px 20px;
  border-radius: var(--radius-xl);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.section-badge i {
  margin-right: 8px;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: var(--spacing-md);
  color: var(--color5);
  position: relative;
  display: inline-block;
  font-weight: 700;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--color4), var(--color5));
  border-radius: 2px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--dark-gray);
  margin-top: 15px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
}

/* ==================== INTRO SECTION ==================== */
.intro {
  background: linear-gradient(180deg, var(--color2) 0%, var(--color1) 100%);
  padding: var(--spacing-xxl) 0;
}

.intro-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.intro-text {
  padding-right: 20px;
}

.intro p {
  color: var(--color5);
  font-size: 1.15rem;
  line-height: 1.8;
  margin: var(--spacing-lg) 0;
}

.intro-list {
  list-style: none;
  padding: 0;
  margin: 30px 0;
}

.intro-list li {
  padding: 12px 0;
  font-size: 1.1rem;
  color: var(--darker-gray);
  display: flex;
  align-items: center;
  gap: 12px;
}

.intro-list i {
  color: var(--success);
  font-size: 1.3rem;
  flex-shrink: 0;
}

.intro-image {
  text-align: center;
}

.intro-image img {
  width: 100%;
  max-width: 500px;
  height: auto;
  margin: 0 auto;
}

/* ==================== FEATURES SECTION ==================== */
.features {
  padding: var(--spacing-xxl) 0;
  background: var(--light-cream);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  margin-top: var(--spacing-xl);
}

.feature-card {
  background: var(--white);
  border: 3px solid var(--color3);
  border-radius: var(--radius-md);
  padding: 2.5rem;
  text-align: center;
  transition: all 0.4s;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
  transform: rotate(45deg);
  transition: all 0.6s;
}

.feature-card:hover::before {
  left: 100%;
}

.feature-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: var(--shadow-lg);
  border-color: var(--color5);
}

.feature-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--color4) 0%, var(--color5) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 2.5rem;
  margin: 0 auto 1.5rem;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-normal);
}

.feature-card:hover .feature-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: var(--shadow-lg);
}

.feature-card h3 {
  margin-bottom: var(--spacing-sm);
  color: var(--color5);
  font-size: 1.5rem;
  font-weight: 700;
}

.feature-card p {
  color: var(--darker-gray);
  font-size: 1.05rem;
  line-height: 1.7;
}

/* ==================== DESTINATIONS SECTION ==================== */
.destinations {
  padding: 100px 20px;
  background: linear-gradient(180deg, var(--light-gray) 0%, var(--light-cream) 100%);
}

.destinations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.destination-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: all var(--transition-normal);
  border: 2px solid var(--color2);
}

.destination-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
  border-color: var(--color4);
}

.destination-image {
  position: relative;
  width: 100%;
  height: 300px;
  overflow: hidden;
}

.destination-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.destination-card:hover .destination-image img {
  transform: scale(1.1);
}

.destination-image iframe {
  border: none;
  width: 100%;
  height: 100%;
}

.destination-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(193, 78, 61, 0.95);
  color: white;
  padding: 8px 20px;
  border-radius: var(--radius-xl);
  font-weight: 600;
  font-size: 0.85rem;
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
}

.destination-badge.badge-hard {
  background: rgba(212, 165, 116, 0.95);
}

.destination-content {
  padding: 30px;
}

.destination-content h4 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: var(--color5);
  font-weight: 700;
}

.destination-content h4 i {
  color: var(--color4);
  margin-right: 8px;
}

.destination-location {
  color: var(--gray);
  font-size: 0.9rem;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.destination-location i {
  color: var(--danger);
}

.destination-desc {
  color: var(--dark-gray);
  line-height: 1.7;
  margin-bottom: 20px;
}

.destination-features {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  margin-top: 15px;
}

.destination-features span {
  background: var(--light-gray);
  padding: 8px 15px;
  border-radius: var(--radius-xl);
  font-size: 0.85rem;
  color: var(--color4);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 5px;
}

.destination-actions {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.btn-location,
.btn-whatsapp {
  flex: 1;
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  font-weight: 600;
  text-align: center;
  transition: all var(--transition-normal);
  border: none;
  cursor: pointer;
  font-size: 0.95rem;
}

.btn-location {
  background: linear-gradient(135deg, var(--color4) 0%, var(--color5) 100%);
  color: var(--accent);
}

.btn-location:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-whatsapp {
  background: var(--whatsapp);
  color: white;
}

.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
}

/* Distance Info */
.distance-info {
  background: linear-gradient(135deg, var(--color4) 0%, var(--color5) 100%);
  padding: 50px;
  border-radius: var(--radius-lg);
  color: var(--accent);
  text-align: center;
  margin-top: 60px;
}

.distance-info h4 {
  font-size: 1.8rem;
  margin-bottom: 40px;
  font-weight: 700;
}

.distance-info h4 i {
  margin-right: 10px;
}

.distance-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.distance-item {
  background: rgba(254, 227, 162, 0.15);
  backdrop-filter: blur(10px);
  padding: 25px;
  border-radius: var(--radius-md);
  border: 2px solid rgba(254, 227, 162, 0.3);
  transition: all var(--transition-normal);
}

.distance-item:hover {
  background: rgba(254, 227, 162, 0.25);
  transform: translateY(-5px);
}

.distance-item i {
  font-size: 2.5rem;
  margin-bottom: 15px;
  opacity: 0.9;
}

.distance-item span {
  display: block;
  font-size: 0.95rem;
  margin-bottom: 10px;
  opacity: 0.9;
}

.distance-item strong {
  display: block;
  font-size: 1.3rem;
  font-weight: 700;
}

/* ==================== HOW IT WORKS ==================== */
.how-it-works {
  padding: var(--spacing-xxl) 0;
  background: var(--light-cream);
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--spacing-xl);
  margin-top: var(--spacing-xl);
  align-items: start;
}

.step {
  text-align: center;
  padding: var(--spacing-lg);
  position: relative;
}

.step-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--color4) 0%, var(--color5) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 2rem;
  margin: 0 auto 20px;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-normal);
}

.step:hover .step-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: var(--shadow-lg);
}

.step-number {
  display: inline-block;
  width: 50px;
  height: 50px;
  line-height: 50px;
  background: var(--color5);
  color: var(--accent);
  border-radius: 50%;
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: var(--spacing-md);
  box-shadow: var(--shadow-md);
  transition: all 0.4s;
}

.step:hover .step-number {
  transform: rotate(360deg) scale(1.1);
  box-shadow: var(--shadow-lg);
}

.step h4 {
  color: var(--color5);
  margin-bottom: var(--spacing-sm);
  font-size: 1.5rem;
  font-weight: 700;
}

.step p {
  color: var(--darker-gray);
  font-size: 1.05rem;
  line-height: 1.7;
}

.step-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--color4);
  opacity: 0.3;
}

/* ==================== CTA SECTION ==================== */
.cta-section {
  padding: 100px 20px;
  background: linear-gradient(135deg, var(--color4) 0%, var(--color5) 100%);
  color: var(--accent);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
  animation: float 6s ease-in-out infinite;
}

.cta-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.cta-content .cta-icon {
  font-size: 4rem;
  margin-bottom: 30px;
  opacity: 0.9;
  display: inline-block;
  animation: float 3s ease-in-out infinite;
}

.cta-content h3 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  font-weight: 800;
}

.cta-content p {
  font-size: 1.2rem;
  margin-bottom: 40px;
  opacity: 0.95;
  line-height: 1.8;
}

/* ==================== FOOTER ==================== */
.footer {
  background: linear-gradient(135deg, var(--color5) 0%, var(--color4) 100%);
  color: var(--accent);
  padding: var(--spacing-xl) 0 var(--spacing-sm);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 50px;
}

.footer-col h4 {
  font-size: 1.3rem;
  margin-bottom: 25px;
  color: var(--accent);
  font-weight: 700;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul li a {
  color: rgba(254, 227, 162, 0.8);
  text-decoration: none;
  transition: all var(--transition-normal);
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-col ul li a:hover {
  color: var(--accent);
  padding-left: 5px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-xl);
  margin-bottom: var(--spacing-lg);
  text-align: center;
}

.footer-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-sm);
}

.footer-logo-img {
  height: 80px;
  width: auto;
  filter: brightness(0) invert(1);
}

.footer-logo h3 {
  font-size: 1.8rem;
  margin: 0;
  font-weight: 700;
}

.footer-info p {
  margin: var(--spacing-sm) 0;
  font-size: 1rem;
  line-height: 1.8;
  opacity: 0.9;
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
  justify-content: center;
}

.social-links a {
  width: 45px;
  height: 45px;
  background: rgba(254, 227, 162, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1.3rem;
  transition: all var(--transition-normal);
}

.social-links a:hover {
  background: var(--accent);
  color: var(--dark);
  transform: translateY(-5px);
}

.contact-list li,
.hours-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: rgba(254, 227, 162, 0.8);
  margin-bottom: 15px;
  text-align: left;
}

.contact-list i,
.hours-list i {
  color: var(--gold);
  margin-top: 3px;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.whatsapp-24 {
  background: rgba(37, 211, 102, 0.2);
  padding: 12px;
  border-radius: var(--radius-sm);
  margin-top: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-bottom {
  border-top: 1px solid rgba(254, 227, 162, 0.2);
  padding-top: var(--spacing-md);
  text-align: center;
}

.footer-bottom p {
  font-size: 0.95rem;
  opacity: 0.9;
  margin: 5px 0;
}

.footer-credit {
  margin-top: 10px;
  font-size: 0.9rem;
  opacity: 0.7;
}

.footer-credit i {
  color: var(--danger);
}

/* ==================== FLOATING ELEMENTS ==================== */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: var(--whatsapp);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 5px 20px rgba(37, 211, 102, 0.5);
  z-index: 999;
  animation: pulse 2s infinite;
  text-decoration: none;
  transition: all var(--transition-normal);
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.7);
}

.back-to-top {
  position: fixed;
  bottom: 100px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--color4) 0%, var(--color5) 100%);
  color: var(--accent);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
  z-index: 998;
  box-shadow: var(--shadow-md);
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

/* ==================== RESPONSIVE DESIGN ==================== */
@media (max-width: 1024px) {
  .container {
    padding: 0 var(--spacing-sm);
  }
  
  .destinations-grid,
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .hero-title {
    font-size: 2.8rem;
  }
}

@media (max-width: 768px) {
  html {
    font-size: 14px;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .mobile-menu-btn {
    display: block;
  }
  
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: linear-gradient(135deg, var(--color4) 0%, var(--color5) 100%);
    flex-direction: column;
    padding: 20px;
    gap: 0;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-lg);
  }
  
  .nav-links.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  
  .nav-links li {
    margin: 10px 0;
    width: 100%;
  }
  
  .navbar a {
    padding: 10px 0;
    justify-content: center;
  }
  
  .destinations-grid,
  .footer-grid,
  .intro-content,
  .features-grid,
  .steps {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
  }
  
  .step-arrow {
    display: none;
  }
  
  .hero-stats {
    gap: 30px;
  }
  
  .stat-item {
    padding: 15px 20px;
  }
  
  .distance-grid {
    grid-template-columns: 1fr;
  }
  
  .distance-info {
    padding: 30px 20px;
  }
  
  .cta {
    padding: 1rem 2rem;
    font-size: 1rem;
  }
  
  .hero-buttons .cta-primary,
  .hero-buttons .cta-secondary {
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
  }
  
  .hero-buttons,
  .cta-buttons,
  .destination-actions {
    flex-direction: column;
    width: 100%;
  }
  
  .hero-buttons .cta,
  .cta-buttons .cta {
    width: 100%;
  }
  
  .footer-content {
    text-align: center;
  }
  
  .contact-list li,
  .hours-list li {
    flex-direction: column;
    text-align: center;
  }
  
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }
  
  .back-to-top {
    bottom: 80px;
    right: 20px;
    width: 45px;
    height: 45px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.5rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .section-title {
    font-size: 1.5rem;
  }
  
  .logo-text {
    font-size: 1.2rem;
  }
  
  .logo-img {
    height: 40px;
  }
  
  .destination-image {
    height: 200px;
  }
  
  .feature-card,
  .step {
    padding: var(--spacing-md);
  }
  
  .hero-buttons .cta-primary,
  .hero-buttons .cta-secondary {
    padding: 1rem 2rem;
    font-size: 1rem;
  }
}

/* ==================== PRINT STYLES ==================== */
@media print {
  .navbar,
  .whatsapp-float,
  .back-to-top,
  .hero-buttons,
  .cta-buttons {
    display: none;
  }
  
  body {
    background: white;
    color: black;
  }
}
/* ==================== CUSTOM CURSOR STYLES ==================== */
.custom-cursor {
  position: fixed;
  width: 12px;
  height: 12px;
  background: var(--accent);
  border-radius: 50%;
  pointer-events: none;
  z-index: 10000;
  transform: translate(-50%, -50%);
  transition: width 0.3s, height 0.3s, background 0.3s;
  mix-blend-mode: difference;
}

.custom-cursor-follower {
  position: fixed;
  width: 40px;
  height: 40px;
  border: 2px solid var(--accent);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.3s, height 0.3s, border-color 0.3s;
  opacity: 0.6;
}

.custom-cursor.cursor-hover {
  width: 20px;
  height: 20px;
  background: var(--color4);
}

.custom-cursor-follower.cursor-hover {
  width: 60px;
  height: 60px;
  border-color: var(--color4);
  opacity: 0.8;
}

.custom-cursor.cursor-click {
  width: 8px;
  height: 8px;
}

.custom-cursor-follower.cursor-click {
  width: 50px;
  height: 50px;
}

/* Cursor Particles */
.cursor-particle {
  position: fixed;
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  animation: particleFade 0.6s ease-out forwards;
  opacity: 0.8;
}

@keyframes particleFade {
  0% {
    opacity: 0.8;
    transform: translate(-50%, -50%) scale(1);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.3);
  }
}

/* Scroll Progress Bar */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent) 0%, var(--color4) 100%);
  z-index: 10001;
  transition: width 0.1s ease-out;
  box-shadow: 0 2px 10px rgba(254, 227, 162, 0.5);
}

/* Animation In Class */
.animate-in {
  animation-play-state: running !important;
}

/* Body Loaded State */
body.loaded {
  overflow-x: hidden;
}

/* Tilt Effect Enhancement */
.feature-card,
.destination-card {
  transition: transform 0.3s ease-out, box-shadow 0.3s ease-out;
  will-change: transform;
}

/* Disable cursor effects on mobile */
@media (max-width: 768px) {
  .custom-cursor,
  .custom-cursor-follower,
  .cursor-particle {
    display: none;
  }
  
  body,
  a,
  button {
    cursor: auto !important;
  }
}

/* Smooth scroll behavior */
html {
  scroll-behavior: smooth;
}

/* Prevent flash of unstyled content */
body {
  opacity: 0;
  animation: fadeInBody 0.5s ease-in forwards;
}

@keyframes fadeInBody {
  to {
    opacity: 1;
  }
}
