/* ===================================
   LUMENCREST - PLAYFUL DYNAMIC DESIGN
   CSS RESET & BASE STYLES
   =================================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  line-height: 1.6;
  color: #2C3E50;
  background: linear-gradient(135deg, #E8F5F7 0%, #FFF9E6 100%);
  overflow-x: hidden;
}

/* ===================================
   TYPOGRAPHY - PLAYFUL & ENERGETIC
   =================================== */

h1, h2, h3, h4, h5, h6 {
  font-family: 'Orbitron', 'Futura', 'Century Gothic', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: #1A237E;
  margin-bottom: 16px;
}

h1 {
  font-size: 48px;
  text-transform: uppercase;
  letter-spacing: 2px;
  background: linear-gradient(135deg, #1A237E 0%, #00BCD4 100%);
  -webkit-background-clip: text;

  background-clip: text;
  animation: titlePulse 3s ease-in-out infinite;
}

h2 {
  font-size: 36px;
  color: #1A237E;
  position: relative;
  padding-bottom: 12px;
}

h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #FFC107 0%, #00BCD4 100%);
  border-radius: 2px;
  animation: underlineGrow 1s ease-out;
}

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

h4 {
  font-size: 18px;
  color: #1A237E;
}

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

a {
  color: #00BCD4;
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: #FFC107;
  transform: translateY(-2px);
}

/* ===================================
   ANIMATIONS - DYNAMIC & FUN
   =================================== */

@keyframes titlePulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.02); }
}

@keyframes underlineGrow {
  from { width: 0; }
  to { width: 60px; }
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

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

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

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

/* ===================================
   CONTAINER & LAYOUT
   =================================== */

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

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

/* ===================================
   HEADER - VIBRANT & MODERN
   =================================== */

header {
  background: linear-gradient(135deg, #1A237E 0%, #283593 50%, #3949AB 100%);
  padding: 20px 0;
  box-shadow: 0 4px 20px rgba(0, 188, 212, 0.3);
  position: sticky;
  top: 0;
  z-index: 900;
  animation: slideInRight 0.6s ease-out;
}

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

.logo img {
  height: 50px;
  filter: drop-shadow(0 2px 8px rgba(255, 193, 7, 0.5));
  transition: transform 0.3s ease;
}

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

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

.main-nav a {
  color: #FFFFFF;
  font-weight: 500;
  font-size: 16px;
  padding: 8px 16px;
  border-radius: 20px;
  transition: all 0.3s ease;
  position: relative;
}

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

.main-nav a:hover {
  background: rgba(255, 193, 7, 0.2);
  color: #FFC107;
  transform: translateY(-3px);
}

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

.cta-button {
  background: linear-gradient(135deg, #FFC107 0%, #FFD54F 100%);
  color: #1A237E;
  padding: 12px 28px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 16px;
  box-shadow: 0 4px 15px rgba(255, 193, 7, 0.4);
  transition: all 0.3s ease;
  animation: bounce 2s ease-in-out infinite;
}

.cta-button:hover {
  background: linear-gradient(135deg, #FFD54F 0%, #FFC107 100%);
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 6px 25px rgba(255, 193, 7, 0.6);
}

/* ===================================
   MOBILE MENU - SMOOTH & ANIMATED
   =================================== */

.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1001;
  background: linear-gradient(135deg, #FFC107 0%, #FF9800 100%);
  color: #1A237E;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(255, 193, 7, 0.5);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  transform: rotate(90deg) scale(1.1);
  box-shadow: 0 6px 25px rgba(255, 193, 7, 0.7);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: linear-gradient(135deg, #1A237E 0%, #283593 100%);
  z-index: 1000;
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  box-shadow: -5px 0 25px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  padding: 80px 30px 30px 30px;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: 2px solid #FFC107;
  color: #FFC107;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  background: #FFC107;
  color: #1A237E;
  transform: rotate(90deg);
}

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

.mobile-nav a {
  color: #FFFFFF;
  font-size: 18px;
  font-weight: 500;
  padding: 15px 20px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  text-align: center;
}

.mobile-nav a:hover {
  background: rgba(255, 193, 7, 0.3);
  color: #FFC107;
  transform: translateX(10px);
}

/* ===================================
   HERO SECTION - ENERGETIC & BOLD
   =================================== */

.hero {
  background: linear-gradient(135deg, #1A237E 0%, #00BCD4 100%);
  padding: 80px 20px;
  margin-bottom: 60px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 193, 7, 0.3) 0%, transparent 70%);
  border-radius: 50%;
  animation: rotate 20s linear infinite;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 188, 212, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  animation: rotate 15s linear infinite reverse;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.hero h1 {
  color: #FFFFFF;
  font-size: 56px;
  margin-bottom: 24px;
  text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 1s ease-out;
}

.hero-subheadline {
  font-size: 20px;
  color: #E0F7FA;
  margin-bottom: 32px;
  animation: fadeInUp 1.2s ease-out;
}

.hero-cta {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 24px;
  animation: fadeInUp 1.4s ease-out;
}

.trust-badge {
  color: #FFC107;
  font-weight: 600;
  font-size: 16px;
  animation: fadeInUp 1.6s ease-out;
}

/* ===================================
   BUTTONS - PLAYFUL & INTERACTIVE
   =================================== */

.btn-primary,
.btn-secondary,
.btn-link {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 16px;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, #FFC107 0%, #FF9800 100%);
  color: #1A237E;
  box-shadow: 0 4px 15px rgba(255, 193, 7, 0.4);
}

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

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

.btn-primary:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 6px 25px rgba(255, 193, 7, 0.6);
}

.btn-secondary {
  background: transparent;
  color: #FFFFFF;
  border: 3px solid #00BCD4;
  box-shadow: 0 4px 15px rgba(0, 188, 212, 0.3);
}

.btn-secondary:hover {
  background: #00BCD4;
  color: #1A237E;
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 6px 25px rgba(0, 188, 212, 0.5);
}

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

.btn-link:hover {
  background: #00BCD4;
  color: #FFFFFF;
  transform: translateY(-3px);
}

/* ===================================
   CARDS - VIBRANT & DYNAMIC
   =================================== */

.benefit-card,
.service-card,
.feature-card,
.testimonial-card,
.stat-card,
.value-card,
.experience-card,
.event-card {
  background: #FFFFFF;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 8px 30px rgba(0, 188, 212, 0.15);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  margin-bottom: 24px;
}

.benefit-card::before,
.service-card::before,
.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #FFC107 0%, #00BCD4 100%);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.benefit-card:hover::before,
.service-card:hover::before,
.feature-card:hover::before {
  transform: scaleX(1);
}

.benefit-card:hover,
.service-card:hover,
.feature-card:hover,
.event-card:hover {
  transform: translateY(-10px) rotate(1deg);
  box-shadow: 0 15px 40px rgba(0, 188, 212, 0.25);
}

.benefit-card img,
.feature-card img {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: drop-shadow(0 2px 8px rgba(0, 188, 212, 0.3));
  animation: bounce 3s ease-in-out infinite;
}

.service-card h3,
.feature-card h3 {
  color: #1A237E;
  margin-bottom: 12px;
}

.service-card p,
.feature-card p {
  color: #546E7A;
  margin-bottom: 16px;
}

.service-card .price {
  font-size: 28px;
  font-weight: 700;
  color: #FFC107;
  margin-bottom: 16px;
}

/* ===================================
   TESTIMONIALS - ENGAGING DESIGN
   =================================== */

.testimonials {
  background: linear-gradient(135deg, #E1F5FE 0%, #FFF9C4 100%);
  padding: 60px 20px;
  margin-bottom: 60px;
}

.testimonial-card {
  background: #FFFFFF;
  border-left: 5px solid #FFC107;
  padding: 30px;
  margin-bottom: 24px;
}

.testimonial-card p:first-child {
  font-size: 18px;
  font-style: italic;
  color: #2C3E50;
  margin-bottom: 16px;
  line-height: 1.8;
}

.testimonial-card .author {
  font-weight: 700;
  color: #1A237E;
  font-size: 14px;
}

/* ===================================
   GRIDS - FLEXIBLE LAYOUTS
   =================================== */

.benefits-grid,
.services-grid,
.features-grid,
.testimonials-grid,
.stats-grid,
.categories-grid,
.topics-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.benefits-grid > *,
.services-grid > *,
.features-grid > * {
  flex: 1 1 calc(25% - 24px);
  min-width: 250px;
}

.testimonials-grid > * {
  flex: 1 1 calc(50% - 24px);
  min-width: 300px;
}

.stats-grid > * {
  flex: 1 1 calc(25% - 24px);
  min-width: 200px;
}

/* ===================================
   STATS SECTION - BOLD NUMBERS
   =================================== */

.stats {
  background: linear-gradient(135deg, #1A237E 0%, #283593 100%);
  padding: 60px 20px;
  margin-bottom: 60px;
}

.stats h2 {
  color: #FFFFFF;
  text-align: center;
  margin-bottom: 40px;
}

.stat-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 193, 7, 0.3);
  text-align: center;
}

.stat-card h3 {
  font-size: 48px;
  color: #FFC107;
  margin-bottom: 8px;
  animation: bounce 2s ease-in-out infinite;
}

.stat-card p {
  color: #E0F7FA;
  font-size: 16px;
}

/* ===================================
   CTA BANNER - ATTENTION-GRABBING
   =================================== */

.cta-banner,
.cta-section {
  background: linear-gradient(135deg, #00BCD4 0%, #0097A7 100%);
  padding: 60px 20px;
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 193, 7, 0.1) 0%, transparent 50%);
  animation: rotate 30s linear infinite;
}

.cta-banner h2,
.cta-section h2 {
  color: #FFFFFF;
  font-size: 40px;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}

.cta-banner h2::after {
  background: #FFC107;
}

.cta-banner p,
.cta-section p {
  color: #E0F7FA;
  font-size: 18px;
  margin-bottom: 32px;
  position: relative;
  z-index: 2;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

.guarantee {
  color: #FFC107;
  font-weight: 600;
  margin-top: 20px;
  position: relative;
  z-index: 2;
}

/* ===================================
   PAGE HERO - CONSISTENT HEADERS
   =================================== */

.page-hero {
  background: linear-gradient(135deg, #1A237E 0%, #3949AB 100%);
  padding: 80px 20px;
  text-align: center;
  margin-bottom: 60px;
}

.page-hero h1 {
  color: #FFFFFF;
  font-size: 48px;
  margin-bottom: 16px;
}

.page-hero p {
  color: #E0F7FA;
  font-size: 20px;
}

/* ===================================
   FOOTER - ORGANIZED & CLEAN
   =================================== */

footer {
  background: linear-gradient(135deg, #1A237E 0%, #0D47A1 100%);
  color: #FFFFFF;
  padding: 60px 20px 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 250px;
}

.footer-section h4 {
  color: #FFC107;
  font-size: 18px;
  margin-bottom: 16px;
}

.footer-section p,
.footer-section a {
  color: #E0F7FA;
  font-size: 14px;
  line-height: 1.8;
}

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

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

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

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 193, 7, 0.3);
  color: #B0BEC5;
}

/* ===================================
   COOKIE CONSENT BANNER - MODERN
   =================================== */

.cookie-banner {
  position: fixed;
  bottom: -200px;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #1A237E 0%, #283593 100%);
  color: #FFFFFF;
  padding: 20px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  transition: bottom 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.cookie-banner.show {
  bottom: 0;
}

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

.cookie-banner-text {
  flex: 1 1 300px;
}

.cookie-banner-text p {
  margin: 0;
  font-size: 14px;
  color: #E0F7FA;
}

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

.cookie-btn {
  padding: 10px 20px;
  border-radius: 20px;
  border: none;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 14px;
}

.cookie-btn-accept {
  background: linear-gradient(135deg, #FFC107 0%, #FF9800 100%);
  color: #1A237E;
}

.cookie-btn-accept:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(255, 193, 7, 0.5);
}

.cookie-btn-reject {
  background: transparent;
  color: #E0F7FA;
  border: 2px solid #E0F7FA;
}

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

.cookie-btn-settings {
  background: transparent;
  color: #00BCD4;
  border: 2px solid #00BCD4;
}

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

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

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

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

.cookie-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: none;
  font-size: 28px;
  color: #1A237E;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.cookie-modal-close:hover {
  transform: rotate(90deg);
}

.cookie-preference {
  padding: 20px;
  background: #F5F5F5;
  border-radius: 10px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.cookie-preference h4 {
  color: #1A237E;
  margin-bottom: 8px;
}

.cookie-preference p {
  color: #546E7A;
  font-size: 14px;
  margin: 0;
}

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

.cookie-toggle.active {
  background: #4CAF50;
}

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

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

/* ===================================
   SPECIFIC PAGE SECTIONS
   =================================== */

/* Mission & Values */
.mission-values {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
}

.mission-values > * {
  flex: 1 1 calc(50% - 24px);
  min-width: 300px;
}

/* Timeline */
.timeline {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 40px;
  position: relative;
  padding-left: 40px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 10px;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, #FFC107 0%, #00BCD4 100%);
}

.timeline-item {
  position: relative;
  padding: 20px;
  background: #FFFFFF;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 188, 212, 0.1);
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -50px;
  top: 20px;
  width: 20px;
  height: 20px;
  background: #FFC107;
  border: 4px solid #FFFFFF;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(255, 193, 7, 0.2);
}

.timeline-item h3 {
  color: #1A237E;
  font-size: 24px;
  margin-bottom: 8px;
}

/* Team Grid */
.team-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
}

.team-member {
  flex: 1 1 calc(25% - 24px);
  min-width: 250px;
  background: #FFFFFF;
  border-radius: 20px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 8px 30px rgba(0, 188, 212, 0.15);
  transition: all 0.3s ease;
}

.team-member:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 188, 212, 0.25);
}

.team-member h3 {
  color: #1A237E;
  margin-bottom: 8px;
}

.team-member .role {
  color: #00BCD4;
  font-weight: 600;
  margin-bottom: 12px;
}

/* Partners Grid */
.partners-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
}

.partner {
  flex: 1 1 calc(25% - 24px);
  min-width: 200px;
  background: #FFFFFF;
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  font-weight: 600;
  color: #1A237E;
  box-shadow: 0 4px 15px rgba(0, 188, 212, 0.1);
  transition: all 0.3s ease;
}

.partner:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 188, 212, 0.2);
}

/* Facilities Grid */
.facilities-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
}

.facility-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  background: linear-gradient(135deg, #E1F5FE 0%, #FFFFFF 100%);
  padding: 30px;
  border-radius: 20px;
  border-left: 5px solid #00BCD4;
  box-shadow: 0 4px 15px rgba(0, 188, 212, 0.1);
}

.facility-card h3 {
  color: #1A237E;
  margin-bottom: 12px;
}

/* Experiences Page */
.experience-card {
  background: linear-gradient(135deg, #FFFFFF 0%, #E1F5FE 100%);
  border-left: 8px solid #FFC107;
  margin-bottom: 40px;
}

.experience-card h2 {
  color: #1A237E;
  font-size: 32px;
  margin-bottom: 16px;
}

.experience-card .price {
  font-size: 24px;
  font-weight: 700;
  color: #FFC107;
  margin-bottom: 16px;
}

.highlights {
  background: #F5F5F5;
  padding: 20px;
  border-radius: 10px;
  margin: 24px 0;
}

.highlights h3 {
  color: #1A237E;
  font-size: 20px;
  margin-bottom: 12px;
}

.highlights ul {
  list-style: none;
  padding: 0;
}

.highlights li {
  padding: 8px 0;
  color: #546E7A;
  position: relative;
  padding-left: 24px;
}

.highlights li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #00BCD4;
  font-weight: 700;
  font-size: 18px;
}

.discount {
  background: linear-gradient(135deg, #FFC107 0%, #FF9800 100%);
  color: #1A237E;
  padding: 12px 20px;
  border-radius: 10px;
  font-weight: 700;
  display: inline-block;
  margin-top: 16px;
}

/* Booking Process */
.steps-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
}

.step {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 250px;
  background: #FFFFFF;
  padding: 30px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 188, 212, 0.1);
}

.step h3 {
  color: #FFC107;
  font-size: 48px;
  margin-bottom: 16px;
}

/* FAQ */
.faq-item {
  background: #FFFFFF;
  padding: 24px;
  border-radius: 10px;
  margin-bottom: 20px;
  border-left: 4px solid #00BCD4;
  box-shadow: 0 2px 10px rgba(0, 188, 212, 0.1);
}

.faq-item h3 {
  color: #1A237E;
  margin-bottom: 12px;
}

.faq-item p {
  color: #546E7A;
}

/* Discoveries & Topics */
.discovery-card,
.topic-card {
  background: #FFFFFF;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 8px 30px rgba(0, 188, 212, 0.15);
  transition: all 0.3s ease;
  margin-bottom: 24px;
}

.discovery-card .category {
  background: linear-gradient(135deg, #FFC107 0%, #FF9800 100%);
  color: #1A237E;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  display: inline-block;
  margin-bottom: 12px;
}

.discovery-card .date,
.topic-card span {
  color: #00BCD4;
  font-weight: 600;
  font-size: 14px;
}

/* Events */
.event-card .date {
  background: #FFC107;
  color: #1A237E;
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 14px;
  display: inline-block;
  margin-bottom: 12px;
}

.event-card .speaker {
  color: #00BCD4;
  font-weight: 600;
  margin-bottom: 12px;
}

.event-card .venue {
  color: #546E7A;
  font-size: 14px;
  margin-bottom: 16px;
}

.event-details {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 20px 0;
  padding: 16px;
  background: #F5F5F5;
  border-radius: 10px;
}

.event-details .price {
  color: #FFC107;
  font-size: 24px;
  font-weight: 700;
}

.event-details .seats {
  color: #00BCD4;
  font-weight: 600;
}

/* Blog */
.post-card {
  background: #FFFFFF;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 8px 30px rgba(0, 188, 212, 0.15);
  transition: all 0.3s ease;
  margin-bottom: 24px;
}

.post-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 188, 212, 0.25);
}

.post-card .category {
  background: #00BCD4;
  color: #FFFFFF;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  display: inline-block;
  margin-bottom: 12px;
}

.post-card h3 {
  color: #1A237E;
  margin-bottom: 12px;
}

.post-meta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 14px;
  color: #78909C;
  margin-top: 16px;
}

.post-meta span {
  display: flex;
  align-items: center;
  gap: 4px;
}

/* Contact Page */
.methods-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
}

.method-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 250px;
  background: #FFFFFF;
  padding: 30px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 188, 212, 0.1);
}

.method-card img {
  width: 60px;
  height: 60px;
  margin-bottom: 16px;
}

.method-card h3 {
  color: #1A237E;
  margin-bottom: 12px;
}

.booking-options {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
}

.booking-option {
  flex: 1 1 calc(25% - 24px);
  min-width: 200px;
  background: linear-gradient(135deg, #E1F5FE 0%, #FFFFFF 100%);
  padding: 24px;
  border-radius: 15px;
  text-align: center;
  border: 2px solid #00BCD4;
}

.booking-option h3 {
  color: #1A237E;
  margin-bottom: 16px;
}

/* Legal Pages */
.legal-content {
  max-width: 900px;
  margin: 0 auto;
}

.content-wrapper {
  background: #FFFFFF;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0, 188, 212, 0.1);
}

.content-wrapper h2 {
  color: #1A237E;
  margin-top: 32px;
  margin-bottom: 16px;
}

.content-wrapper h3 {
  color: #00BCD4;
  margin-top: 24px;
  margin-bottom: 12px;
}

.content-wrapper ul,
.content-wrapper ol {
  margin-left: 24px;
  margin-bottom: 16px;
  color: #546E7A;
}

.content-wrapper li {
  margin-bottom: 8px;
  line-height: 1.8;
}

.content-wrapper table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
}

.content-wrapper th,
.content-wrapper td {
  padding: 12px;
  text-align: left;
  border: 1px solid #E0E0E0;
}

.content-wrapper th {
  background: #1A237E;
  color: #FFFFFF;
  font-weight: 700;
}

.content-wrapper td {
  background: #FAFAFA;
  color: #546E7A;
}

.last-update {
  color: #78909C;
  font-size: 14px;
  font-style: italic;
}

.quick-summary {
  background: #E1F5FE;
  padding: 40px 20px;
  margin: 40px 0;
  border-radius: 20px;
}

.quick-summary h2 {
  color: #1A237E;
  text-align: center;
  margin-bottom: 24px;
}

.quick-summary ul {
  max-width: 700px;
  margin: 0 auto;
  list-style: none;
  padding: 0;
}

.quick-summary li {
  padding: 12px 0 12px 32px;
  color: #546E7A;
  position: relative;
  font-size: 16px;
}

.quick-summary li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #00BCD4;
  font-weight: 700;
  font-size: 20px;
}

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

.thank-you-content h1 {
  color: #FFFFFF;
  font-size: 64px;
  margin-bottom: 16px;
  animation: bounce 1s ease-out;
}

.thank-you-content .lead {
  color: #E0F7FA;
  font-size: 24px;
  font-weight: 600;
}

.confirmation-message {
  max-width: 800px;
  margin: 0 auto;
  background: #FFFFFF;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0, 188, 212, 0.15);
}

.confirmation-message h2 {
  color: #1A237E;
  margin-top: 32px;
  margin-bottom: 16px;
}

.confirmation-message ol {
  margin-left: 24px;
  color: #546E7A;
}

.confirmation-message li {
  margin-bottom: 12px;
  line-height: 1.8;
}

.suggestions-grid,
.explore-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
}

.suggestion-card,
.explore-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  background: #FFFFFF;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 4px 15px rgba(0, 188, 212, 0.1);
  text-align: center;
}

.suggestion-card h3,
.explore-card h3 {
  color: #1A237E;
  margin-bottom: 12px;
}

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

@media (max-width: 768px) {
  /* Typography */
  h1 { font-size: 32px; }
  h2 { font-size: 28px; }
  h3 { font-size: 20px; }
  
  /* Header */
  .main-nav,
  .cta-button {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  /* Hero */
  .hero {
    padding: 60px 20px;
  }
  
  .hero h1 {
    font-size: 36px;
  }
  
  .hero-subheadline {
    font-size: 16px;
  }
  
  .hero-cta {
    flex-direction: column;
  }
  
  /* Grids - Stack on Mobile */
  .benefits-grid > *,
  .services-grid > *,
  .features-grid > *,
  .testimonials-grid > *,
  .stats-grid > *,
  .team-grid > *,
  .partners-grid > *,
  .facilities-grid > *,
  .steps-grid > *,
  .methods-grid > *,
  .booking-options > *,
  .mission-values > * {
    flex: 1 1 100%;
  }
  
  /* Footer */
  .footer-content {
    flex-direction: column;
  }
  
  .footer-section {
    flex: 1 1 100%;
  }
  
  /* Cookie Banner */
  .cookie-banner-content {
    flex-direction: column;
  }
  
  .cookie-banner-buttons {
    width: 100%;
  }
  
  .cookie-btn {
    flex: 1;
  }
  
  /* Timeline */
  .timeline {
    padding-left: 30px;
  }
  
  .timeline-item::before {
    left: -40px;
  }
  
  /* Event Details */
  .event-details {
    flex-direction: column;
    gap: 12px;
  }
  
  /* Thank You */
  .thank-you-content h1 {
    font-size: 40px;
  }
  
  /* Page Hero */
  .page-hero h1 {
    font-size: 32px;
  }
  
  .page-hero p {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  /* Mobile menu full width */
  .mobile-menu {
    width: 100%;
    right: -100%;
  }
  
  /* Buttons full width on small screens */
  .btn-primary,
  .btn-secondary {
    width: 100%;
    text-align: center;
  }
  
  /* Cookie modal */
  .cookie-modal-content {
    padding: 20px;
  }
  
  /* Experience cards */
  .experience-card {
    padding: 20px;
  }
  
  .experience-card h2 {
    font-size: 24px;
  }
}

/* ===================================
   UTILITY CLASSES
   =================================== */

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-20 { margin-top: 20px; }
.mb-20 { margin-bottom: 20px; }
.mt-40 { margin-top: 40px; }
.mb-40 { margin-bottom: 40px; }

.section-subtitle {
  font-size: 18px;
  color: #546E7A;
  text-align: center;
  margin-bottom: 40px;
}

/* ===================================
   PRINT STYLES
   =================================== */

@media print {
  header,
  footer,
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-banner,
  .cookie-modal,
  .cta-button,
  .btn-primary,
  .btn-secondary {
    display: none !important;
  }
  
  body {
    background: #FFFFFF;
    color: #000000;
  }
  
  a {
    color: #000000;
    text-decoration: underline;
  }
}