/* ===================================
   NOVA APPLY - MINIMALIST DESIGN
   Australian Cultural Experiences
   =================================== */

/* 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.6;
  color: #2c3e50;
  background-color: #ffffff;
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
  color: #1a1a1a;
}

h1 { font-size: 48px; }
h2 { font-size: 36px; }
h3 { font-size: 24px; }
h4 { font-size: 20px; }

p {
  margin-bottom: 16px;
  font-size: 16px;
  line-height: 1.8;
}

a {
  color: #C8102E;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #8B0A1F;
}

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

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

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.site-header {
  background-color: #ffffff;
  border-bottom: 1px solid #e8e8e8;
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 900;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

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

.logo img {
  height: 50px;
  width: auto;
}

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

.main-nav a {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #2c3e50;
  position: relative;
  padding: 8px 0;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #C8102E;
  transition: width 0.3s ease;
}

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

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1001;
  background-color: #C8102E;
  color: #ffffff;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 4px;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(200, 16, 46, 0.3);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background-color: #8B0A1F;
  transform: scale(1.05);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 320px;
  height: 100vh;
  background-color: #ffffff;
  z-index: 1000;
  padding: 80px 32px 32px;
  box-shadow: -4px 0 20px rgba(0,0,0,0.1);
  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: none;
  border: none;
  font-size: 32px;
  color: #2c3e50;
  cursor: pointer;
  padding: 8px;
  transition: color 0.3s ease;
}

.mobile-menu-close:hover {
  color: #C8102E;
}

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

.mobile-nav a {
  font-size: 18px;
  font-weight: 600;
  color: #2c3e50;
  padding: 12px 0;
  border-bottom: 1px solid #e8e8e8;
  transition: color 0.3s ease;
}

.mobile-nav a:hover {
  color: #C8102E;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  padding: 80px 20px;
  margin-bottom: 60px;
}

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

.hero h1 {
  font-size: 56px;
  margin-bottom: 24px;
  color: #1a1a1a;
}

.hero-subtitle {
  font-size: 20px;
  color: #5a6c7d;
  margin-bottom: 40px;
  line-height: 1.6;
}

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

.trust-badge {
  display: inline-block;
  padding: 12px 24px;
  background-color: #f8f9fa;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  color: #2c3e50;
  margin-top: 24px;
}

/* Page Hero */
.page-hero {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  padding: 60px 20px 40px;
  margin-bottom: 60px;
}

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

/* Breadcrumb */
.breadcrumb {
  font-size: 14px;
  color: #5a6c7d;
  margin-bottom: 24px;
}

.breadcrumb a {
  color: #C8102E;
}

.breadcrumb span {
  color: #2c3e50;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  text-decoration: none;
}

.btn-primary {
  background-color: #C8102E;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(200, 16, 46, 0.2);
}

.btn-primary:hover {
  background-color: #8B0A1F;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(200, 16, 46, 0.3);
  color: #ffffff;
}

.btn-secondary {
  background-color: #ffffff;
  color: #C8102E;
  border: 2px solid #C8102E;
}

.btn-secondary:hover {
  background-color: #C8102E;
  color: #ffffff;
}

.btn-link {
  background: none;
  color: #C8102E;
  padding: 12px 0;
  font-weight: 600;
}

.btn-link:hover {
  color: #8B0A1F;
}

/* Sections */
section {
  margin-bottom: 80px;
  padding: 0 20px;
}

.section-subtitle {
  text-align: center;
  font-size: 18px;
  color: #5a6c7d;
  max-width: 700px;
  margin: 0 auto 48px;
}

/* Value Proposition */
.value-proposition {
  text-align: center;
  background-color: #f8f9fa;
  padding: 60px 20px;
  margin-bottom: 80px;
}

.value-proposition h2 {
  margin-bottom: 48px;
}

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

.value-item {
  flex: 1 1 280px;
  max-width: 320px;
  text-align: center;
  padding: 32px 24px;
  background-color: #ffffff;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.value-item img {
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
}

.value-item h3 {
  margin-bottom: 12px;
  font-size: 20px;
}

.value-item p {
  color: #5a6c7d;
  margin-bottom: 0;
}

/* Experience Cards */
.experience-grid,
.event-grid,
.program-categories,
.resource-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 40px;
}

.experience-card,
.event-card,
.resource-card,
.booking-card {
  flex: 1 1 320px;
  background-color: #ffffff;
  border: 1px solid #e8e8e8;
  border-radius: 4px;
  padding: 32px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.experience-card:hover,
.event-card:hover,
.resource-card:hover,
.booking-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  border-color: #C8102E;
}

.experience-card h3,
.event-card h3,
.resource-card h3 {
  margin-bottom: 12px;
}

.experience-card p,
.event-card p,
.resource-card p {
  color: #5a6c7d;
  flex-grow: 1;
}

.experience-details {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding: 16px 0;
  border-top: 1px solid #e8e8e8;
}

.price {
  font-size: 24px;
  font-weight: 700;
  color: #C8102E;
}

.duration,
.event-date {
  font-size: 14px;
  font-weight: 600;
  color: #5a6c7d;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Stats Grid */
.stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin: 48px 0;
}

.stat-item {
  flex: 1 1 200px;
  text-align: center;
  padding: 24px;
}

.stat-number {
  font-size: 48px;
  font-weight: 700;
  color: #C8102E;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 16px;
  color: #5a6c7d;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Testimonials */
.testimonials {
  background-color: #f8f9fa;
  padding: 60px 20px;
  margin-bottom: 80px;
}

.testimonials h2 {
  text-align: center;
  margin-bottom: 48px;
}

.testimonial-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 32px;
}

.testimonial-card {
  flex: 1 1 400px;
  background-color: #ffffff;
  border-radius: 4px;
  padding: 32px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.testimonial-card p {
  font-size: 16px;
  font-style: italic;
  color: #2c3e50;
  line-height: 1.8;
  margin-bottom: 0;
}

.testimonial-author {
  font-size: 14px;
  font-weight: 600;
  color: #C8102E;
  margin-top: auto;
}

.rating {
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  color: #2c3e50;
}

/* CTA Section */
.cta-section {
  text-align: center;
  background-color: #f8f9fa;
  padding: 60px 20px;
  border-radius: 4px;
  margin-bottom: 80px;
}

.cta-section h2 {
  margin-bottom: 24px;
}

.cta-section p {
  font-size: 18px;
  color: #5a6c7d;
  margin-bottom: 32px;
}

.contact-info {
  font-size: 14px;
  color: #5a6c7d;
  margin-top: 24px;
}

/* About Preview */
.about-preview {
  text-align: center;
  padding: 60px 20px;
  background-color: #ffffff;
}

.about-preview h2 {
  margin-bottom: 24px;
}

.about-preview > p {
  font-size: 18px;
  color: #5a6c7d;
  max-width: 800px;
  margin: 0 auto 48px;
  line-height: 1.8;
}

/* Story Section */
.story-section,
.text-section {
  padding: 60px 20px;
  background-color: #ffffff;
}

.text-section {
  max-width: 800px;
  margin: 0 auto;
}

.text-section p {
  font-size: 18px;
  line-height: 1.8;
  color: #2c3e50;
  margin-bottom: 24px;
}

/* Values Section */
.values-section {
  padding: 60px 20px;
  background-color: #f8f9fa;
}

.values-section h2 {
  text-align: center;
  margin-bottom: 48px;
}

/* Recognition/Awards */
.recognition-section {
  padding: 60px 20px;
  background-color: #ffffff;
}

.awards-grid,
.benefits-grid,
.inclusions-grid,
.category-grid,
.participation-grid,
.language-grid,
.materials-grid,
.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 48px;
}

.award-item,
.benefit-item,
.inclusion-item,
.category-item,
.participation-item,
.language-item,
.material-item,
.contact-item {
  flex: 1 1 280px;
  text-align: center;
  padding: 32px 24px;
  background-color: #f8f9fa;
  border-radius: 4px;
  border: 1px solid #e8e8e8;
  transition: all 0.3s ease;
}

.award-item:hover,
.benefit-item:hover,
.category-item:hover,
.participation-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  border-color: #C8102E;
}

.benefit-item img,
.inclusion-item img,
.contact-item img {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
}

.benefit-item h3,
.category-item h3,
.participation-item h3,
.language-item h3 {
  margin-bottom: 12px;
  font-size: 20px;
}

.benefit-item p,
.category-item p,
.participation-item p,
.language-item p,
.material-item {
  color: #5a6c7d;
  margin-bottom: 0;
}

/* Format List */
.format-list {
  list-style: none;
  margin: 32px 0;
}

.format-list li {
  padding: 16px 0;
  border-bottom: 1px solid #e8e8e8;
  font-size: 16px;
  line-height: 1.6;
}

.format-list li:last-child {
  border-bottom: none;
}

.pricing-note {
  font-size: 14px;
  color: #C8102E;
  font-weight: 600;
  margin-top: 24px;
}

/* Protocol List */
.protocol-list {
  list-style: none;
  margin: 32px 0;
}

.protocol-list li {
  padding: 16px 0 16px 32px;
  border-left: 3px solid #C8102E;
  margin-bottom: 16px;
  background-color: #f8f9fa;
  padding-left: 24px;
}

/* Resource Categories */
.resource-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-bottom: 48px;
}

.category-tab {
  padding: 12px 24px;
  background-color: #f8f9fa;
  border: 1px solid #e8e8e8;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.category-tab:hover {
  background-color: #C8102E;
  color: #ffffff;
  border-color: #C8102E;
}

/* Contact Page */
.contact-options {
  padding: 60px 20px;
  background-color: #ffffff;
}

.response-time {
  text-align: center;
  font-size: 14px;
  color: #C8102E;
  font-weight: 600;
  margin-top: 32px;
}

/* Form */
.contact-form-section {
  padding: 60px 20px;
  background-color: #f8f9fa;
}

.form-wrapper {
  max-width: 700px;
  margin: 0 auto;
  background-color: #ffffff;
  padding: 40px;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.form-notice {
  background-color: #fff3cd;
  border: 1px solid #ffc107;
  border-radius: 4px;
  padding: 16px;
  margin-bottom: 32px;
}

.form-notice p {
  font-size: 14px;
  color: #856404;
  margin-bottom: 0;
}

.form-fields {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-weight: 600;
  font-size: 14px;
  color: #2c3e50;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1px solid #e8e8e8;
  border-radius: 4px;
  font-size: 16px;
  font-family: 'Lato', sans-serif;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #C8102E;
}

.form-group input:disabled,
.form-group select:disabled,
.form-group textarea:disabled {
  background-color: #f8f9fa;
  cursor: not-allowed;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.form-redirect-note {
  font-size: 12px;
  color: #5a6c7d;
  text-align: center;
  margin-top: 16px;
}

.form-redirect-note a {
  color: #C8102E;
  text-decoration: underline;
}

/* Quick Booking */
.quick-booking {
  padding: 60px 20px;
  background-color: #ffffff;
}

.booking-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 32px;
}

/* Map Section */
.map-section {
  padding: 60px 20px;
  background-color: #f8f9fa;
}

.map-placeholder {
  background-color: #e8e8e8;
  padding: 60px 32px;
  text-align: center;
  border-radius: 4px;
  margin-top: 32px;
}

.map-placeholder p {
  color: #2c3e50;
  margin-bottom: 12px;
}

/* FAQ Contact */
.faq-contact {
  padding: 60px 20px;
  background-color: #ffffff;
}

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

.faq-item {
  padding: 24px 0;
  border-bottom: 1px solid #e8e8e8;
}

.faq-item:last-child {
  border-bottom: none;
}

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

.faq-item p {
  color: #5a6c7d;
  margin-bottom: 0;
}

/* Business Inquiries */
.business-inquiries {
  padding: 60px 20px;
  background-color: #f8f9fa;
}

.business-contacts {
  max-width: 600px;
  margin: 32px auto 0;
  background-color: #ffffff;
  padding: 32px;
  border-radius: 4px;
  border: 1px solid #e8e8e8;
}

.business-contacts p {
  padding: 12px 0;
  border-bottom: 1px solid #e8e8e8;
  margin-bottom: 0;
}

.business-contacts p:last-child {
  border-bottom: none;
}

/* Acknowledgement Section */
.acknowledgement-section {
  padding: 40px 20px;
  background-color: #ffffff;
}

.acknowledgement-box {
  max-width: 800px;
  margin: 0 auto;
  padding: 32px;
  background-color: #f8f9fa;
  border-left: 4px solid #C8102E;
  border-radius: 4px;
}

.acknowledgement-box p {
  font-style: italic;
  color: #2c3e50;
  margin-bottom: 0;
  line-height: 1.8;
}

/* Legal Pages */
.legal-hero {
  background-color: #f8f9fa;
  padding: 60px 20px 40px;
  margin-bottom: 40px;
}

.last-updated {
  font-size: 14px;
  color: #5a6c7d;
  margin-top: 8px;
}

.legal-content {
  padding: 40px 20px 60px;
}

.content-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.content-wrapper h2 {
  margin-top: 40px;
  margin-bottom: 16px;
  font-size: 28px;
}

.content-wrapper p {
  margin-bottom: 20px;
  line-height: 1.8;
}

.agreement-notice {
  background-color: #f8f9fa;
  border: 2px solid #C8102E;
  border-radius: 4px;
  padding: 24px;
  margin-top: 40px;
  text-align: center;
}

.agreement-notice p {
  color: #2c3e50;
  margin-bottom: 0;
  font-size: 16px;
}

/* Thank You Page */
.thank-you-hero {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  padding: 80px 20px;
  text-align: center;
  margin-bottom: 60px;
}

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

.checkmark-icon {
  width: 80px;
  height: 80px;
  background-color: #28a745;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  margin: 0 auto 32px;
}

.confirmation-message {
  font-size: 18px;
  color: #5a6c7d;
  margin-bottom: 0;
}

.next-steps {
  padding: 60px 20px;
  background-color: #f8f9fa;
}

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

.step-item {
  flex: 1 1 280px;
  max-width: 320px;
  text-align: center;
  padding: 32px 24px;
  background-color: #ffffff;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.step-number {
  width: 50px;
  height: 50px;
  background-color: #C8102E;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  margin: 0 auto 16px;
}

.explore-more {
  padding: 60px 20px;
  background-color: #ffffff;
}

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

.explore-link {
  flex: 1 1 260px;
  padding: 20px 24px;
  background-color: #f8f9fa;
  border: 1px solid #e8e8e8;
  border-radius: 4px;
  text-align: center;
  font-weight: 600;
  transition: all 0.3s ease;
}

.explore-link:hover {
  background-color: #C8102E;
  color: #ffffff;
  border-color: #C8102E;
  transform: translateY(-2px);
}

.testimonial-section {
  padding: 60px 20px;
  background-color: #f8f9fa;
}

.testimonial-single {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  background-color: #ffffff;
  padding: 40px;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.testimonial-single p {
  font-size: 18px;
  font-style: italic;
  color: #2c3e50;
  line-height: 1.8;
  margin-bottom: 24px;
}

/* Footer */
.site-footer {
  background-color: #1a1a1a;
  color: #ffffff;
  padding: 60px 20px 32px;
  margin-top: 80px;
}

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

.footer-brand {
  flex: 1 1 280px;
}

.footer-brand img {
  height: 50px;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
}

.tagline {
  font-size: 14px;
  color: #b0b0b0;
  line-height: 1.6;
}

.footer-contact,
.footer-links {
  flex: 1 1 240px;
}

.footer-contact h3,
.footer-links h3 {
  font-size: 18px;
  margin-bottom: 16px;
  color: #ffffff;
}

.footer-contact p {
  font-size: 14px;
  color: #b0b0b0;
  margin-bottom: 8px;
  line-height: 1.6;
}

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

.footer-links a {
  font-size: 14px;
  color: #b0b0b0;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #ffffff;
}

.footer-acknowledgement {
  padding: 24px 0;
  border-top: 1px solid #333;
  border-bottom: 1px solid #333;
  margin-bottom: 24px;
}

.footer-acknowledgement p {
  font-size: 14px;
  font-style: italic;
  color: #b0b0b0;
  text-align: center;
  margin-bottom: 0;
  line-height: 1.6;
}

.footer-legal {
  text-align: center;
}

.footer-legal nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-bottom: 16px;
}

.footer-legal a {
  font-size: 12px;
  color: #b0b0b0;
  transition: color 0.3s ease;
}

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

.footer-legal p {
  font-size: 12px;
  color: #666;
  margin-bottom: 0;
}

/* Cookie Consent Banner */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #1a1a1a;
  color: #ffffff;
  padding: 24px;
  box-shadow: 0 -4px 12px rgba(0,0,0,0.2);
  z-index: 999;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

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

.cookie-consent-text {
  flex: 1 1 400px;
}

.cookie-consent-text p {
  font-size: 14px;
  color: #b0b0b0;
  margin-bottom: 0;
  line-height: 1.6;
}

.cookie-consent-text a {
  color: #C8102E;
  text-decoration: underline;
}

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

.cookie-consent-buttons .btn {
  padding: 10px 24px;
  font-size: 14px;
}

.btn-accept {
  background-color: #C8102E;
  color: #ffffff;
  border: none;
}

.btn-accept:hover {
  background-color: #8B0A1F;
}

.btn-reject,
.btn-settings {
  background-color: transparent;
  color: #ffffff;
  border: 1px solid #ffffff;
}

.btn-reject:hover,
.btn-settings:hover {
  background-color: #333;
}

/* Cookie Settings Modal */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0,0,0,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1002;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  padding: 20px;
}

.cookie-modal.show {
  opacity: 1;
  visibility: visible;
}

.cookie-modal-content {
  background-color: #ffffff;
  border-radius: 4px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 40px;
  position: relative;
}

.cookie-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  font-size: 24px;
  color: #2c3e50;
  cursor: pointer;
  padding: 8px;
  transition: color 0.3s ease;
}

.cookie-modal-close:hover {
  color: #C8102E;
}

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

.cookie-category {
  padding: 20px 0;
  border-bottom: 1px solid #e8e8e8;
}

.cookie-category:last-child {
  border-bottom: none;
}

.cookie-category-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 12px;
}

.cookie-category h3 {
  margin-bottom: 0;
  font-size: 18px;
}

.cookie-toggle {
  position: relative;
  width: 50px;
  height: 26px;
  background-color: #e8e8e8;
  border-radius: 13px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.cookie-toggle.active {
  background-color: #C8102E;
}

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

.cookie-toggle::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  background-color: #ffffff;
  border-radius: 50%;
  transition: transform 0.3s ease;
}

.cookie-toggle.active::after {
  transform: translateX(24px);
}

.cookie-category p {
  font-size: 14px;
  color: #5a6c7d;
  margin-bottom: 0;
}

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

/* Responsive Design */
@media (max-width: 768px) {
  /* Show mobile menu toggle */
  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  /* Hide desktop navigation */
  .main-nav {
    display: none;
  }
  
  /* Typography */
  h1 { font-size: 36px; }
  h2 { font-size: 28px; }
  h3 { font-size: 20px; }
  
  .hero h1 {
    font-size: 40px;
  }
  
  .hero-subtitle {
    font-size: 18px;
  }
  
  /* Hero CTA */
  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }
  
  .hero-cta .btn {
    width: 100%;
  }
  
  /* Sections */
  section {
    margin-bottom: 60px;
  }
  
  /* Grids */
  .value-grid,
  .experience-grid,
  .event-grid,
  .stats-grid,
  .testimonial-grid,
  .awards-grid,
  .benefits-grid,
  .inclusions-grid,
  .category-grid,
  .participation-grid,
  .language-grid,
  .contact-grid,
  .booking-grid,
  .steps-grid {
    flex-direction: column;
  }
  
  .value-item,
  .experience-card,
  .event-card,
  .stat-item,
  .testimonial-card,
  .award-item,
  .benefit-item,
  .category-item,
  .participation-item,
  .language-item,
  .contact-item,
  .booking-card,
  .step-item {
    max-width: 100%;
  }
  
  /* Footer */
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }
  
  .footer-legal nav {
    flex-direction: column;
    gap: 8px;
  }
  
  /* Cookie Consent */
  .cookie-consent-content {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .cookie-consent-buttons {
    width: 100%;
  }
  
  .cookie-consent-buttons .btn {
    flex: 1;
  }
  
  /* Cookie Modal */
  .cookie-modal-content {
    padding: 24px;
  }
  
  .cookie-modal-buttons {
    flex-direction: column;
  }
  
  .cookie-modal-buttons .btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  h1 { font-size: 28px; }
  h2 { font-size: 24px; }
  
  .hero h1 {
    font-size: 32px;
  }
  
  .container {
    padding: 0 16px;
  }
  
  section {
    padding: 0 16px;
  }
  
  .btn {
    padding: 12px 24px;
    font-size: 14px;
  }
  
  .stat-number {
    font-size: 36px;
  }
  
  .form-wrapper {
    padding: 24px;
  }
}

/* Print Styles */
@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-consent,
  .cookie-modal,
  .hero-cta,
  .btn {
    display: none !important;
  }
  
  body {
    font-size: 12pt;
  }
  
  h1 { font-size: 24pt; }
  h2 { font-size: 18pt; }
  h3 { font-size: 14pt; }
}