/* ==========================================
   Mounty Explorers - Main Stylesheet
   Premium Travel Website Design
   ========================================== */

/* CSS Variables */
:root {
  /* 🎨 PREMIUM BRAND COLORS - Luxury Travel Theme */

  /* Primary Colors */
  --color-gold: #FFB800;              /* BRIGHT PREMIUM GOLD - Main CTA & Highlights */
  --color-gold-hover: #E5A500;        /* Rich Amber - Hover state */
  --color-gold-glow: rgba(255, 184, 0, 0.4); /* Gold glow effect */

  --color-primary-navy: #0A1628;      /* Deep Navy - Premium dark background */
  --color-navy-light: #0F1E30;        /* Light Navy - Sections */
  --color-navy-lighter: #1a2f47;      /* Lighter Navy - Cards */

  /* Text Colors */
  --color-text-dark: #1A1A1A;         /* Pure dark - Main text */
  --color-text-light: #FFFFFF;        /* Pure white - Text on dark */
  --color-text-grey: #6B7280;         /* Medium grey - Secondary text */
  --color-text-muted: #9CA3AF;        /* Light grey - Muted text */

  /* Background Colors */
  --color-bg-dark: #0A1628;           /* Dark background */
  --color-bg-light: #F5F5F5;          /* Light background */
  --color-bg-white: #FFFFFF;          /* Pure white */

  /* Legacy Aliases (for compatibility) */
  --primary-color: #0A1628;
  --primary-dark: #050b14;
  --primary-light: #1a2f47;
  --secondary-color: #25D366;
  --accent-color: #FFB800;
  --accent-gold: #FFB800;
  --text-dark: #1A1A1A;
  --text-light: #6B7280;
  --text-muted: #9CA3AF;
  --white: #FFFFFF;
  --bg-light: #F5F5F5;
  --border-color: #E5E7EB;

  /* Typography */
  --font-primary: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-size-base: 16px;
  --font-size-small: 14px;
  --font-size-large: 18px;
  --font-size-h1: 48px;
  --font-size-h2: 36px;
  --font-size-h3: 24px;
  --font-size-h4: 18px;

  /* Spacing */
  --spacing-xs: 8px;
  --spacing-sm: 16px;
  --spacing-md: 24px;
  --spacing-lg: 32px;
  --spacing-xl: 48px;
  --spacing-xxl: 64px;

  /* Layout */
  --container-max: 1200px;
  --header-height: 80px;
  --border-radius: 8px;
  --transition: all 0.3s ease;

  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
  --shadow-gold: 0 4px 20px rgba(255, 184, 0, 0.35);          /* Premium gold glow */
  --shadow-gold-hover: 0 8px 30px rgba(255, 184, 0, 0.5);     /* Stronger glow on hover */
}

/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: var(--font-size-base);
}

body {
  font-family: var(--font-primary);
  color: var(--text-dark);
  line-height: 1.6;
  background-color: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

ul {
  list-style: none;
}

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

/* Container */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

/* ==========================================
   HEADER STYLES
   ========================================== */

.main-header {
  position: sticky;
  top: 0;
  width: 100%;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  z-index: 1000;
  transition: var(--transition);
  border-top: 3px solid var(--color-gold);
}

.main-header.scrolled {
  box-shadow: var(--shadow-md);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  gap: var(--spacing-md);
}

/* Logo */
.logo h1 {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary-color);
  letter-spacing: -0.5px;
}

.logo a {
  display: block;
}

.logo a:hover h1 {
  color: var(--primary-light);
}

/* Desktop Navigation */
.desktop-nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.nav-menu {
  display: flex;
  gap: var(--spacing-lg);
  align-items: center;
}

.nav-menu li a {
  font-size: var(--font-size-base);
  font-weight: 500;
  color: var(--text-dark);
  padding: var(--spacing-xs) 0;
  position: relative;
}

.nav-menu li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-gold);
  transition: width 0.3s ease;
}

.nav-menu li a:hover {
  color: var(--color-gold);
}

.nav-menu li a:hover::after {
  width: 100%;
}

/* Header Actions */
.header-actions {
  display: flex;
  gap: var(--spacing-sm);
  align-items: center;
}

.whatsapp-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 11px 18px;
  background: var(--color-gold);
  color: var(--color-text-dark);
  border: none;
  border-radius: var(--border-radius);
  font-size: var(--font-size-small);
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-gold);
}

.whatsapp-btn:hover {
  background: var(--color-gold-hover);
  box-shadow: var(--shadow-gold-hover);
  transform: translateY(-2px);
}

.cta-btn {
  padding: 11px 24px;
  background: var(--color-primary-navy);
  color: var(--white);
  border-radius: var(--border-radius);
  font-size: var(--font-size-base);
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(10, 22, 40, 0.15);
  border: 2px solid var(--color-primary-navy);
}

.cta-btn:hover {
  background: var(--white);
  color: var(--color-primary-navy);
  border-color: var(--color-primary-navy);
  box-shadow: 0 4px 12px rgba(10, 22, 40, 0.2);
  transform: translateY(-2px);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 2px;
  background: var(--text-dark);
  transition: var(--transition);
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(7px, 7px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Navigation */
.mobile-nav {
  display: none;
  position: absolute;
  top: var(--header-height);
  left: 0;
  width: 100%;
  background: var(--white);
  box-shadow: var(--shadow-lg);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.mobile-nav.active {
  max-height: 600px;
}

.mobile-menu {
  padding: var(--spacing-md) 0;
}

.mobile-menu li {
  border-bottom: 1px solid var(--border-color);
}

.mobile-menu li a {
  display: block;
  padding: var(--spacing-sm) var(--spacing-md);
  font-size: var(--font-size-base);
  font-weight: 500;
  color: var(--text-dark);
}

.mobile-menu li a:hover {
  background: var(--bg-light);
  color: var(--primary-color);
}

.mobile-actions {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
  padding: var(--spacing-md);
}

.whatsapp-btn-mobile,
.cta-btn-mobile {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 20px;
  border-radius: var(--border-radius);
  font-size: var(--font-size-base);
  font-weight: 600;
  text-align: center;
  transition: var(--transition);
}

.whatsapp-btn-mobile {
  background: var(--color-gold);
  color: var(--color-text-dark);
  border: none;
  box-shadow: var(--shadow-gold);
}

.whatsapp-btn-mobile:hover {
  background: var(--color-gold-hover);
  box-shadow: var(--shadow-gold-hover);
}

.cta-btn-mobile {
  background: var(--color-primary-navy);
  color: var(--white);
  border: 2px solid var(--color-primary-navy);
  box-shadow: 0 2px 8px rgba(10, 22, 40, 0.15);
}

.cta-btn-mobile:hover {
  background: var(--white);
  color: var(--color-primary-navy);
  box-shadow: 0 4px 12px rgba(10, 22, 40, 0.2);
}

/* ==========================================
   FOOTER STYLES
   ========================================== */

.main-footer {
  background: var(--color-primary-navy);
  color: var(--color-text-light);
  margin-top: var(--spacing-xxl);
}

.footer-top {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-xl);
  padding: var(--spacing-xxl) 0 var(--spacing-lg);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-column h3 {
  font-size: var(--font-size-h3);
  margin-bottom: var(--spacing-sm);
  color: var(--white);
}

.footer-column h4 {
  font-size: var(--font-size-h4);
  margin-bottom: var(--spacing-sm);
  color: var(--color-gold);
  font-weight: 600;
}

.footer-column p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  margin-bottom: var(--spacing-sm);
}

.footer-column ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-column ul li a {
  color: rgba(255, 255, 255, 0.7);
  font-size: var(--font-size-small);
  transition: var(--transition);
}

.footer-column ul li a:hover {
  color: var(--color-gold);
  padding-left: 4px;
}

/* Trust Badges */
.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-xs);
  margin-top: var(--spacing-sm);
}

.trust-badges .badge {
  display: inline-block;
  font-size: 12px;
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  color: var(--white);
}

/* Contact Info */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
}

.contact-info li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.8);
  font-size: var(--font-size-small);
}

.contact-info li svg {
  flex-shrink: 0;
  opacity: 0.7;
}

.contact-info li a:hover {
  color: var(--white);
  padding-left: 0;
}

/* Social Links */
.social-links {
  display: flex;
  gap: var(--spacing-sm);
  margin-top: var(--spacing-md);
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: var(--white);
  transition: var(--transition);
}

.social-links a:hover {
  background: var(--color-gold);
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(255, 184, 0, 0.3);
}

/* Footer Trust Line */
.footer-trust {
  padding: var(--spacing-md) 0;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-trust p {
  font-size: var(--font-size-small);
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
}

/* Footer Bottom */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--spacing-md) 0;
  flex-wrap: wrap;
  gap: var(--spacing-sm);
}

.footer-bottom p {
  font-size: var(--font-size-small);
  color: rgba(255, 255, 255, 0.6);
}

.footer-legal {
  display: flex;
  gap: var(--spacing-sm);
  align-items: center;
  font-size: var(--font-size-small);
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.6);
}

.footer-legal a:hover {
  color: var(--white);
}

.footer-legal span {
  color: rgba(255, 255, 255, 0.3);
}

/* ==========================================
   PLACEHOLDER SECTION (Temporary)
   ========================================== */

.placeholder-section {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--spacing-xxl) 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.placeholder-content {
  text-align: center;
  max-width: 700px;
}

.placeholder-content h2 {
  font-size: var(--font-size-h2);
  color: var(--primary-color);
  margin-bottom: var(--spacing-md);
}

.placeholder-content p {
  font-size: var(--font-size-large);
  color: var(--text-light);
  margin-bottom: var(--spacing-lg);
}

.placeholder-content ul {
  list-style: disc;
  text-align: left;
  margin: 0 auto var(--spacing-lg);
  max-width: 400px;
  padding-left: var(--spacing-md);
}

.placeholder-content ul li {
  color: var(--text-light);
  margin-bottom: var(--spacing-xs);
}

.placeholder-note {
  background: var(--white);
  padding: var(--spacing-md);
  border-radius: var(--border-radius);
  border-left: 4px solid var(--primary-color);
  text-align: left;
  margin-top: var(--spacing-lg);
}

.placeholder-note strong {
  color: var(--primary-color);
}

.placeholder-note code {
  background: var(--bg-light);
  padding: 2px 8px;
  border-radius: 4px;
  font-family: 'Courier New', monospace;
  font-size: 13px;
  color: var(--text-dark);
}

/* ==========================================
   LOGO STYLES
   ========================================== */

.logo img {
  height: 50px;
  width: auto;
  display: block;
  transition: var(--transition);
  border-radius: 50%;
}

.logo a:hover img {
  opacity: 0.9;
  transform: scale(1.05);
}

/* ==========================================
   HERO SECTION
   ========================================== */

.hero-section {
  background: linear-gradient(135deg, var(--color-primary-navy) 0%, var(--color-navy-lighter) 50%, var(--color-primary-navy) 100%);
  padding: var(--spacing-xxl) 0;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="1" fill="rgba(242,169,35,0.1)"/></svg>');
  background-size: 50px 50px;
  opacity: 0.3;
  pointer-events: none;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-xxl);
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-left {
  animation: fadeInUp 0.8s ease-out;
}

.hero-title {
  font-size: 52px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: var(--spacing-md);
  letter-spacing: -0.5px;
}

.hero-subtitle {
  font-size: var(--font-size-large);
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  margin-bottom: var(--spacing-xl);
  max-width: 540px;
}

.hero-cta {
  display: flex;
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-lg);
  flex-wrap: wrap;
}

.btn-primary {
  padding: 16px 32px;
  background: var(--color-gold);
  color: var(--color-text-dark);
  border: none;
  border-radius: var(--border-radius);
  font-size: var(--font-size-base);
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-gold);
  text-decoration: none;
  display: inline-block;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  font-size: 14px;
}

.btn-primary:hover {
  background: var(--color-gold-hover);
  transform: translateY(-3px) scale(1.02);
  box-shadow: var(--shadow-gold-hover);
}

.btn-secondary {
  padding: 16px 32px;
  background: transparent;
  color: var(--color-text-light);
  border: 2px solid var(--color-text-light);
  border-radius: var(--border-radius);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

.btn-secondary:hover {
  background: transparent;
  border-color: var(--color-gold);
  color: var(--color-gold);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 184, 0, 0.2);
}

.hero-trust {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  flex-wrap: wrap;
}

.hero-trust::before {
  content: '✓';
  color: var(--color-gold);
  font-weight: bold;
  font-size: 18px;
}

.hero-right {
  position: relative;
  animation: fadeInRight 1s ease-out;
}

.hero-image-placeholder {
  width: 100%;
  height: 400px;
  background: linear-gradient(135deg, rgba(242, 169, 35, 0.15) 0%, rgba(173, 117, 42, 0.15) 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(242, 169, 35, 0.2);
  position: relative;
  overflow: hidden;
}

.hero-image-placeholder::before {
  content: '🏔️';
  font-size: 120px;
  opacity: 0.3;
}

.hero-image-placeholder::after {
  content: 'Premium Travel Image';
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
}

/* Hero Features */
.hero-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-md);
  margin-top: var(--spacing-xxl);
  animation: fadeInUp 1s ease-out 0.3s both;
}

.feature-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  padding: var(--spacing-md);
  border-radius: var(--border-radius);
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  transition: var(--transition);
}

.feature-card:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-4px);
  border-color: var(--color-gold);
  box-shadow: 0 4px 16px rgba(255, 184, 0, 0.2);
}

.feature-icon {
  font-size: 32px;
  margin-bottom: var(--spacing-xs);
}

.feature-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  margin: 0;
}

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

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

/* ==========================================
   RESPONSIVE DESIGN
   ========================================== */

/* Tablet */
@media (max-width: 1024px) {
  .nav-menu {
    gap: var(--spacing-md);
  }

  .footer-top {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 768px) {
  :root {
    --header-height: 70px;
    --font-size-h1: 36px;
    --font-size-h2: 28px;
    --font-size-h3: 20px;
  }

  .desktop-nav,
  .header-actions {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .mobile-nav {
    display: block;
  }

  .logo img {
    height: 36px;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
  }

  .hero-title {
    font-size: 36px;
  }

  .hero-subtitle {
    font-size: var(--font-size-base);
  }

  .hero-cta {
    flex-direction: column;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    text-align: center;
  }

  .hero-image-placeholder {
    height: 300px;
  }

  .hero-features {
    grid-template-columns: 1fr;
    gap: var(--spacing-sm);
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .placeholder-content h2 {
    font-size: 28px;
  }

  .placeholder-content p {
    font-size: var(--font-size-base);
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  :root {
    --spacing-md: 16px;
    --spacing-lg: 24px;
    --spacing-xl: 32px;
    --spacing-xxl: 48px;
  }

  .logo h1 {
    font-size: 20px;
  }

  .container {
    padding: 0 var(--spacing-sm);
  }
}

/* ==========================================

/* ==========================================
   PREMIUM HERO SECTION - RESPONSIVE OPTIMIZED
   Per-Slide Image Positioning & Mobile Optimization
   ========================================== */

/* Base Hero Section - Desktop */
.premium-hero-section {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: flex-start; /* Left-aligned on desktop */
  overflow: hidden;
  background-color: var(--color-primary-navy);
}

/* Premium Image Slideshow */
.hero-slideshow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 2s ease-in-out;
  transform: scale(1.05);
}

.hero-slide.active {
  opacity: 1;
  animation: slowZoom 20s ease-out forwards;
}

/* Per-Slide Custom Background Positioning */

/* SLIDE 1: Mountains - Show both mountains (top) and people (lower) */
.hero-slide.slide-mountains {
  background-position: center 40%;
  background-size: cover;
}

/* SLIDE 2: Energetic Group - People spread across middle */
.hero-slide.slide-energetic {
  background-position: center center;
  background-size: cover;
}

/* SLIDE 3: Sunny Group - People centered in lower half */
.hero-slide.slide-sunny {
  background-position: center 55%;
  background-size: cover;
}

@keyframes slowZoom {
  from {
    transform: scale(1.05);
  }
  to {
    transform: scale(1);
  }
}

/* Smart Gradient Overlay - Darker at text, lighter at subjects */
.hero-elegant-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(15, 30, 48, 0.85) 0%,
    rgba(15, 30, 48, 0.6) 50%,
    rgba(15, 30, 48, 0.75) 100%
  );
  z-index: 2;
}

/* Desktop Content Positioning - Left Aligned */
.hero-premium-content {
  position: relative;
  z-index: 3;
  text-align: left;
  max-width: 700px;
  margin: 0;
  padding: var(--spacing-xxl) var(--spacing-md);
  animation: fadeInUp 1s ease-out;
}

/* Trust Badge */
.hero-trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 184, 0, 0.15);
  border: 1px solid rgba(255, 184, 0, 0.3);
  padding: 8px 20px;
  border-radius: 30px;
  margin-bottom: var(--spacing-lg);
  backdrop-filter: blur(10px);
  animation: fadeInUp 1s ease-out 0.2s both;
}

.badge-icon {
  font-size: 16px;
  color: var(--color-gold);
  font-weight: bold;
}

.badge-text {
  font-size: 14px;
  color: var(--white);
  font-weight: 500;
  letter-spacing: 0.3px;
}

/* Desktop Headline */
.hero-main-headline {
  font-size: 52px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: var(--spacing-md);
  letter-spacing: -0.5px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  animation: fadeInUp 1s ease-out 0.4s both;
}

.highlight-gold {
  color: var(--color-gold);
  position: relative;
  display: inline-block;
}

/* Experience Text */
.hero-experience-text {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.8;
  margin-bottom: var(--spacing-xl);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 400;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 1s ease-out 0.6s both;
}

/* Desktop CTA Buttons */
.hero-premium-cta {
  display: flex;
  gap: var(--spacing-sm);
  justify-content: flex-start; /* Left-aligned on desktop */
  margin-bottom: var(--spacing-lg);
  flex-wrap: wrap;
  animation: fadeInUp 1s ease-out 0.8s both;
}

.btn-primary-premium {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 40px;
  background: var(--color-gold);
  color: var(--color-text-dark);
  border: none;
  border-radius: 50px;
  font-size: 17px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.4s ease;
  box-shadow: 0 8px 30px rgba(255, 184, 0, 0.5);
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.btn-primary-premium::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn-primary-premium:hover::before {
  width: 300px;
  height: 300px;
}

.btn-primary-premium:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 12px 40px rgba(255, 184, 0, 0.7);
}

.btn-secondary-premium {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 40px;
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.8);
  border-radius: 50px;
  font-size: 17px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  backdrop-filter: blur(10px);
}

.btn-secondary-premium:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--color-gold);
  color: var(--color-gold);
  transform: translateY(-2px);
}

.btn-icon {
  font-size: 20px;
}

.btn-text {
  font-weight: 700;
  letter-spacing: 0.3px;
}

/* Desktop Highlights - Horizontal */
.hero-experience-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-md);
  max-width: 100%;
  margin: 0 0 var(--spacing-lg);
  animation: fadeInUp 1s ease-out 1s both;
}

.highlight-item {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  padding: var(--spacing-lg);
  text-align: center;
  transition: all 0.3s ease;
}

.highlight-item:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--color-gold);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(255, 184, 0, 0.3);
}

.highlight-icon {
  font-size: 40px;
  margin-bottom: var(--spacing-sm);
}

.highlight-content h4 {
  font-size: 17px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 5px;
}

.highlight-content p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

/* Destinations Quick Links */
.hero-destinations-quick {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease-out 1.2s both;
}

.quick-label {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}

.destination-tag {
  padding: 8px 20px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  color: var(--white);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.destination-tag:hover {
  background: var(--color-gold);
  border-color: var(--color-gold);
  color: var(--color-text-dark);
  transform: translateY(-2px);
}

/* Slideshow Navigation Dots */
.hero-slide-dots {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 12px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.dot:hover {
  background: rgba(255, 255, 255, 0.6);
  transform: scale(1.2);
}

.dot.active {
  background: var(--color-gold);
  width: 30px;
  border-radius: 5px;
  border-color: var(--color-gold);
}

/* Elegant Scroll Indicator */
.hero-scroll-down {
  position: absolute;
  bottom: 80px;
  right: 40px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  animation: fadeIn 1s ease-out 1.5s both;
}

.scroll-text {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 500;
  writing-mode: vertical-rl;
  text-orientation: mixed;
}

.scroll-line {
  width: 2px;
  height: 40px;
  background: linear-gradient(
    to bottom,
    var(--color-gold),
    transparent
  );
  animation: scrollLineMove 2s ease-in-out infinite;
}

@keyframes scrollLineMove {
  0%, 100% {
    transform: translateY(0);
    opacity: 1;
  }
  50% {
    transform: translateY(20px);
    opacity: 0.3;
  }
}

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

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* ==========================================
   TABLET RESPONSIVE (iPad, Medium Screens)
   ========================================== */

@media (max-width: 1024px) {
  .premium-hero-section {
    min-height: 85vh;
    align-items: center;
    justify-content: center;
  }

  .hero-premium-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
  }

  .hero-main-headline {
    font-size: 44px;
  }

  .hero-experience-text {
    font-size: 18px;
  }

  .hero-premium-cta {
    justify-content: center;
  }

  .hero-experience-highlights {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-sm);
  }

  /* Tablet: Adjust image positioning for better framing */
  .hero-slide.slide-mountains {
    background-position: center 35%;
  }

  .hero-slide.slide-energetic {
    background-position: center center;
  }

  .hero-slide.slide-sunny {
    background-position: center 50%;
  }
}

/* ==========================================
   MOBILE RESPONSIVE (Phones)
   Critical: Prevent cropping travelers
   ========================================== */

@media (max-width: 768px) {
  /* MOBILE: Reduced height to prevent overly tall hero */
  .premium-hero-section {
    min-height: 75vh; /* Not too tall on mobile */
    align-items: flex-end; /* Push content to bottom */
    justify-content: center;
  }

  /* Mobile: Content at bottom to avoid covering faces */
  .hero-premium-content {
    text-align: center;
    max-width: 100%;
    margin: 0 auto;
    padding: var(--spacing-md);
    padding-bottom: var(--spacing-xl); /* Extra bottom padding */
  }

  /* Mobile: Smaller headline */
  .hero-main-headline {
    font-size: 32px;
    margin-bottom: var(--spacing-sm);
    line-height: 1.3;
  }

  .hero-main-headline br {
    display: none; /* Single line on mobile */
  }

  /* Mobile: Compact subheading */
  .hero-experience-text {
    font-size: 15px;
    margin-bottom: var(--spacing-md);
    line-height: 1.6;
  }

  /* Mobile: Stacked full-width buttons */
  .hero-premium-cta {
    flex-direction: column;
    width: 100%;
    gap: 10px;
  }

  .btn-primary-premium,
  .btn-secondary-premium {
    width: 100%;
    max-width: 100%;
    justify-content: center;
    padding: 16px 32px;
    font-size: 16px;
  }

  /* Mobile: Single column highlights */
  .hero-experience-highlights {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-bottom: var(--spacing-sm);
  }

  .highlight-item {
    padding: var(--spacing-sm);
  }

  .highlight-icon {
    font-size: 32px;
    margin-bottom: 5px;
  }

  .highlight-content h4 {
    font-size: 15px;
  }

  .highlight-content p {
    font-size: 13px;
  }

  /* Mobile: Stacked destination tags */
  .hero-destinations-quick {
    flex-direction: column;
    gap: 8px;
  }

  .destination-tag {
    width: 100%;
    text-align: center;
    padding: 10px 20px;
  }

  /* Mobile: Trust badge smaller */
  .hero-trust-badge {
    padding: 6px 16px;
    margin-bottom: var(--spacing-sm);
  }

  .badge-text {
    font-size: 12px;
  }

  /* CRITICAL: Mobile Image Positioning - Show people clearly */
  .hero-slide.slide-mountains {
    background-position: center 45%; /* More people visible */
    background-size: cover;
  }

  .hero-slide.slide-energetic {
    background-position: center 40%; /* Center on faces */
    background-size: cover;
  }

  .hero-slide.slide-sunny {
    background-position: center 50%; /* People well-framed */
    background-size: cover;
  }

  /* Mobile: Better overlay for readability without hiding subjects */
  .hero-elegant-overlay {
    background: linear-gradient(
      to bottom,
      rgba(15, 30, 48, 0.3) 0%,
      rgba(15, 30, 48, 0.5) 50%,
      rgba(15, 30, 48, 0.85) 90%
    );
  }

  /* Mobile: Hide scroll indicator */
  .hero-scroll-down {
    display: none;
  }

  /* Mobile: Adjust dots position */
  .hero-slide-dots {
    bottom: 100px; /* Above content */
  }
}

/* ==========================================
   SMALL MOBILE (Very Small Phones)
   ========================================== */

@media (max-width: 480px) {
  .premium-hero-section {
    min-height: 70vh; /* Even shorter on very small phones */
  }

  .hero-main-headline {
    font-size: 28px;
  }

  .hero-experience-text {
    font-size: 14px;
  }

  .btn-primary-premium,
  .btn-secondary-premium {
    padding: 14px 24px;
    font-size: 15px;
  }

  /* Very small mobile: Ensure people remain visible */
  .hero-slide.slide-mountains {
    background-position: center 48%;
  }

  .hero-slide.slide-energetic {
    background-position: center 42%;
  }

  .hero-slide.slide-sunny {
    background-position: center 52%;
  }
}

/* ==========================================
   LANDSCAPE MOBILE (Horizontal Phone)
   ========================================== */

@media (max-width: 768px) and (orientation: landscape) {
  .premium-hero-section {
    min-height: 100vh; /* Full height in landscape */
  }

  .hero-premium-content {
    padding: var(--spacing-sm);
  }

  .hero-main-headline {
    font-size: 28px;
  }

  .hero-experience-text {
    font-size: 14px;
    margin-bottom: var(--spacing-sm);
  }

  .hero-experience-highlights {
    display: none; /* Hide cards in landscape to save space */
  }

  .hero-destinations-quick {
    display: none; /* Hide tags in landscape */
  }
}
