/* =================================================================
   AURORAE PULSE - VIBRANT & ENERGETIC DESIGN SYSTEM
   Modern, bold, and dynamic travel website
   ================================================================= */

/* CSS RESET & BASE STYLES */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.7;
  color: #1a1a1a;
  background: #ffffff;
  overflow-x: hidden;
}

/* VIBRANT ENERGETIC COLOR PALETTE */
:root {
  --primary: #FF6B35;
  --primary-dark: #E85A2A;
  --secondary: #FFC857;
  --accent: #00D9FF;
  --dark: #1a1a1a;
  --light: #F4F1E8;
  --electric-blue: #00D9FF;
  --hot-pink: #FF006E;
  --lime: #8AC926;
  --purple: #7209B7;
  --gradient-1: linear-gradient(135deg, #FF6B35 0%, #FFC857 100%);
  --gradient-2: linear-gradient(135deg, #00D9FF 0%, #7209B7 100%);
  --gradient-3: linear-gradient(135deg, #FF006E 0%, #FF6B35 100%);
  --shadow-sm: 0 2px 8px rgba(255, 107, 53, 0.15);
  --shadow-md: 0 4px 16px rgba(255, 107, 53, 0.2);
  --shadow-lg: 0 8px 32px rgba(255, 107, 53, 0.25);
}

/* BOLD TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Arial Black', sans-serif;
  font-weight: 800;
  line-height: 1.2;
  color: var(--dark);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: -0.5px;
}

h1 {
  font-size: 48px;
  margin-bottom: 24px;
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

h3 {
  font-size: 24px;
  margin-bottom: 16px;
}

h4 {
  font-size: 20px;
  margin-bottom: 12px;
}

p {
  margin-bottom: 16px;
  font-size: 16px;
  color: #333;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-weight: 600;
}

a:hover {
  color: var(--secondary);
  transform: translateY(-2px);
}

ul {
  list-style-position: inside;
  margin-bottom: 16px;
}

li {
  margin-bottom: 8px;
  padding-left: 8px;
}

/* CONTAINER & LAYOUT */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ELECTRIC HEADER */
header {
  background: linear-gradient(135deg, var(--primary) 0%, var(--hot-pink) 100%);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 900;
  box-shadow: 0 4px 20px rgba(255, 107, 53, 0.3);
  animation: slideDown 0.5s ease-out;
}

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

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 60px;
  width: auto;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.2));
  transition: transform 0.3s ease;
}

.logo img:hover {
  transform: scale(1.1) rotate(5deg);
}

/* DYNAMIC NAVIGATION */
.main-nav {
  display: flex;
  gap: 5px;
  align-items: center;
}

.main-nav a {
  color: #ffffff;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 8px;
  border-radius: 24px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.main-nav a::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transition: left 0.3s ease;
  z-index: -1;
}

.main-nav a:hover::before {
  left: 0;
}

.main-nav a:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* MOBILE MENU BUTTON */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1000;
  background: var(--gradient-1);
  border: none;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  font-size: 28px;
  color: #ffffff;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  transform: scale(1.1) rotate(90deg);
  box-shadow: 0 8px 24px rgba(255, 107, 53, 0.6);
}

.mobile-menu-toggle:active {
  transform: scale(0.95);
}

/* MOBILE MENU OVERLAY */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 320px;
  height: 100vh;
  background: linear-gradient(180deg, var(--primary) 0%, var(--hot-pink) 100%);
  z-index: 999;
  padding: 80px 32px 32px;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -4px 0 24px rgba(0, 0, 0, 0.3);
  overflow-y: auto;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 28px;
  color: #ffffff;
  cursor: pointer;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: rotate(90deg);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mobile-nav a {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 16px 24px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  transition: all 0.3s ease;
  text-align: center;
  letter-spacing: 1px;
}

.mobile-nav a:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateX(8px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* EXPLOSIVE HERO SECTION */
.hero {
  background: linear-gradient(135deg, var(--electric-blue) 0%, var(--purple) 50%, var(--hot-pink) 100%);
  padding: 120px 20px 100px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 200, 87, 0.3) 0%, transparent 70%);
  animation: pulse 4s ease-in-out infinite;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 217, 255, 0.3) 0%, transparent 70%);
  animation: pulse 5s ease-in-out infinite reverse;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.2); opacity: 0.8; }
}

.hero-content {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  animation: fadeInUp 0.8s ease-out;
}

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

.hero h1 {
  font-size: 56px;
  color: #ffffff;
  text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.3);
  margin-bottom: 24px;
  background: linear-gradient(135deg, #ffffff 0%, var(--secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: slideInLeft 0.8s ease-out 0.2s both;
}

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

.hero-subtitle {
  font-size: 20px;
  color: #ffffff;
  margin-bottom: 40px;
  line-height: 1.6;
  text-shadow: 1px 2px 4px rgba(0, 0, 0, 0.2);
  animation: slideInRight 0.8s ease-out 0.4s both;
}

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

/* BOLD CTA BUTTONS */
.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeIn 0.8s ease-out 0.6s both;
}

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

.btn-primary,
.btn-secondary {
  padding: 18px 40px;
  font-size: 18px;
  font-weight: 800;
  text-transform: uppercase;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  letter-spacing: 1px;
  display: inline-block;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
  color: var(--dark);
  box-shadow: 0 6px 24px rgba(255, 200, 87, 0.4);
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--hot-pink) 100%);
  transition: left 0.4s ease;
  z-index: -1;
}

.btn-primary:hover::before {
  left: 0;
}

.btn-primary:hover {
  color: #ffffff;
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 12px 32px rgba(255, 200, 87, 0.6);
}

.btn-secondary {
  background: transparent;
  color: #ffffff;
  border: 3px solid #ffffff;
  box-shadow: 0 6px 24px rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
  background: #ffffff;
  color: var(--primary);
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 12px 32px rgba(255, 255, 255, 0.4);
}

.btn-primary:active,
.btn-secondary:active {
  transform: translateY(-2px) scale(1.02);
}

/* PAGE HERO */
.page-hero {
  background: var(--gradient-2);
  padding: 100px 20px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::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"><rect fill="rgba(255,255,255,0.03)" width="50" height="50"/><rect fill="rgba(255,255,255,0.03)" x="50" y="50" width="50" height="50"/></svg>');
  opacity: 0.5;
}

.page-hero h1 {
  color: #ffffff;
  text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 1;
  font-size: 48px;
}

.page-hero p {
  color: #ffffff;
  font-size: 20px;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  text-shadow: 1px 2px 4px rgba(0, 0, 0, 0.2);
}

/* SECTION STYLING */
section {
  margin-bottom: 80px;
  padding: 60px 20px;
}

.section-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 48px;
  font-size: 18px;
  color: #555;
}

/* VIBRANT VALUE CARDS */
.value-proposition {
  background: linear-gradient(180deg, #ffffff 0%, var(--light) 100%);
}

.value-proposition h2 {
  text-align: center;
  margin-bottom: 48px;
  font-size: 42px;
}

.value-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-top: 40px;
}

.value-card {
  background: #ffffff;
  padding: 40px 32px;
  border-radius: 24px;
  box-shadow: 0 8px 32px rgba(255, 107, 53, 0.15);
  flex: 1 1 calc(50% - 32px);
  min-width: 280px;
  max-width: 500px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  border: 3px solid transparent;
}

.value-card::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: var(--gradient-1);
  border-radius: 24px;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.value-card:hover::before {
  opacity: 1;
}

.value-card:hover {
  transform: translateY(-12px) scale(1.03);
  box-shadow: 0 16px 48px rgba(255, 107, 53, 0.3);
}

.value-card h3 {
  color: var(--primary);
  font-size: 26px;
  margin-bottom: 16px;
}

.value-card p {
  font-size: 16px;
  color: #555;
  line-height: 1.7;
}

/* DYNAMIC SERVICES GRID */
.services-overview {
  background: var(--light);
}

.services-overview h2 {
  text-align: center;
  margin-bottom: 20px;
  font-size: 42px;
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin: 48px 0;
}

.service-card {
  background: #ffffff;
  padding: 48px 36px;
  border-radius: 20px;
  box-shadow: 0 6px 24px rgba(0, 217, 255, 0.15);
  flex: 1 1 calc(33.333% - 32px);
  min-width: 300px;
  max-width: 400px;
  transition: all 0.4s ease;
  position: relative;
  border-left: 6px solid var(--electric-blue);
}

.service-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-2);
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 20px;
  z-index: -1;
}

.service-card:hover::after {
  opacity: 0.1;
}

.service-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 16px 48px rgba(0, 217, 255, 0.3);
  border-left-color: var(--purple);
}

.service-card h3 {
  font-size: 24px;
  color: var(--electric-blue);
  margin-bottom: 16px;
}

.service-card p {
  font-size: 16px;
  color: #555;
  margin-bottom: 20px;
}

.service-card .price {
  font-size: 28px;
  font-weight: 800;
  color: var(--primary);
  margin-top: 20px;
}

/* ELECTRIC DESTINATIONS */
.destinations-preview {
  background: #ffffff;
}

.destinations-preview h2 {
  text-align: center;
  margin-bottom: 48px;
  font-size: 42px;
}

.destinations-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-bottom: 48px;
}

.destination-card {
  background: linear-gradient(135deg, var(--hot-pink) 0%, var(--primary) 100%);
  padding: 48px 36px;
  border-radius: 24px;
  box-shadow: 0 8px 32px rgba(255, 0, 110, 0.25);
  flex: 1 1 calc(50% - 32px);
  min-width: 280px;
  max-width: 500px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.destination-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  transition: transform 0.6s ease;
}

.destination-card:hover::before {
  transform: translate(-25%, -25%);
}

.destination-card:hover {
  transform: translateY(-12px) scale(1.03);
  box-shadow: 0 20px 60px rgba(255, 0, 110, 0.4);
}

.destination-card h3 {
  color: #ffffff;
  font-size: 28px;
  margin-bottom: 16px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.destination-card p {
  color: #ffffff;
  font-size: 16px;
  line-height: 1.6;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.destinations-preview .btn-secondary {
  display: block;
  margin: 0 auto;
  width: fit-content;
}

/* BOLD TESTIMONIALS */
.testimonials {
  background: var(--gradient-2);
  padding: 80px 20px;
}

.testimonials h2 {
  text-align: center;
  color: #ffffff;
  margin-bottom: 48px;
  font-size: 42px;
  text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.2);
}

.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  max-width: 1100px;
  margin: 0 auto;
}

.testimonial-card {
  background: #ffffff;
  padding: 40px 36px;
  border-radius: 20px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
  flex: 1 1 calc(50% - 32px);
  min-width: 300px;
  max-width: 500px;
  position: relative;
  transition: all 0.3s ease;
  border-top: 5px solid var(--secondary);
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 10px;
  left: 20px;
  font-size: 80px;
  color: var(--secondary);
  opacity: 0.2;
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.testimonial-card p {
  font-size: 16px;
  color: #333;
  line-height: 1.7;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.testimonial-card .author {
  font-weight: 700;
  color: var(--primary);
  font-size: 14px;
  text-align: right;
  margin-bottom: 0;
}

/* EXPLOSIVE CTA BANNER */
.cta-banner,
.cta-section {
  background: var(--gradient-3);
  padding: 100px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

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

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

.cta-banner h2,
.cta-section h2 {
  color: #ffffff;
  margin-bottom: 24px;
  font-size: 42px;
  text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.3);
}

.cta-banner p,
.cta-section p {
  color: #ffffff;
  font-size: 20px;
  margin-bottom: 40px;
  text-shadow: 1px 2px 4px rgba(0, 0, 0, 0.2);
}

.cta-banner .btn-primary,
.cta-section .btn-primary {
  background: #ffffff;
  color: var(--primary);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.cta-banner .btn-primary:hover,
.cta-section .btn-primary:hover {
  background: var(--secondary);
  color: var(--dark);
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.3);
}

/* DETAILED SERVICES */
.services-detailed {
  background: var(--light);
}

.service-detail {
  background: #ffffff;
  padding: 48px;
  border-radius: 24px;
  margin-bottom: 40px;
  box-shadow: 0 6px 24px rgba(255, 107, 53, 0.1);
  border-left: 8px solid var(--primary);
  transition: all 0.3s ease;
}

.service-detail:hover {
  transform: translateX(12px);
  box-shadow: 0 12px 40px rgba(255, 107, 53, 0.2);
  border-left-color: var(--hot-pink);
}

.service-detail .tagline {
  font-size: 20px;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.service-detail .price {
  font-size: 32px;
  font-weight: 800;
  color: var(--primary);
  margin: 24px 0;
  display: inline-block;
  padding: 12px 24px;
  background: var(--light);
  border-radius: 12px;
}

.service-detail ul {
  margin-top: 24px;
}

.service-detail li {
  padding-left: 32px;
  position: relative;
  margin-bottom: 12px;
  font-size: 16px;
}

.service-detail li::before {
  content: '⚡';
  position: absolute;
  left: 0;
  color: var(--secondary);
  font-size: 20px;
}

/* PACKAGE DEALS */
.package-deals {
  background: linear-gradient(180deg, #ffffff 0%, var(--light) 100%);
}

.package-deals h2 {
  text-align: center;
  margin-bottom: 48px;
  font-size: 42px;
}

.packages-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-top: 40px;
}

.package-card {
  background: #ffffff;
  padding: 48px 36px;
  border-radius: 24px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
  flex: 1 1 calc(33.333% - 32px);
  min-width: 280px;
  max-width: 380px;
  transition: all 0.4s ease;
  border: 3px solid transparent;
  position: relative;
}

.package-card.featured {
  border-color: var(--primary);
  transform: scale(1.05);
  box-shadow: 0 12px 48px rgba(255, 107, 53, 0.3);
}

.package-card.featured::after {
  content: 'BEST VALUE';
  position: absolute;
  top: -15px;
  right: 20px;
  background: var(--gradient-1);
  color: var(--dark);
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;
  box-shadow: 0 4px 12px rgba(255, 107, 53, 0.4);
}

.package-card:hover {
  transform: translateY(-12px) scale(1.03);
  box-shadow: 0 16px 56px rgba(0, 0, 0, 0.2);
  border-color: var(--secondary);
}

.package-card h3 {
  font-size: 28px;
  color: var(--primary);
  margin-bottom: 20px;
  text-align: center;
}

.package-price {
  font-size: 48px;
  font-weight: 800;
  color: var(--primary);
  text-align: center;
  margin-bottom: 32px;
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.package-card ul {
  margin-bottom: 24px;
}

.package-card li {
  padding-left: 32px;
  position: relative;
  margin-bottom: 12px;
}

.package-card li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--lime);
  font-weight: 800;
  font-size: 18px;
}

.savings {
  text-align: center;
  font-weight: 700;
  color: var(--hot-pink);
  font-size: 18px;
  margin-top: 20px;
  padding: 12px;
  background: rgba(255, 0, 110, 0.1);
  border-radius: 8px;
}

/* ACCOMMODATION TYPES */
.accommodation-types {
  background: var(--light);
}

.types-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-top: 40px;
}

.type-card {
  background: #ffffff;
  padding: 40px 32px;
  border-radius: 20px;
  box-shadow: 0 6px 24px rgba(0, 217, 255, 0.15);
  flex: 1 1 calc(33.333% - 32px);
  min-width: 280px;
  max-width: 380px;
  transition: all 0.3s ease;
  border-top: 5px solid var(--electric-blue);
}

.type-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 217, 255, 0.25);
  border-top-color: var(--purple);
}

.type-card h3 {
  color: var(--electric-blue);
  font-size: 24px;
  margin-bottom: 16px;
}

.type-card .price-range {
  font-size: 22px;
  font-weight: 800;
  color: var(--primary);
  margin-top: 20px;
}

/* FEATURED PROPERTIES */
.featured-accommodations {
  background: #ffffff;
}

.properties-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-top: 40px;
}

.property-card {
  background: linear-gradient(135deg, #ffffff 0%, var(--light) 100%);
  padding: 40px 32px;
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  flex: 1 1 calc(33.333% - 32px);
  min-width: 300px;
  max-width: 400px;
  transition: all 0.4s ease;
  border: 3px solid transparent;
}

.property-card:hover {
  transform: translateY(-12px) scale(1.03);
  box-shadow: 0 16px 48px rgba(255, 107, 53, 0.2);
  border-color: var(--secondary);
}

.property-card h3 {
  color: var(--primary);
  font-size: 24px;
  margin-bottom: 8px;
}

.property-card .location {
  color: var(--electric-blue);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.property-card .price {
  font-size: 24px;
  font-weight: 800;
  color: var(--hot-pink);
  margin-top: 20px;
}

/* TIP CATEGORIES */
.tip-categories {
  background: var(--light);
}

.categories-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 40px;
}

.category-card {
  background: #ffffff;
  padding: 32px 28px;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(138, 201, 38, 0.15);
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  max-width: 380px;
  transition: all 0.3s ease;
  border-left: 5px solid var(--lime);
}

.category-card:hover {
  transform: translateX(8px);
  box-shadow: 0 10px 32px rgba(138, 201, 38, 0.25);
  border-left-color: var(--secondary);
}

.category-card h3 {
  color: var(--lime);
  font-size: 22px;
  margin-bottom: 12px;
}

/* FEATURED TIPS */
.featured-tips {
  background: #ffffff;
}

.tips-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-top: 40px;
}

.tip-card {
  background: var(--light);
  padding: 36px 32px;
  border-radius: 20px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
  flex: 1 1 calc(50% - 32px);
  min-width: 300px;
  max-width: 550px;
  transition: all 0.3s ease;
  border-top: 5px solid var(--primary);
}

.tip-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(255, 107, 53, 0.2);
}

.tip-card h3 {
  color: var(--primary);
  font-size: 22px;
  margin-bottom: 16px;
}

.insider-tip {
  background: rgba(255, 200, 87, 0.2);
  padding: 16px 20px;
  border-radius: 12px;
  margin-top: 20px;
  border-left: 4px solid var(--secondary);
}

.insider-tip strong {
  color: var(--primary);
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 1px;
}

/* SEASONAL GUIDE */
.seasonal-guide {
  background: var(--light);
}

.seasons-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-top: 40px;
}

.season-card {
  background: #ffffff;
  padding: 36px 32px;
  border-radius: 20px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
  flex: 1 1 calc(50% - 32px);
  min-width: 280px;
  max-width: 500px;
  transition: all 0.3s ease;
}

.season-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.season-card h3 {
  font-size: 26px;
  margin-bottom: 16px;
  color: var(--primary);
}

/* TEAM SECTION */
.team-section {
  background: var(--light);
}

.team-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-top: 40px;
}

.team-member {
  background: #ffffff;
  padding: 40px 32px;
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  flex: 1 1 calc(33.333% - 32px);
  min-width: 280px;
  max-width: 380px;
  text-align: center;
  transition: all 0.3s ease;
  border-top: 5px solid var(--electric-blue);
}

.team-member:hover {
  transform: translateY(-12px);
  box-shadow: 0 16px 48px rgba(0, 217, 255, 0.2);
}

.team-member h3 {
  color: var(--primary);
  font-size: 26px;
  margin-bottom: 8px;
}

.team-member .role {
  color: var(--electric-blue);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

/* STATISTICS */
.statistics {
  background: var(--gradient-2);
  padding: 80px 20px;
}

.statistics h2 {
  color: #ffffff;
  text-align: center;
  margin-bottom: 48px;
  font-size: 42px;
  text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.2);
}

.stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.stat-card {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 40px 32px;
  border-radius: 20px;
  flex: 1 1 calc(25% - 32px);
  min-width: 200px;
  max-width: 280px;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.stat-card:hover {
  transform: translateY(-8px) scale(1.05);
  background: rgba(255, 255, 255, 0.25);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.stat-number {
  font-size: 56px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 12px;
  text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.3);
}

.stat-card p {
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
  text-shadow: 1px 2px 4px rgba(0, 0, 0, 0.2);
}

/* CONTACT OPTIONS */
.contact-options {
  background: var(--light);
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-top: 40px;
}

.contact-card {
  background: #ffffff;
  padding: 48px 36px;
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  flex: 1 1 calc(50% - 32px);
  min-width: 300px;
  max-width: 500px;
  text-align: center;
  transition: all 0.3s ease;
  border: 3px solid transparent;
}

.contact-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(255, 107, 53, 0.2);
  border-color: var(--secondary);
}

.contact-card h3 {
  color: var(--primary);
  font-size: 26px;
  margin-bottom: 20px;
}

.contact-card strong {
  color: var(--electric-blue);
  font-size: 20px;
}

.note {
  font-size: 14px;
  color: #777;
  font-style: italic;
  margin-top: 12px;
}

/* THANK YOU PAGE */
.thank-you-hero {
  background: var(--gradient-1);
  padding: 100px 20px;
  text-align: center;
}

.success-icon {
  width: 100px;
  height: 100px;
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
  color: var(--lime);
  margin: 0 auto 32px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
  animation: popIn 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes popIn {
  0% { transform: scale(0); opacity: 0; }
  50% { transform: scale(1.2); }
  100% { transform: scale(1); opacity: 1; }
}

.thank-you-hero h1 {
  color: #ffffff;
  font-size: 48px;
  text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.3);
}

.confirmation-message {
  color: #ffffff;
  font-size: 24px;
  margin-bottom: 16px;
  font-weight: 600;
  text-shadow: 1px 2px 4px rgba(0, 0, 0, 0.2);
}

.submessage {
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  text-shadow: 1px 2px 4px rgba(0, 0, 0, 0.2);
}

/* NEXT STEPS */
.next-steps {
  background: var(--light);
  padding: 80px 20px;
}

.steps-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-top: 40px;
}

.step-card {
  background: #ffffff;
  padding: 40px 32px;
  border-radius: 20px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
  flex: 1 1 calc(25% - 32px);
  min-width: 240px;
  max-width: 280px;
  text-align: center;
  transition: all 0.3s ease;
  border-top: 5px solid var(--primary);
}

.step-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(255, 107, 53, 0.2);
}

.step-number {
  width: 60px;
  height: 60px;
  background: var(--gradient-1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  font-weight: 800;
  color: #ffffff;
  margin: 0 auto 24px;
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.3);
}

.step-card h3 {
  font-size: 20px;
  color: var(--primary);
  margin-bottom: 12px;
}

.timeframe {
  font-size: 14px;
  font-weight: 700;
  color: var(--electric-blue);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 16px;
}

/* LEGAL PAGES */
.legal-hero {
  background: var(--gradient-2);
  padding: 80px 20px 60px;
  text-align: center;
}

.legal-hero h1 {
  color: #ffffff;
  font-size: 42px;
  text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.3);
}

.legal-hero p {
  color: #ffffff;
  font-size: 18px;
  text-shadow: 1px 2px 4px rgba(0, 0, 0, 0.2);
}

.last-updated {
  font-size: 14px;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.legal-content {
  background: #ffffff;
  padding: 60px 20px;
}

.content-section {
  max-width: 900px;
  margin: 0 auto 48px;
  padding: 32px;
  background: var(--light);
  border-radius: 16px;
  border-left: 5px solid var(--primary);
}

.content-section h2 {
  color: var(--primary);
  font-size: 28px;
  margin-bottom: 20px;
}

.content-section h3 {
  color: var(--electric-blue);
  font-size: 22px;
  margin-top: 24px;
  margin-bottom: 16px;
}

.content-section ul {
  margin-left: 24px;
}

.content-section li {
  margin-bottom: 12px;
}

/* FOOTER */
footer {
  background: linear-gradient(135deg, var(--dark) 0%, #2a2a2a 100%);
  color: #ffffff;
  padding: 60px 20px 20px;
  margin-top: 80px;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  margin-bottom: 40px;
  justify-content: space-between;
}

.footer-section {
  flex: 1 1 220px;
  min-width: 200px;
}

.footer-section h3 {
  color: var(--secondary);
  font-size: 24px;
  margin-bottom: 16px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.footer-section h4 {
  color: var(--electric-blue);
  font-size: 18px;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-section p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  line-height: 1.8;
}

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

.footer-nav a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  transition: all 0.3s ease;
  padding: 4px 0;
}

.footer-nav a:hover {
  color: var(--secondary);
  transform: translateX(8px);
}

.footer-bottom {
  text-align: center;
  padding-top: 32px;
  border-top: 2px solid rgba(255, 255, 255, 0.1);
}

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

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, var(--dark) 0%, #2a2a2a 100%);
  padding: 24px;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.3);
  z-index: 950;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-banner-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-banner p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  margin: 0;
  flex: 1 1 400px;
}

.cookie-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.cookie-buttons button {
  padding: 12px 24px;
  border-radius: 24px;
  border: none;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-accept-all {
  background: var(--gradient-1);
  color: var(--dark);
}

.btn-accept-all:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 200, 87, 0.4);
}

.btn-reject-all {
  background: transparent;
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-reject-all:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
}

.btn-cookie-settings {
  background: transparent;
  color: var(--electric-blue);
  border: 2px solid var(--electric-blue);
}

.btn-cookie-settings:hover {
  background: var(--electric-blue);
  color: #ffffff;
}

/* COOKIE MODAL */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 960;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  padding: 20px;
}

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

.cookie-modal-content {
  background: #ffffff;
  border-radius: 24px;
  padding: 40px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

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

.cookie-modal h2 {
  color: var(--primary);
  margin-bottom: 24px;
  font-size: 32px;
}

.cookie-category {
  margin-bottom: 24px;
  padding: 20px;
  background: var(--light);
  border-radius: 12px;
  border-left: 4px solid var(--electric-blue);
}

.cookie-category h3 {
  color: var(--electric-blue);
  font-size: 20px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cookie-toggle {
  width: 60px;
  height: 30px;
  background: #ccc;
  border-radius: 15px;
  position: relative;
  cursor: pointer;
  transition: background 0.3s ease;
}

.cookie-toggle.active {
  background: var(--lime);
}

.cookie-toggle::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 24px;
  height: 24px;
  background: #ffffff;
  border-radius: 50%;
  transition: left 0.3s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.cookie-toggle.active::after {
  left: 33px;
}

.cookie-toggle.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.cookie-modal-buttons {
  display: flex;
  gap: 16px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.cookie-modal-buttons button {
  flex: 1 1 150px;
  padding: 16px 24px;
  border-radius: 24px;
  border: none;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
}

.btn-save-preferences {
  background: var(--gradient-1);
  color: var(--dark);
}

.btn-save-preferences:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 200, 87, 0.4);
}

/* RESPONSIVE DESIGN - MOBILE FIRST */
@media (max-width: 768px) {
  /* Show mobile menu button */
  .mobile-menu-toggle {
    display: block;
  }
  
  /* Hide desktop navigation */
  .main-nav {
    display: none;
  }
  
  /* Typography adjustments */
  h1 {
    font-size: 36px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  h3 {
    font-size: 22px;
  }
  
  .hero h1 {
    font-size: 42px;
  }
  
  .hero-subtitle {
    font-size: 18px;
  }
  
  .page-hero h1 {
    font-size: 36px;
  }
  
  /* Button adjustments */
  .btn-primary,
  .btn-secondary {
    padding: 14px 28px;
    font-size: 16px;
  }
  
  /* Section padding */
  section {
    padding: 40px 16px;
    margin-bottom: 60px;
  }
  
  .hero {
    padding: 80px 16px 60px;
  }
  
  .page-hero {
    padding: 80px 16px 60px;
  }
  
  /* Grid adjustments - force single column on mobile */
  .value-grid,
  .services-grid,
  .destinations-grid,
  .testimonials-grid,
  .packages-grid,
  .types-grid,
  .properties-grid,
  .categories-grid,
  .tips-grid,
  .seasons-grid,
  .team-grid,
  .stats-grid,
  .contact-grid,
  .steps-grid {
    flex-direction: column;
    gap: 20px;
  }
  
  .value-card,
  .service-card,
  .destination-card,
  .testimonial-card,
  .package-card,
  .type-card,
  .property-card,
  .category-card,
  .tip-card,
  .season-card,
  .team-member,
  .stat-card,
  .contact-card,
  .step-card {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  /* Footer adjustments */
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }
  
  .footer-section {
    flex: 1 1 100%;
  }
  
  /* Cookie banner mobile */
  .cookie-banner-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-buttons {
    justify-content: center;
  }
  
  .cookie-modal-content {
    padding: 24px;
  }
  
  .cookie-modal-buttons {
    flex-direction: column;
  }
  
  .cookie-modal-buttons button {
    flex: 1 1 100%;
  }
  
  /* Legal content mobile */
  .content-section {
    padding: 20px;
  }
  
  /* Service detail mobile */
  .service-detail {
    padding: 32px 24px;
  }
  
  .service-detail:hover {
    transform: none;
  }
}

@media (max-width: 480px) {
  /* Extra small screens */
  .container {
    padding: 0 16px;
  }
  
  h1 {
    font-size: 28px;
  }
  
  h2 {
    font-size: 24px;
  }
  
  .hero h1 {
    font-size: 32px;
  }
  
  .btn-primary,
  .btn-secondary {
    padding: 12px 24px;
    font-size: 14px;
    width: 100%;
  }
  
  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .mobile-menu {
    width: 100%;
    right: -100%;
  }
  
  .package-price {
    font-size: 36px;
  }
  
  .stat-number {
    font-size: 42px;
  }
}

/* TABLET LANDSCAPE */
@media (min-width: 769px) and (max-width: 1024px) {
  /* Tablet optimizations */
  .value-card,
  .service-card,
  .destination-card,
  .package-card,
  .type-card,
  .property-card {
    flex: 1 1 calc(50% - 32px);
  }
  
  .stat-card,
  .step-card {
    flex: 1 1 calc(50% - 32px);
  }
}

/* PRINT STYLES */
@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-banner,
  .cookie-modal,
  .cta-banner,
  .cta-section {
    display: none !important;
  }
  
  body {
    background: #ffffff;
  }
  
  * {
    box-shadow: none !important;
  }
}

/* ACCESSIBILITY IMPROVEMENTS */
*:focus {
  outline: 3px solid var(--secondary);
  outline-offset: 2px;
}

button:focus,
a:focus {
  outline: 3px solid var(--secondary);
  outline-offset: 3px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  :root {
    --primary: #FF6B35;
    --secondary: #FFC857;
    --dark: #000000;
  }
  
  body {
    color: #000000;
  }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Dark mode support (optional future enhancement) */
@media (prefers-color-scheme: dark) {
  /* Dark mode styles could be added here */
}

/* UTILITY CLASSES */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.mt-1 { margin-top: 8px; }
.mb-1 { margin-bottom: 8px; }
.mt-2 { margin-top: 16px; }
.mb-2 { margin-bottom: 16px; }
.mt-3 { margin-top: 24px; }
.mb-3 { margin-bottom: 24px; }
.mt-4 { margin-top: 32px; }
.mb-4 { margin-bottom: 32px; }
.values-grid {
    display: flex;
    gap: 20px;
}
/* END OF STYLES */