/* ===================================
   FESTKLANG AUSTRIA - SOFT PASTEL 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', Roboto, sans-serif;
  line-height: 1.7;
  color: #4a5568;
  background: linear-gradient(135deg, #fef5f8 0%, #fef9f5 50%, #f5f8fe 100%);
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

ul, ol {
  list-style-position: inside;
}

strong {
  font-weight: 700;
  color: #2d3748;
}

/* ===================================
   TYPOGRAPHY - SOFT PASTEL STYLE
   =================================== */

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  line-height: 1.3;
  color: #d89cb0;
  margin-bottom: 20px;
}

h1 {
  font-size: 42px;
  color: #e8a5b8;
  text-shadow: 0 2px 4px rgba(232, 165, 184, 0.1);
}

h2 {
  font-size: 32px;
  color: #d89cb0;
}

h3 {
  font-size: 24px;
  color: #c5a3bd;
}

h4 {
  font-size: 20px;
  color: #b4a5c7;
}

p {
  margin-bottom: 16px;
  color: #6b7280;
}

.subtitle {
  font-size: 18px;
  color: #9ca3af;
  font-weight: 300;
}

/* ===================================
   LAYOUT CONTAINERS
   =================================== */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* ===================================
   BUTTONS - SOFT PASTEL STYLE
   =================================== */

.btn-primary,
.btn-secondary,
.btn-link {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  text-align: center;
  transition: all 0.4s ease;
  border: 2px solid transparent;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(232, 165, 184, 0.2);
}

.btn-primary {
  background: linear-gradient(135deg, #f5c4d6 0%, #e8a5b8 100%);
  color: #ffffff;
  border-color: #f5c4d6;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #f0b4ca 0%, #e095a8 100%);
  box-shadow: 0 6px 20px rgba(232, 165, 184, 0.35);
  transform: translateY(-2px);
}

.btn-secondary {
  background: linear-gradient(135deg, #d4bce4 0%, #c5a3bd 100%);
  color: #ffffff;
  border-color: #d4bce4;
}

.btn-secondary:hover {
  background: linear-gradient(135deg, #caafe0 0%, #bb93b3 100%);
  box-shadow: 0 6px 20px rgba(197, 163, 189, 0.35);
  transform: translateY(-2px);
}

.btn-link {
  background: transparent;
  color: #e8a5b8;
  border-color: #e8a5b8;
  padding: 10px 24px;
  box-shadow: none;
}

.btn-link:hover {
  background: linear-gradient(135deg, #fef5f8 0%, #fef0f5 100%);
  box-shadow: 0 4px 12px rgba(232, 165, 184, 0.2);
}

/* ===================================
   HEADER & NAVIGATION
   =================================== */

header {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(254, 249, 252, 0.95) 100%);
  backdrop-filter: blur(10px);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(232, 165, 184, 0.1);
  box-shadow: 0 4px 20px rgba(232, 165, 184, 0.08);
}

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

.logo img {
  height: 50px;
  width: auto;
  transition: transform 0.3s ease;
}

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

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

.main-nav a {
  color: #6b7280;
  font-weight: 500;
  font-size: 15px;
  padding: 8px 4px;
  position: relative;
  transition: all 0.3s ease;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #f5c4d6 0%, #d4bce4 100%);
  transition: width 0.3s ease;
}

.main-nav a:hover {
  color: #e8a5b8;
}

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

/* ===================================
   MOBILE MENU
   =================================== */

.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  background: linear-gradient(135deg, #f5c4d6 0%, #e8a5b8 100%);
  color: white;
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(232, 165, 184, 0.3);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(232, 165, 184, 0.4);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: linear-gradient(180deg, #fef5f8 0%, #fef9f5 100%);
  z-index: 1999;
  padding: 80px 30px 30px;
  box-shadow: -4px 0 20px rgba(232, 165, 184, 0.2);
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, #d4bce4 0%, #c5a3bd 100%);
  color: white;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(197, 163, 189, 0.3);
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  transform: rotate(90deg) scale(1.1);
}

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

.mobile-nav a {
  color: #6b7280;
  font-size: 18px;
  font-weight: 500;
  padding: 12px 16px;
  border-radius: 12px;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.5);
}

.mobile-nav a:hover {
  background: linear-gradient(135deg, #fef5f8 0%, #fef0f5 100%);
  color: #e8a5b8;
  transform: translateX(8px);
  box-shadow: 0 4px 12px rgba(232, 165, 184, 0.2);
}

/* ===================================
   HERO SECTION - SOFT PASTEL
   =================================== */

.hero {
  background: linear-gradient(135deg, #fef5f8 0%, #fef9f5 50%, #f5f8fe 100%);
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(245, 196, 214, 0.3) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -50%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212, 188, 228, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

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

.hero h1 {
  font-size: 48px;
  margin-bottom: 24px;
  color: #e8a5b8;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 20px;
  color: #9ca3af;
  margin-bottom: 32px;
  font-weight: 300;
}

.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.trust-badge {
  font-size: 14px;
  color: #b4a5c7;
  font-style: italic;
  margin-top: 24px;
}

/* ===================================
   PAGE HERO (INTERNAL PAGES)
   =================================== */

.page-hero {
  background: linear-gradient(135deg, #fef5f8 0%, #f5f8fe 100%);
  padding: 60px 20px;
  text-align: center;
  border-bottom: 1px solid rgba(232, 165, 184, 0.1);
}

.page-hero h1 {
  font-size: 42px;
  margin-bottom: 16px;
}

.page-hero .subtitle {
  font-size: 18px;
  color: #9ca3af;
  max-width: 700px;
  margin: 0 auto;
}

/* ===================================
   SECTIONS & CARDS - FLEXBOX LAYOUTS
   =================================== */

.introduction,
.featured-festivals,
.services-preview,
.why-choose-us,
.testimonials,
.cta-booking,
.festivals-overview,
.packages-overview,
.company-story,
.mission-vision,
.guide-section,
.contact-options,
.planning-guide {
  padding: 60px 20px;
}

.section-subtitle {
  text-align: center;
  font-size: 18px;
  color: #9ca3af;
  margin-bottom: 40px;
  font-weight: 300;
}

.intro-text {
  text-align: center;
  font-size: 18px;
  max-width: 800px;
  margin: 0 auto 40px;
  color: #6b7280;
}

/* ===================================
   STATS GRID - FLEXBOX
   =================================== */

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

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 24px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.8) 0%, rgba(254, 249, 252, 0.8) 100%);
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(232, 165, 184, 0.15);
  min-width: 150px;
  transition: all 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(232, 165, 184, 0.25);
}

.stat-item strong {
  font-size: 36px;
  color: #e8a5b8;
  font-family: 'Playfair Display', serif;
  display: block;
  margin-bottom: 8px;
}

.stat-item span {
  font-size: 14px;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ===================================
   FESTIVAL & SERVICE CARDS - FLEXBOX
   =================================== */

.festival-grid,
.services-grid,
.packages-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-bottom: 32px;
}

.festival-card,
.service-card,
.package-card {
  flex: 1 1 calc(33.333% - 16px);
  min-width: 280px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(254, 249, 252, 0.9) 100%);
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 6px 25px rgba(232, 165, 184, 0.15);
  transition: all 0.4s ease;
  position: relative;
  margin-bottom: 20px;
}

.festival-card:hover,
.service-card:hover,
.package-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(232, 165, 184, 0.25);
}

.festival-card h3,
.service-card h3,
.package-card h3 {
  color: #d89cb0;
  margin-bottom: 12px;
  font-size: 22px;
}

.festival-date {
  font-size: 14px;
  color: #b4a5c7;
  font-weight: 600;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.price {
  font-size: 28px;
  font-weight: 700;
  color: #e8a5b8;
  margin: 16px 0;
  font-family: 'Playfair Display', serif;
}

/* ===================================
   FEATURES GRID - FLEXBOX
   =================================== */

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

.feature-item {
  flex: 1 1 calc(50% - 12px);
  min-width: 250px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding: 28px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.8) 0%, rgba(254, 245, 248, 0.8) 100%);
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(232, 165, 184, 0.12);
  transition: all 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(232, 165, 184, 0.2);
}

.feature-item h3 {
  color: #c5a3bd;
  margin-bottom: 8px;
  font-size: 20px;
}

.feature-item p {
  color: #6b7280;
  margin: 0;
}

/* ===================================
   TESTIMONIALS - FLEXBOX
   =================================== */

.testimonials {
  background: linear-gradient(135deg, #fef9f5 0%, #f5f8fe 100%);
  padding: 60px 20px;
}

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

.testimonial-card {
  flex: 1 1 calc(50% - 12px);
  min-width: 300px;
  max-width: 500px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  padding: 32px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 24px;
  box-shadow: 0 6px 25px rgba(197, 163, 189, 0.15);
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 35px rgba(197, 163, 189, 0.25);
}

.testimonial-card p {
  color: #4a5568;
  font-style: italic;
  line-height: 1.8;
  margin: 0;
}

.testimonial-author {
  color: #2d3748 !important;
  font-style: normal !important;
  font-weight: 600;
  margin-top: 8px;
}

.testimonial-author strong {
  color: #d89cb0;
}

.rating {
  color: #f5c4d6;
  font-size: 18px;
  margin-top: 8px;
}

/* ===================================
   CTA SECTIONS
   =================================== */

.cta-booking,
.cta-section {
  background: linear-gradient(135deg, #fef5f8 0%, #f5f8fe 100%);
  padding: 60px 20px;
  text-align: center;
  border-radius: 32px;
  margin: 60px 20px;
}

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

/* ===================================
   PACKAGE DETAIL SECTIONS
   =================================== */

.package-detail,
.festival-detail {
  padding: 60px 20px;
  margin-bottom: 40px;
}

.package-price,
.package-duration {
  font-size: 18px;
  color: #b4a5c7;
  margin-bottom: 12px;
}

.package-detail ul,
.festival-detail ul {
  margin: 24px 0;
  padding-left: 24px;
}

.package-detail li,
.festival-detail li {
  margin-bottom: 12px;
  color: #6b7280;
  line-height: 1.6;
}

/* ===================================
   TIMELINE - FLEXBOX
   =================================== */

.timeline {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 32px;
}

.timeline-item {
  flex: 1 1 calc(50% - 10px);
  min-width: 200px;
  padding: 20px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(254, 245, 248, 0.9) 100%);
  border-radius: 16px;
  border-left: 4px solid #f5c4d6;
  box-shadow: 0 4px 15px rgba(232, 165, 184, 0.1);
  transition: all 0.3s ease;
}

.timeline-item:hover {
  transform: translateX(8px);
  box-shadow: 0 6px 20px rgba(232, 165, 184, 0.2);
}

.timeline-item strong {
  display: block;
  font-size: 20px;
  color: #e8a5b8;
  margin-bottom: 8px;
  font-family: 'Playfair Display', serif;
}

/* ===================================
   VALUES & EXPERTISE - FLEXBOX
   =================================== */

.values-grid,
.expertise-grid,
.reasons-grid,
.inclusions-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 32px;
}

.value-item,
.expertise-item,
.reason-card,
.inclusion-item {
  flex: 1 1 calc(50% - 12px);
  min-width: 240px;
  padding: 24px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.85) 0%, rgba(254, 249, 252, 0.85) 100%);
  border-radius: 20px;
  box-shadow: 0 4px 18px rgba(197, 163, 189, 0.12);
  transition: all 0.3s ease;
}

.value-item:hover,
.expertise-item:hover,
.reason-card:hover,
.inclusion-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 28px rgba(197, 163, 189, 0.2);
}

.value-item h3,
.reason-card h3,
.inclusion-item h3 {
  color: #c5a3bd;
  margin-bottom: 12px;
  font-size: 20px;
}

.value-item p,
.expertise-item p,
.reason-card p,
.inclusion-item p {
  color: #6b7280;
  margin: 0;
}

/* ===================================
   TIPS & STEPS - FLEXBOX
   =================================== */

.tips-grid,
.steps-grid,
.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 32px;
}

.tip-item,
.step-item,
.contact-card {
  flex: 1 1 calc(50% - 12px);
  min-width: 240px;
  padding: 24px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(254, 245, 248, 0.9) 100%);
  border-radius: 18px;
  box-shadow: 0 4px 16px rgba(232, 165, 184, 0.12);
  transition: all 0.3s ease;
}

.tip-item:hover,
.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 26px rgba(232, 165, 184, 0.2);
}

.step-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.step-item strong {
  font-size: 32px;
  color: #f5c4d6;
  font-family: 'Playfair Display', serif;
  flex-shrink: 0;
}

.tip-item h3,
.contact-card h3 {
  color: #d89cb0;
  margin-bottom: 12px;
  font-size: 18px;
}

/* ===================================
   FAQ SECTION
   =================================== */

.faq-section {
  padding: 60px 20px;
  background: linear-gradient(135deg, #fef9f5 0%, #f5f8fe 100%);
}

.faq-item {
  background: rgba(255, 255, 255, 0.9);
  padding: 24px;
  margin-bottom: 20px;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(197, 163, 189, 0.1);
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 6px 22px rgba(197, 163, 189, 0.18);
}

.faq-item h3 {
  color: #c5a3bd;
  margin-bottom: 12px;
  font-size: 18px;
}

.faq-item p {
  color: #6b7280;
  margin: 0;
}

/* ===================================
   LEGAL PAGES
   =================================== */

.legal-page {
  padding: 60px 20px;
  max-width: 900px;
  margin: 0 auto;
}

.legal-page h1 {
  color: #e8a5b8;
  margin-bottom: 32px;
}

.legal-page h2 {
  color: #d89cb0;
  margin-top: 40px;
  margin-bottom: 16px;
  font-size: 28px;
}

.legal-page h3 {
  color: #c5a3bd;
  margin-top: 24px;
  margin-bottom: 12px;
  font-size: 20px;
}

.legal-page p,
.legal-page ul,
.legal-page ol {
  color: #6b7280;
  margin-bottom: 16px;
  line-height: 1.8;
}

.legal-page ul,
.legal-page ol {
  padding-left: 32px;
}

.legal-page li {
  margin-bottom: 8px;
}

/* ===================================
   THANK YOU PAGE
   =================================== */

.thank-you-hero {
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(135deg, #fef5f8 0%, #f5f8fe 100%);
}

.success-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  background: linear-gradient(135deg, #b8e6b8 0%, #a8d5a8 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  font-weight: bold;
  box-shadow: 0 6px 25px rgba(184, 230, 184, 0.3);
}

.next-steps,
.while-waiting {
  padding: 60px 20px;
}

.links-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 32px;
}

.link-card {
  flex: 1 1 calc(50% - 10px);
  min-width: 240px;
  padding: 24px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(254, 245, 248, 0.9) 100%);
  border-radius: 18px;
  text-align: center;
  color: #d89cb0;
  font-weight: 600;
  box-shadow: 0 4px 16px rgba(232, 165, 184, 0.12);
  transition: all 0.3s ease;
}

.link-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 26px rgba(232, 165, 184, 0.22);
  color: #e8a5b8;
}

/* ===================================
   FORM PLACEHOLDER
   =================================== */

.form-placeholder {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(254, 245, 248, 0.9) 100%);
  padding: 40px;
  border-radius: 24px;
  box-shadow: 0 6px 25px rgba(232, 165, 184, 0.15);
  margin-top: 32px;
}

.form-placeholder ul {
  padding-left: 24px;
  margin: 24px 0;
}

.form-placeholder li {
  margin-bottom: 12px;
  color: #6b7280;
}

.form-note {
  font-style: italic;
  color: #9ca3af;
  margin-top: 24px;
}

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

footer {
  background: linear-gradient(135deg, #fef5f8 0%, #fef9f5 100%);
  padding: 60px 20px 30px;
  margin-top: 80px;
  border-top: 1px solid rgba(232, 165, 184, 0.1);
}

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

.footer-brand,
.footer-nav,
.footer-contact {
  flex: 1 1 250px;
}

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

.footer-brand p {
  color: #9ca3af;
  font-size: 14px;
}

footer h4 {
  color: #d89cb0;
  font-size: 18px;
  margin-bottom: 16px;
  font-family: 'Playfair Display', serif;
}

.footer-nav a,
.footer-contact p {
  display: block;
  color: #6b7280;
  margin-bottom: 10px;
  font-size: 14px;
  transition: all 0.3s ease;
}

.footer-nav a:hover {
  color: #e8a5b8;
  transform: translateX(4px);
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  padding: 24px 0;
  border-top: 1px solid rgba(232, 165, 184, 0.1);
  border-bottom: 1px solid rgba(232, 165, 184, 0.1);
  margin-bottom: 24px;
}

.footer-legal a {
  color: #9ca3af;
  font-size: 13px;
  transition: all 0.3s ease;
}

.footer-legal a:hover {
  color: #e8a5b8;
}

.copyright {
  text-align: center;
  color: #9ca3af;
  font-size: 13px;
}

/* ===================================
   COOKIE CONSENT BANNER
   =================================== */

.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(254, 245, 248, 0.98) 100%);
  backdrop-filter: blur(10px);
  padding: 24px;
  box-shadow: 0 -4px 20px rgba(232, 165, 184, 0.2);
  z-index: 1500;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-consent.active {
  transform: translateY(0);
}

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

.cookie-text {
  flex: 1 1 400px;
  color: #6b7280;
  font-size: 14px;
}

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

.cookie-btn {
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.cookie-accept {
  background: linear-gradient(135deg, #f5c4d6 0%, #e8a5b8 100%);
  color: white;
  border: none;
}

.cookie-accept:hover {
  background: linear-gradient(135deg, #f0b4ca 0%, #e095a8 100%);
  box-shadow: 0 4px 15px rgba(232, 165, 184, 0.3);
}

.cookie-reject {
  background: transparent;
  color: #9ca3af;
  border-color: #d1d5db;
}

.cookie-reject:hover {
  background: rgba(243, 244, 246, 0.8);
  color: #6b7280;
}

.cookie-settings {
  background: linear-gradient(135deg, #d4bce4 0%, #c5a3bd 100%);
  color: white;
  border: none;
}

.cookie-settings:hover {
  background: linear-gradient(135deg, #caafe0 0%, #bb93b3 100%);
  box-shadow: 0 4px 15px rgba(197, 163, 189, 0.3);
}

/* Cookie Settings Modal */
.cookie-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.cookie-modal.active {
  display: flex;
}

.cookie-modal-content {
  background: linear-gradient(135deg, #ffffff 0%, #fef9f5 100%);
  border-radius: 24px;
  padding: 40px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 10px 40px rgba(232, 165, 184, 0.3);
}

.cookie-modal h2 {
  color: #e8a5b8;
  margin-bottom: 24px;
}

.cookie-category {
  margin-bottom: 24px;
  padding: 20px;
  background: rgba(254, 245, 248, 0.5);
  border-radius: 12px;
}

.cookie-category h3 {
  color: #d89cb0;
  margin-bottom: 8px;
  font-size: 18px;
}

.cookie-category p {
  color: #6b7280;
  font-size: 14px;
  margin-bottom: 12px;
}

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

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

.cookie-toggle input[type="checkbox"]:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.cookie-modal-buttons {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 32px;
  flex-wrap: wrap;
}

/* ===================================
   RESPONSIVE DESIGN - MOBILE FIRST
   =================================== */

@media (max-width: 768px) {
  /* Typography */
  h1 { font-size: 32px; }
  h2 { font-size: 26px; }
  h3 { font-size: 20px; }
  
  .hero h1 { font-size: 36px; }
  .page-hero h1 { font-size: 32px; }
  
  /* Hide desktop nav, show mobile menu button */
  .main-nav { display: none; }
  .mobile-menu-toggle { display: block; }
  .mobile-menu { display: block; }
  
  /* Hero */
  .hero { padding: 60px 20px; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn-primary,
  .hero-cta .btn-secondary { width: 100%; }
  
  /* Cards - Stack on mobile */
  .festival-card,
  .service-card,
  .package-card,
  .feature-item,
  .value-item,
  .expertise-item,
  .reason-card,
  .inclusion-item,
  .tip-item,
  .contact-card,
  .testimonial-card,
  .link-card {
    flex: 1 1 100%;
    min-width: 100%;
  }
  
  /* Timeline */
  .timeline-item {
    flex: 1 1 100%;
  }
  
  /* Footer */
  .footer-content {
    flex-direction: column;
  }
  
  /* Cookie banner */
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-buttons {
    width: 100%;
    justify-content: center;
  }
  
  .cookie-btn {
    flex: 1;
  }
  
  /* Sections */
  section { padding: 40px 16px; }
}

@media (min-width: 769px) and (max-width: 1024px) {
  /* Cards - 2 columns on tablet */
  .festival-card,
  .service-card,
  .package-card {
    flex: 1 1 calc(50% - 12px);
  }
}

@media (min-width: 1025px) {
  /* Desktop enhancements */
  .hero h1 { font-size: 56px; }
  
  .container {
    padding: 0 40px;
  }
}

/* ===================================
   ANIMATIONS & TRANSITIONS
   =================================== */

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

@keyframes slideInRight {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(0);
  }
}

.hero-content,
.page-hero {
  animation: fadeInUp 0.8s ease-out;
}

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

/* Focus styles for accessibility */
a:focus,
button:focus {
  outline: 2px solid #f5c4d6;
  outline-offset: 2px;
}

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