/* ============================================
   DRACHENSEE KAJAK - VIBRANT ENERGETIC DESIGN
   ============================================ */

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

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

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

/* ============================================
   VIBRANT ENERGETIC COLOR SCHEME
   ============================================ */
:root {
  --primary: #FF6B35;
  --primary-dark: #E55A2B;
  --secondary: #00D9FF;
  --secondary-dark: #00B8D4;
  --accent: #FFD23F;
  --accent-dark: #FFC107;
  --electric-pink: #FF006E;
  --electric-purple: #8338EC;
  --vibrant-green: #06FFA5;
  --text-dark: #1a1a1a;
  --text-light: #ffffff;
  --bg-light: #FFFBF7;
  --bg-overlay: rgba(255, 107, 53, 0.95);
  --shadow: 0 8px 30px rgba(255, 107, 53, 0.3);
  --shadow-lg: 0 15px 50px rgba(255, 107, 53, 0.4);
}

/* ============================================
   TYPOGRAPHY - BOLD & DYNAMIC
   ============================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Cinzel', serif;
  font-weight: 900;
  line-height: 1.2;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: 2px;
}

h1 {
  font-size: 56px;
  margin-bottom: 24px;
  text-shadow: 3px 3px 0 var(--secondary);
}

h2 {
  font-size: 42px;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent));
  border-radius: 5px;
}

h3 {
  font-size: 28px;
  margin-bottom: 16px;
  color: var(--primary);
}

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

p {
  margin-bottom: 16px;
  font-size: 18px;
  font-weight: 400;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 600;
}

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

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

li {
  margin-bottom: 10px;
  font-size: 18px;
}

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

.content-wrapper {
  padding: 40px 0;
}

.section {
  margin-bottom: 60px;
  padding: 60px 20px;
  position: relative;
}

/* ============================================
   HEADER - ELECTRIC & BOLD
   ============================================ */
header {
  background: linear-gradient(135deg, var(--primary) 0%, var(--electric-purple) 100%);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  animation: slideDown 0.5s ease;
}

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

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

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

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

.main-nav {
  display: flex;
  gap: 10px;
  align-items: center;
}

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

.main-nav a::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 3px;
  background: var(--accent);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.main-nav a:hover::before {
  width: 100%;
}

.main-nav a:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
}

/* ============================================
   MOBILE MENU - DYNAMIC SLIDE-IN
   ============================================ */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  background: var(--primary);
  color: var(--text-light);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background: var(--secondary);
  transform: scale(1.1) rotate(90deg);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 350px;
  height: 100vh;
  background: linear-gradient(180deg, var(--electric-purple), var(--primary));
  z-index: 3000;
  padding: 80px 30px 30px;
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  box-shadow: -5px 0 30px rgba(0, 0, 0, 0.3);
  overflow-y: auto;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--text-light);
  color: var(--primary);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  font-weight: bold;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  background: var(--accent);
  transform: rotate(90deg);
}

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

.mobile-nav a {
  color: var(--text-light);
  font-size: 20px;
  font-weight: 700;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  border-left: 5px solid var(--accent);
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.mobile-nav a:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateX(10px);
  border-left-color: var(--secondary);
}

/* ============================================
   HERO SECTION - HIGH ENERGY
   ============================================ */
.hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--electric-purple) 50%, var(--secondary) 100%);
  padding: 100px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin-bottom: 60px;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 10px,
    rgba(255, 255, 255, 0.05) 10px,
    rgba(255, 255, 255, 0.05) 20px
  );
  animation: bgMove 20s linear infinite;
}

@keyframes bgMove {
  from {
    transform: translate(0, 0);
  }
  to {
    transform: translate(50px, 50px);
  }
}

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

.hero h1 {
  color: var(--text-light);
  font-size: 64px;
  margin-bottom: 24px;
  text-shadow: 4px 4px 0 rgba(0, 0, 0, 0.3);
  animation: popIn 0.6s ease;
}

@keyframes popIn {
  from {
    opacity: 0;
    transform: scale(0.5);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.hero-subtitle {
  color: var(--text-light);
  font-size: 24px;
  margin-bottom: 32px;
  font-weight: 400;
  line-height: 1.6;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

/* ============================================
   BUTTONS - VIBRANT & CLICKABLE
   ============================================ */
.btn {
  display: inline-block;
  padding: 16px 40px;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 50px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 3px solid transparent;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transition: all 0.5s ease;
  transform: translate(-50%, -50%);
  z-index: -1;
}

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

.btn-primary {
  background: var(--accent);
  color: var(--text-dark);
  box-shadow: var(--shadow);
}

.btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(255, 210, 63, 0.5);
}

.btn-secondary {
  background: transparent;
  color: var(--text-light);
  border-color: var(--text-light);
}

.btn-secondary:hover {
  background: var(--text-light);
  color: var(--primary);
  transform: translateY(-5px);
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 32px;
}

/* ============================================
   SECTIONS - DYNAMIC LAYOUTS
   ============================================ */
.intro, .tours-overview, .our-story, .mission, .lakes-overview {
  background: var(--bg-light);
  padding: 60px 20px;
  margin-bottom: 60px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.intro h2, .tours-overview h2 {
  text-align: center;
  margin-bottom: 50px;
}

/* ============================================
   HIGHLIGHTS - FLEXBOX GRID
   ============================================ */
.highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
  margin-top: 40px;
}

.highlight-item {
  flex: 1 1 calc(33.333% - 20px);
  min-width: 250px;
  background: var(--text-light);
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  border: 3px solid transparent;
}

.highlight-item:hover {
  transform: translateY(-10px);
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
}

.highlight-item img {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  filter: drop-shadow(3px 3px 6px rgba(255, 107, 53, 0.4));
}

.highlight-item h3 {
  color: var(--primary);
  margin-bottom: 12px;
}

/* ============================================
   TOURS GRID - DYNAMIC CARDS
   ============================================ */
.tours-grid, .tours-detailed, .pricing-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 40px;
}

.tour-card, .tour-detail-card, .price-card {
  flex: 1 1 calc(33.333% - 20px);
  min-width: 280px;
  background: var(--text-light);
  padding: 35px;
  border-radius: 20px;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  border: 4px solid transparent;
  position: relative;
  margin-bottom: 20px;
}

.tour-card::before, .price-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  border-radius: 20px 20px 0 0;
}

.tour-card:hover, .price-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: var(--shadow-lg);
  border-color: var(--secondary);
}

.tour-card h3, .price-card h3 {
  margin-bottom: 16px;
  color: var(--primary);
}

.tour-card .price, .price-card .price {
  font-size: 36px;
  font-weight: 900;
  color: var(--electric-pink);
  margin: 20px 0;
  text-shadow: 2px 2px 0 var(--accent);
}

.tour-card ul, .tour-detail-card ul {
  margin: 20px 0;
  padding-left: 20px;
}

.tour-card li, .tour-detail-card li {
  margin-bottom: 8px;
  list-style-type: none;
  position: relative;
  padding-left: 25px;
}

.tour-card li::before, .tour-detail-card li::before {
  content: '⚡';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 16px;
}

.price-card.featured {
  border: 4px solid var(--primary);
  transform: scale(1.05);
  background: linear-gradient(135deg, var(--bg-light), var(--text-light));
}

/* ============================================
   TESTIMONIALS - HIGH CONTRAST
   ============================================ */
.testimonials {
  background: linear-gradient(135deg, var(--electric-purple) 0%, var(--primary) 100%);
  padding: 60px 20px;
  margin-bottom: 60px;
}

.testimonials h2 {
  color: var(--text-light);
  text-align: center;
  margin-bottom: 50px;
}

.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.testimonial-card {
  flex: 1 1 calc(50% - 15px);
  min-width: 300px;
  background: var(--text-light);
  padding: 35px;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  border-left: 8px solid var(--accent);
  margin-bottom: 20px;
}

.testimonial-card p {
  font-size: 18px;
  line-height: 1.8;
  color: var(--text-dark);
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-card .author {
  font-weight: 700;
  color: var(--primary);
  font-style: normal;
  font-size: 16px;
}

/* ============================================
   TRUST INDICATORS - ENERGETIC GRID
   ============================================ */
.trust-indicators {
  background: var(--accent);
  padding: 60px 20px;
  margin-bottom: 60px;
}

.trust-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
}

.trust-item {
  flex: 1 1 calc(25% - 23px);
  min-width: 200px;
  text-align: center;
  padding: 30px 20px;
  background: var(--text-light);
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.trust-item:hover {
  transform: translateY(-10px) rotate(2deg);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.trust-item h3 {
  font-size: 32px;
  color: var(--electric-pink);
  margin-bottom: 8px;
}

.trust-item p {
  font-size: 16px;
  color: var(--text-dark);
}

/* ============================================
   EXPECTATIONS & VALUES - FLEXBOX
   ============================================ */
.expectations-grid, .values-grid, .expertise-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 40px;
}

.expectation-item, .value-item, .expertise-item {
  flex: 1 1 calc(33.333% - 20px);
  min-width: 250px;
  background: var(--text-light);
  padding: 30px;
  border-radius: 15px;
  box-shadow: var(--shadow);
  border-top: 5px solid var(--primary);
  transition: all 0.3s ease;
}

.expectation-item:hover, .value-item:hover, .expertise-item:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-top-color: var(--secondary);
}

.expertise-item img {
  width: 60px;
  height: 60px;
  margin-bottom: 16px;
}

/* ============================================
   LAKE PROFILES & CONTENT
   ============================================ */
.lake-profiles {
  margin-top: 40px;
}

.lake-profile {
  background: var(--text-light);
  padding: 40px;
  margin-bottom: 30px;
  border-radius: 15px;
  box-shadow: var(--shadow);
  border-left: 8px solid var(--secondary);
  transition: all 0.3s ease;
}

.lake-profile:hover {
  transform: translateX(10px);
  box-shadow: var(--shadow-lg);
}

.lake-profile h2 {
  color: var(--primary);
  margin-bottom: 20px;
}

/* ============================================
   CTA SECTIONS - ATTENTION GRABBING
   ============================================ */
.cta-booking, .cta, .cta-content {
  background: linear-gradient(135deg, var(--primary), var(--electric-purple));
  padding: 80px 20px;
  text-align: center;
  margin-bottom: 60px;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}

.cta-content h2 {
  color: var(--text-light);
  margin-bottom: 24px;
}

.cta-content p {
  color: var(--text-light);
  font-size: 20px;
  margin-bottom: 32px;
}

/* ============================================
   CONTACT SECTIONS
   ============================================ */
.contact-info, .contact-grid {
  margin-top: 40px;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
}

.contact-method {
  flex: 1 1 calc(33.333% - 20px);
  min-width: 250px;
  background: var(--bg-light);
  padding: 35px;
  border-radius: 15px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
}

.contact-method:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.contact-method img {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
}

.contact-method h3 {
  color: var(--primary);
  margin-bottom: 16px;
}

/* ============================================
   FORM STYLES
   ============================================ */
.contact-form-section {
  background: var(--bg-light);
  padding: 60px 20px;
  margin-bottom: 60px;
}

.form-wrapper {
  max-width: 700px;
  margin: 0 auto;
}

.contact-form-placeholder {
  background: var(--text-light);
  padding: 40px;
  border-radius: 15px;
  box-shadow: var(--shadow);
}

.form-field {
  margin-bottom: 24px;
}

.form-field label {
  display: block;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
  font-size: 16px;
}

.input-placeholder, .textarea-placeholder, .select-placeholder {
  background: var(--bg-light);
  border: 3px solid var(--secondary);
  border-radius: 10px;
  padding: 14px;
  width: 100%;
  min-height: 50px;
}

.textarea-placeholder {
  min-height: 150px;
}

.select-placeholder p {
  color: #666;
  font-size: 16px;
}

.form-button button {
  width: 100%;
}

.form-note {
  font-size: 14px;
  color: #666;
  text-align: center;
  margin-top: 16px;
}

/* ============================================
   FAQ SECTIONS
   ============================================ */
.faq {
  background: var(--bg-light);
  padding: 60px 20px;
  margin-bottom: 60px;
}

.faq h2 {
  text-align: center;
  margin-bottom: 40px;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--text-light);
  padding: 30px;
  margin-bottom: 20px;
  border-radius: 12px;
  box-shadow: var(--shadow);
  border-left: 5px solid var(--primary);
  transition: all 0.3s ease;
}

.faq-item:hover {
  transform: translateX(10px);
  border-left-color: var(--secondary);
}

.faq-item h3 {
  color: var(--primary);
  margin-bottom: 12px;
}

/* ============================================
   LEGAL CONTENT
   ============================================ */
.legal-content {
  background: var(--bg-light);
  padding: 60px 20px;
}

.legal-section {
  background: var(--text-light);
  padding: 40px;
  margin-bottom: 30px;
  border-radius: 15px;
  box-shadow: var(--shadow);
}

.last-updated {
  font-style: italic;
  color: #666;
  margin-bottom: 30px;
}

.cookie-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
}

.cookie-table th, .cookie-table td {
  padding: 12px;
  text-align: left;
  border-bottom: 2px solid var(--bg-light);
}

.cookie-table th {
  background: var(--primary);
  color: var(--text-light);
  font-weight: 700;
}

/* ============================================
   THANK YOU PAGE
   ============================================ */
.thank-you-hero {
  background: linear-gradient(135deg, var(--vibrant-green), var(--secondary));
  padding: 100px 20px;
  text-align: center;
  margin-bottom: 60px;
}

.thank-you-content {
  max-width: 600px;
  margin: 0 auto;
}

.success-icon {
  width: 100px;
  height: 100px;
  background: var(--text-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
  color: var(--vibrant-green);
  margin: 0 auto 30px;
  box-shadow: var(--shadow-lg);
  animation: successPop 0.6s ease;
}

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

.thank-you-hero h1 {
  color: var(--text-light);
}

.thank-you-hero .subtitle {
  color: var(--text-light);
  font-size: 22px;
}

.steps-grid, .checklist {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 40px;
}

.step-item {
  flex: 1 1 calc(33.333% - 20px);
  min-width: 250px;
  background: var(--text-light);
  padding: 30px;
  border-radius: 15px;
  box-shadow: var(--shadow);
  text-align: center;
}

.step-number {
  width: 60px;
  height: 60px;
  background: var(--primary);
  color: var(--text-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  font-weight: 900;
  margin: 0 auto 20px;
  box-shadow: var(--shadow);
}

.checklist-item {
  flex: 1 1 calc(50% - 15px);
  min-width: 250px;
  background: var(--text-light);
  padding: 20px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 15px;
  box-shadow: var(--shadow);
}

.checklist-item img {
  width: 40px;
  height: 40px;
}

/* ============================================
   GALLERY & CATEGORY CARDS
   ============================================ */
.category-grid, .moments-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 40px;
}

.category-card, .moment-card {
  flex: 1 1 calc(50% - 15px);
  min-width: 280px;
  background: var(--text-light);
  padding: 35px;
  border-radius: 15px;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  border-top: 5px solid var(--accent);
}

.category-card:hover, .moment-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-top-color: var(--primary);
}

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

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

.footer-section {
  flex: 1 1 calc(25% - 30px);
  min-width: 200px;
}

.footer-logo {
  height: 50px;
  margin-bottom: 16px;
}

.footer-section h4 {
  color: var(--accent);
  margin-bottom: 20px;
  font-size: 20px;
}

.footer-section p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 12px;
}

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

.footer-nav a {
  color: var(--text-light);
  font-size: 16px;
  transition: all 0.3s ease;
  padding: 8px 0;
}

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

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

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

/* ============================================
   COOKIE CONSENT BANNER
   ============================================ */
.cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(135deg, var(--primary), var(--electric-purple));
  color: var(--text-light);
  padding: 24px;
  box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.3);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  animation: slideUp 0.5s ease;
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}

.cookie-consent-banner.hidden {
  display: none;
}

.cookie-consent-text {
  flex: 1 1 300px;
  font-size: 16px;
}

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

.cookie-btn {
  padding: 12px 24px;
  font-size: 16px;
  font-weight: 700;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  text-transform: uppercase;
}

.cookie-btn-accept {
  background: var(--accent);
  color: var(--text-dark);
}

.cookie-btn-accept:hover {
  background: var(--accent-dark);
  transform: scale(1.05);
}

.cookie-btn-reject {
  background: transparent;
  color: var(--text-light);
  border-color: var(--text-light);
}

.cookie-btn-reject:hover {
  background: rgba(255, 255, 255, 0.2);
}

.cookie-btn-settings {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-light);
}

.cookie-btn-settings:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* ============================================
   COOKIE MODAL
   ============================================ */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3000;
  padding: 20px;
  animation: fadeIn 0.3s ease;
}

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

.cookie-modal.hidden {
  display: none;
}

.cookie-modal-content {
  background: var(--text-light);
  padding: 40px;
  border-radius: 20px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
  animation: modalSlide 0.4s ease;
}

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

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

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

.cookie-category h3 {
  margin-bottom: 8px;
  color: var(--primary);
}

.cookie-toggle {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 12px;
}

.cookie-toggle input[type="checkbox"] {
  width: 20px;
  height: 20px;
  cursor: pointer;
}

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

/* ============================================
   RESPONSIVE DESIGN - MOBILE FIRST
   ============================================ */
@media (max-width: 768px) {
  /* Hide desktop nav, show mobile toggle */
  .main-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  /* Typography adjustments */
  h1 {
    font-size: 36px;
  }
  
  h2 {
    font-size: 32px;
  }
  
  h3 {
    font-size: 24px;
  }
  
  .hero h1 {
    font-size: 42px;
  }
  
  .hero-subtitle {
    font-size: 18px;
  }
  
  /* Section adjustments */
  .section {
    padding: 40px 16px;
  }
  
  /* Grid items full width on mobile */
  .highlight-item,
  .tour-card,
  .tour-detail-card,
  .price-card,
  .testimonial-card,
  .trust-item,
  .expectation-item,
  .value-item,
  .expertise-item,
  .contact-method,
  .step-item,
  .category-card,
  .moment-card,
  .footer-section {
    flex: 1 1 100%;
  }
  
  /* CTA buttons stack vertically */
  .cta-buttons {
    flex-direction: column;
  }
  
  .btn {
    width: 100%;
  }
  
  /* Cookie banner stacks */
  .cookie-consent-banner {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-consent-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-btn {
    width: 100%;
  }
  
  /* Modal adjustments */
  .cookie-modal-content {
    padding: 24px;
  }
  
  /* Footer stacks */
  .footer-content {
    flex-direction: column;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  /* Tablet adjustments */
  .highlight-item,
  .tour-card,
  .price-card,
  .expectation-item,
  .value-item,
  .expertise-item {
    flex: 1 1 calc(50% - 15px);
  }
  
  .trust-item {
    flex: 1 1 calc(50% - 15px);
  }
}

/* ============================================
   ANIMATIONS & TRANSITIONS
   ============================================ */
@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.btn:active {
  animation: pulse 0.3s ease;
}

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

/* Focus states for accessibility */
*:focus {
  outline: 3px solid var(--secondary);
  outline-offset: 2px;
}

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

/* Print styles */
@media print {
  header,
  footer,
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-consent-banner,
  .cookie-modal {
    display: none;
  }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.text-center {
  text-align: center;
}

.margin-bottom-small {
  margin-bottom: 16px;
}

.margin-bottom-medium {
  margin-bottom: 32px;
}

.margin-bottom-large {
  margin-bottom: 60px;
}
section {
  padding: 20px 0;
}
/* END OF STYLES */