/* ===================================
   MYSTIC EXPEDITION - MINIMALIST DESIGN
   CSS RESET & BASE STYLES
   =================================== */

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

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

body {
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.6;
  color: #1a1a1a;
  background-color: #ffffff;
  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: none;
}

/* ===================================
   TYPOGRAPHY - MINIMALIST STYLE
   =================================== */

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

h1 {
  font-size: 48px;
  letter-spacing: -0.5px;
}

h2 {
  font-size: 32px;
  letter-spacing: -0.3px;
}

h3 {
  font-size: 24px;
}

h4 {
  font-size: 18px;
}

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

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

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

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

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

header {
  background-color: #ffffff;
  border-bottom: 1px solid #e8e8e8;
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}

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

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

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

.main-nav a {
  font-size: 14px;
  color: #1a1a1a;
  font-weight: 400;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
}

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

/* ===================================
   MOBILE MENU - HAMBURGER
   =================================== */

.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1001;
  background-color: #1a1a1a;
  color: #ffffff;
  border: none;
  width: 48px;
  height: 48px;
  font-size: 24px;
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background-color: #2C5F6F;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background-color: #ffffff;
  z-index: 1000;
  padding: 80px 30px 30px;
  box-shadow: -4px 0 20px rgba(0,0,0,0.1);
  transition: right 0.4s ease;
  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: #1a1a1a;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.mobile-nav a {
  font-size: 16px;
  color: #1a1a1a;
  padding: 12px 0;
  border-bottom: 1px solid #f0f0f0;
  transition: color 0.3s ease;
}

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

/* ===================================
   BUTTONS - MINIMALIST STYLE
   =================================== */

.btn {
  display: inline-block;
  padding: 14px 32px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-align: center;
  border: 2px solid #1a1a1a;
  background-color: #1a1a1a;
  color: #ffffff;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 0;
}

.btn:hover {
  background-color: #ffffff;
  color: #1a1a1a;
}

.btn-primary {
  background-color: #2C5F6F;
  border-color: #2C5F6F;
  color: #ffffff;
}

.btn-primary:hover {
  background-color: #ffffff;
  color: #2C5F6F;
}

.btn-secondary {
  background-color: #ffffff;
  border-color: #1a1a1a;
  color: #1a1a1a;
}

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

/* ===================================
   HERO SECTION - MINIMALIST
   =================================== */

.hero {
  padding: 80px 20px;
  background-color: #fafafa;
  border-bottom: 1px solid #e8e8e8;
}

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

.hero h1 {
  margin-bottom: 24px;
  font-size: 48px;
}

.hero-subtitle {
  font-size: 18px;
  color: #4a4a4a;
  margin-bottom: 40px;
  line-height: 1.8;
}

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

.trust-badge {
  font-size: 14px;
  color: #6a6a6a;
  font-style: italic;
}

/* ===================================
   CARDS & GRID LAYOUTS - FLEXBOX ONLY
   =================================== */

.card-container,
.services-grid,
.benefits-grid,
.pillars-grid,
.testimonials-grid,
.team-grid,
.approach-grid,
.specs-grid,
.goals-grid,
.problems-grid,
.who-grid,
.methods-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-bottom: 40px;
}

.service-card,
.benefit-item,
.pillar-item,
.testimonial-card,
.team-member,
.approach-item,
.spec-item,
.goal-item,
.problem-item,
.who-item,
.method-item,
.card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  background-color: #ffffff;
  border: 1px solid #e8e8e8;
  padding: 32px;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.service-card:hover,
.card:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  transform: translateY(-4px);
}

.service-card h3,
.card h3 {
  font-size: 20px;
  margin-bottom: 16px;
  color: #1a1a1a;
}

.service-card p,
.card p {
  font-size: 15px;
  color: #4a4a4a;
  margin-bottom: 16px;
  line-height: 1.7;
}

.price {
  font-size: 24px;
  font-weight: 600;
  color: #2C5F6F;
  margin: 20px 0;
}

/* ===================================
   TESTIMONIALS - HIGH CONTRAST
   =================================== */

.testimonials {
  padding: 60px 20px;
  background-color: #fafafa;
}

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

.testimonial-card {
  background-color: #ffffff;
  border: 1px solid #e8e8e8;
  padding: 32px;
  flex: 1 1 calc(50% - 24px);
  min-width: 300px;
}

.quote {
  font-size: 16px;
  color: #1a1a1a;
  line-height: 1.8;
  margin-bottom: 20px;
  font-style: italic;
}

.author {
  font-size: 14px;
  color: #2C5F6F;
  font-weight: 600;
  margin-bottom: 8px;
}

.service,
.result {
  font-size: 13px;
  color: #6a6a6a;
}

/* ===================================
   VALUE PROPOSITION SECTION
   =================================== */

.value-proposition,
.services-overview,
.four-pillars {
  padding: 60px 20px;
}

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

/* ===================================
   TEXT-IMAGE SECTIONS - ALIGNED
   =================================== */

.text-section,
.text-image-section {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.text-section > *,
.text-image-section > * {
  flex: 1 1 300px;
}

/* ===================================
   STATS & FEATURES
   =================================== */

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

.stat-item,
.feature-item {
  flex: 1 1 calc(33.333% - 32px);
  min-width: 200px;
  text-align: center;
  padding: 24px;
}

.stat-item h3 {
  font-size: 48px;
  color: #2C5F6F;
  margin-bottom: 8px;
}

.stat-item p {
  font-size: 14px;
  color: #6a6a6a;
}

/* ===================================
   LISTS - CLEAN MINIMAL STYLE
   =================================== */

.includes-list,
.benefits-list,
.problems-list,
.impact-list,
.values-list,
.credentials,
.package-includes,
.specialists-list {
  margin: 24px 0;
  padding: 0;
}

.includes-list li,
.benefits-list li,
.problems-list li,
.impact-list li,
.values-list li,
.credentials li,
.package-includes li,
.specialists-list li {
  padding: 12px 0 12px 32px;
  position: relative;
  font-size: 15px;
  color: #4a4a4a;
  line-height: 1.7;
  border-bottom: 1px solid #f0f0f0;
}

.includes-list li:before,
.benefits-list li:before,
.package-includes li:before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #2C5F6F;
  font-weight: 600;
}

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

.cta-section {
  padding: 80px 20px;
  background-color: #fafafa;
  text-align: center;
  border-top: 1px solid #e8e8e8;
}

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

.subtitle {
  font-size: 18px;
  color: #6a6a6a;
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

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

.trust-note,
.guarantee,
.confidentiality,
.note,
.package-note {
  font-size: 14px;
  color: #6a6a6a;
  margin-top: 24px;
  font-style: italic;
}

/* ===================================
   TEAM & PROFILES
   =================================== */

.team,
.specialist-profile,
.therapist-profile,
.trainer-profile,
.nutritionist-profile {
  padding: 60px 20px;
}

.team-member,
.profile {
  background-color: #fafafa;
  border: 1px solid #e8e8e8;
  padding: 32px;
  text-align: center;
}

.title {
  font-size: 14px;
  color: #2C5F6F;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.philosophy {
  font-style: italic;
  color: #4a4a4a;
  margin-top: 24px;
  line-height: 1.8;
}

/* ===================================
   MISSION, VISION, VALUES
   =================================== */

.mission-vision {
  padding: 60px 20px;
}

.mission-vision-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 48px;
}

.mission-item,
.vision-item {
  flex: 1 1 calc(50% - 32px);
  min-width: 300px;
  padding: 32px;
  background-color: #fafafa;
  border: 1px solid #e8e8e8;
}

.values {
  padding: 32px;
  background-color: #ffffff;
  border: 1px solid #e8e8e8;
}

/* ===================================
   SERVICE DETAILS PAGES
   =================================== */

.service-details,
.problem-solution,
.specializations,
.sleep-problems,
.sleep-science {
  padding: 60px 20px;
}

.price-duration,
.price-large,
.price-display {
  font-size: 32px;
  font-weight: 600;
  color: #2C5F6F;
  margin: 24px 0;
  text-align: center;
}

.savings {
  font-size: 16px;
  color: #6a6a6a;
  text-align: center;
  margin-bottom: 32px;
}

.tagline {
  font-size: 18px;
  color: #4a4a4a;
  text-align: center;
  margin-bottom: 24px;
  font-style: italic;
}

/* ===================================
   CONTACT PAGE
   =================================== */

.contact-methods,
.location,
.opening-hours,
.consultation-types,
.team-availability {
  padding: 60px 20px;
}

.value {
  font-size: 18px;
  font-weight: 600;
  color: #2C5F6F;
  margin: 16px 0;
}

.response,
.landmark,
.parking,
.transport,
.appointment-note {
  font-size: 14px;
  color: #6a6a6a;
  margin-top: 8px;
}

.address {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 24px;
}

.hours-list {
  font-size: 16px;
  line-height: 2;
  margin: 24px 0;
}

.location-details {
  padding: 32px;
  background-color: #fafafa;
  border: 1px solid #e8e8e8;
}

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

.thank-you {
  padding: 100px 20px;
  text-align: center;
}

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

.message {
  font-size: 20px;
  color: #2C5F6F;
  margin-bottom: 32px;
}

.contact-info {
  margin-top: 48px;
  padding: 32px;
  background-color: #fafafa;
  border: 1px solid #e8e8e8;
}

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

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

.legal-content h1 {
  margin-bottom: 16px;
}

.updated {
  font-size: 14px;
  color: #6a6a6a;
  margin-bottom: 40px;
}

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

.legal-content ul {
  margin: 16px 0;
  padding-left: 24px;
}

.legal-content ul li {
  list-style: disc;
  margin-bottom: 8px;
  color: #4a4a4a;
}

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

footer {
  background-color: #1a1a1a;
  color: #ffffff;
  padding: 60px 20px 24px;
  margin-top: 80px;
}

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

.footer-section {
  flex: 1 1 250px;
}

.footer-section h3 {
  color: #ffffff;
  font-size: 18px;
  margin-bottom: 20px;
}

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

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

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

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

.copyright {
  text-align: center;
  color: #808080;
  font-size: 14px;
  padding-top: 24px;
  border-top: 1px solid #333333;
}

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

#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #ffffff;
  border-top: 2px solid #e8e8e8;
  padding: 24px 20px;
  z-index: 999;
  box-shadow: 0 -4px 16px rgba(0,0,0,0.1);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

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

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

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

.cookie-btn {
  padding: 10px 20px;
  font-size: 14px;
  border: 1px solid #1a1a1a;
  background-color: #ffffff;
  color: #1a1a1a;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-btn:hover {
  background-color: #1a1a1a;
  color: #ffffff;
}

.cookie-btn-accept {
  background-color: #2C5F6F;
  border-color: #2C5F6F;
  color: #ffffff;
}

.cookie-btn-accept:hover {
  background-color: #1a3d48;
}

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

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

.cookie-modal-content {
  background-color: #ffffff;
  padding: 40px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}

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

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

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

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

.cookie-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 12px;
}

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

.toggle-switch.active {
  background-color: #2C5F6F;
}

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

.toggle-switch.active:before {
  left: 28px;
}

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

/* ===================================
   FEATURED PACKAGE SECTION
   =================================== */

.featured-package {
  padding: 60px 20px;
  background-color: #fafafa;
  border-top: 1px solid #e8e8e8;
  border-bottom: 1px solid #e8e8e8;
}

.featured-package h2 {
  text-align: center;
  margin-bottom: 16px;
}

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

@media (max-width: 768px) {
  /* Typography */
  h1 {
    font-size: 32px;
  }
  
  h2 {
    font-size: 24px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  /* Navigation */
  .main-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  /* Hero */
  .hero {
    padding: 60px 20px;
  }
  
  .hero h1 {
    font-size: 32px;
  }
  
  .hero-subtitle {
    font-size: 16px;
  }
  
  .hero-cta {
    flex-direction: column;
  }
  
  .hero-cta .btn {
    width: 100%;
  }
  
  /* Cards - Stack on mobile */
  .service-card,
  .benefit-item,
  .pillar-item,
  .testimonial-card,
  .team-member,
  .approach-item,
  .spec-item,
  .goal-item,
  .problem-item,
  .who-item,
  .method-item,
  .card {
    flex: 1 1 100%;
    min-width: 100%;
  }
  
  /* Text-Image sections */
  .text-section,
  .text-image-section {
    flex-direction: column;
  }
  
  /* Stats */
  .stat-item {
    flex: 1 1 100%;
  }
  
  /* Mission-Vision */
  .mission-item,
  .vision-item {
    flex: 1 1 100%;
  }
  
  /* Footer */
  .footer-content {
    flex-direction: column;
  }
  
  .footer-section {
    flex: 1 1 100%;
  }
  
  /* Cookie Banner */
  .cookie-content {
    flex-direction: column;
  }
  
  .cookie-buttons {
    width: 100%;
  }
  
  .cookie-btn {
    flex: 1 1 100%;
  }
  
  /* Buttons */
  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .cta-buttons .btn {
    width: 100%;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  /* Tablets */
  .service-card,
  .testimonial-card {
    flex: 1 1 calc(50% - 24px);
  }
  
  .benefit-item,
  .pillar-item,
  .team-member {
    flex: 1 1 calc(50% - 24px);
  }
}

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

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

.hero-content,
.service-card,
.testimonial-card {
  animation: fadeIn 0.6s ease-out;
}

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

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

.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }

.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }

.p-1 { padding: 8px; }
.p-2 { padding: 16px; }
.p-3 { padding: 24px; }
.p-4 { padding: 32px; }

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

@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  #cookie-banner,
  #cookie-modal,
  .hero-cta,
  .cta-section {
    display: none;
  }
  
  body {
    font-size: 12pt;
  }
  
  h1 { font-size: 24pt; }
  h2 { font-size: 18pt; }
  h3 { font-size: 14pt; }
}