/* ============================================
   EXPO SNONAM - SCANDINAVIAN CLEAN DESIGN
   Mobile-First Responsive CSS
   ============================================ */

/* ============================================
   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', Roboto, sans-serif;
  line-height: 1.7;
  color: #2C3E50;
  background-color: #FAFAFA;
  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;
}

/* ============================================
   SCANDINAVIAN CLEAN TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Bebas Neue', Arial, sans-serif;
  font-weight: 400;
  letter-spacing: 1px;
  color: #1B4D3E;
  margin-bottom: 16px;
  line-height: 1.2;
}

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

h2 {
  font-size: 38px;
  margin-bottom: 20px;
}

h3 {
  font-size: 28px;
  margin-bottom: 16px;
}

p {
  font-size: 16px;
  margin-bottom: 16px;
  color: #34495E;
}

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

/* ============================================
   HEADER - SCANDINAVIAN MINIMALISM
   ============================================ */
header {
  background-color: #FFFFFF;
  border-bottom: 1px solid #E8E8E8;
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

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

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

.main-nav {
  display: none;
}

.main-nav a {
  margin-left: 32px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #1B4D3E;
  position: relative;
}

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

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

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

/* ============================================
   MOBILE MENU - HAMBURGER
   ============================================ */
.mobile-menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: #1B4D3E;
  color: #FFFFFF;
  border: none;
  border-radius: 4px;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 1001;
}

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

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background-color: #FFFFFF;
  box-shadow: -4px 0 16px rgba(0, 0, 0, 0.1);
  z-index: 1002;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 24px;
  overflow-y: auto;
}

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

.mobile-menu-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: #F5F5F5;
  border: none;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  margin-bottom: 32px;
  margin-left: auto;
  transition: all 0.3s ease;
}

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

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

.mobile-nav a {
  display: block;
  padding: 16px;
  font-size: 16px;
  font-weight: 600;
  color: #1B4D3E;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  background-color: #F5F5F5;
  color: #8B4513;
  padding-left: 24px;
}

/* ============================================
   HERO SECTION - SCANDINAVIAN CLEAN
   ============================================ */
.hero {
  background: linear-gradient(135deg, #F5F5F5 0%, #FFFFFF 100%);
  padding: 80px 20px;
  text-align: center;
  border-bottom: 1px solid #E8E8E8;
}

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

.hero p {
  font-size: 18px;
  color: #34495E;
  margin-bottom: 32px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 4px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  cursor: pointer;
}

.btn-primary {
  background-color: #1B4D3E;
  color: #FFFFFF;
  border-color: #1B4D3E;
}

.btn-primary:hover {
  background-color: #FFFFFF;
  color: #1B4D3E;
  border-color: #1B4D3E;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(27, 77, 62, 0.2);
}

.btn-secondary {
  background-color: transparent;
  color: #1B4D3E;
  border-color: #1B4D3E;
}

.btn-secondary:hover {
  background-color: #1B4D3E;
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(27, 77, 62, 0.2);
}

.trust-badge,
.trust-indicator,
.trust-element {
  font-size: 14px;
  color: #8B4513;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 16px;
}

/* ============================================
   SECTION SPACING
   ============================================ */
.section,
section {
  margin-bottom: 60px;
  padding: 60px 20px;
}

section h2 {
  text-align: center;
  margin-bottom: 16px;
}

section > .container > p:first-of-type {
  text-align: center;
  font-size: 18px;
  color: #7F8C8D;
  margin-bottom: 48px;
}

/* ============================================
   CARDS & GRIDS - FLEXBOX ONLY
   ============================================ */
.value-grid,
.service-grid,
.course-grid,
.excursion-grid,
.equipment-grid,
.testimonial-grid,
.team-grid,
.team-contact-grid,
.package-grid,
.benefit-grid,
.reason-grid,
.included-grid,
.location-grid,
.method-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-bottom: 40px;
}

.value-item,
.service-card,
.course-card,
.excursion-card,
.equipment-card,
.testimonial-card,
.team-member,
.contact-card,
.package-card,
.benefit-item,
.reason-item,
.included-item,
.location-card,
.method-card {
  background-color: #FFFFFF;
  padding: 32px;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  flex: 1 1 280px;
  max-width: 360px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

.value-item:hover,
.service-card:hover,
.course-card:hover,
.excursion-card:hover,
.equipment-card:hover,
.package-card:hover,
.benefit-item:hover,
.reason-item:hover,
.included-item:hover,
.location-card:hover,
.method-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(27, 77, 62, 0.15);
}

.service-card h3,
.course-card h3,
.excursion-card h3,
.equipment-card h3 {
  color: #1B4D3E;
  font-size: 24px;
  margin-bottom: 12px;
}

.price {
  font-size: 32px;
  font-weight: 700;
  color: #8B4513;
  margin: 16px 0;
}

.price-week,
.price-old {
  font-size: 16px;
  color: #95A5A6;
  text-decoration: line-through;
  margin-bottom: 8px;
}

.price-new {
  font-size: 32px;
  font-weight: 700;
  color: #27AE60;
  margin-bottom: 8px;
}

.savings {
  font-size: 14px;
  color: #27AE60;
  font-weight: 600;
  background-color: #E8F8F5;
  padding: 8px 16px;
  border-radius: 4px;
  display: inline-block;
}

.level,
.duration,
.difficulty,
.location,
.features,
.season,
.access,
.ideal,
.role {
  font-size: 14px;
  color: #7F8C8D;
  font-weight: 600;
  margin-bottom: 8px;
}

.program,
.includes,
.note,
.best {
  font-size: 14px;
  color: #34495E;
  background-color: #F9F9F9;
  padding: 12px;
  border-radius: 4px;
  border-left: 3px solid #E8C547;
  margin-top: 12px;
}

/* ============================================
   TESTIMONIALS - HIGH CONTRAST
   ============================================ */
.testimonials {
  background-color: #F5F5F5;
  padding: 60px 20px;
}

.testimonial-card {
  background-color: #FFFFFF;
  padding: 32px;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  border-left: 4px solid #1B4D3E;
  flex: 1 1 320px;
  max-width: 500px;
}

.testimonial-card p {
  font-size: 16px;
  color: #2C3E50;
  line-height: 1.7;
  margin-bottom: 16px;
}

.author {
  font-size: 14px;
  font-weight: 600;
  color: #1B4D3E;
  margin-top: 16px;
}

.rating {
  color: #E8C547;
  font-size: 20px;
  margin-top: 8px;
}

/* ============================================
   STEPS & PROCESS
   ============================================ */
.steps,
.next-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin: 40px 0;
}

.step {
  background-color: #FFFFFF;
  padding: 24px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  flex: 1 1 220px;
  max-width: 280px;
  text-align: center;
  border-top: 4px solid #E8C547;
  position: relative;
}

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

.step p {
  font-size: 14px;
  color: #34495E;
}

/* ============================================
   MILESTONES
   ============================================ */
.milestones {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin: 40px 0;
}

.milestone {
  background-color: #1B4D3E;
  color: #FFFFFF;
  padding: 20px 24px;
  border-radius: 8px;
  text-align: center;
  flex: 1 1 180px;
  max-width: 240px;
  box-shadow: 0 4px 12px rgba(27, 77, 62, 0.2);
}

.milestone strong {
  display: block;
  font-size: 32px;
  font-family: 'Bebas Neue', Arial, sans-serif;
  margin-bottom: 8px;
  color: #E8C547;
}

/* ============================================
   CTA SECTIONS
   ============================================ */
.cta-banner,
.cta-section {
  background: linear-gradient(135deg, #1B4D3E 0%, #2C5F4D 100%);
  color: #FFFFFF;
  padding: 60px 20px;
  text-align: center;
  margin-bottom: 0;
  border-radius: 8px;
}

.cta-banner h2,
.cta-section h2 {
  color: #FFFFFF;
  font-size: 38px;
  margin-bottom: 16px;
}

.cta-banner p,
.cta-section p {
  color: #FFFFFF;
  font-size: 18px;
  margin-bottom: 16px;
}

.urgency,
.highlight {
  background-color: #E8C547;
  color: #1B4D3E;
  padding: 12px 24px;
  border-radius: 4px;
  display: inline-block;
  font-weight: 700;
  margin: 16px 0;
}

.guarantee,
.promise {
  font-size: 14px;
  color: #E8F8F5;
  margin-top: 24px;
  font-style: italic;
}

.phone-display {
  font-size: 28px;
  font-weight: 700;
  color: #E8C547;
  margin: 24px 0;
}

.social-proof {
  font-size: 14px;
  color: #E8F8F5;
  margin-top: 16px;
}

/* ============================================
   LEGAL PAGES
   ============================================ */
.legal-content {
  padding: 60px 20px;
  background-color: #FFFFFF;
}

.legal-content h1 {
  font-size: 42px;
  color: #1B4D3E;
  margin-bottom: 24px;
}

.legal-content h2 {
  font-size: 28px;
  color: #1B4D3E;
  margin-top: 40px;
  margin-bottom: 16px;
  padding-top: 20px;
  border-top: 2px solid #E8E8E8;
}

.legal-content h3 {
  font-size: 20px;
  color: #34495E;
  margin-top: 24px;
  margin-bottom: 12px;
}

.legal-content ul,
.legal-content ol {
  margin-left: 20px;
  margin-bottom: 20px;
}

.legal-content li {
  margin-bottom: 12px;
  line-height: 1.7;
  color: #34495E;
}

/* ============================================
   THANK YOU PAGE
   ============================================ */
.thank-you-section {
  padding: 80px 20px;
  text-align: center;
  background: linear-gradient(135deg, #F5F5F5 0%, #FFFFFF 100%);
}

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

.success-message {
  font-size: 20px;
  color: #27AE60;
  background-color: #E8F8F5;
  padding: 20px;
  border-radius: 8px;
  border-left: 4px solid #27AE60;
  margin-bottom: 40px;
}

.meanwhile-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin: 40px 0;
}

.action-card {
  background-color: #FFFFFF;
  padding: 32px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  flex: 1 1 280px;
  max-width: 350px;
}

.urgent-note {
  background-color: #FFF3CD;
  color: #856404;
  padding: 16px;
  border-radius: 4px;
  border-left: 4px solid #FFC107;
  margin: 24px 0;
  font-weight: 600;
}

.contact-info {
  background-color: #F5F5F5;
  padding: 32px;
  border-radius: 8px;
  margin: 40px 0;
  text-align: left;
}

.contact-info p {
  font-size: 16px;
  color: #2C3E50;
  margin-bottom: 12px;
}

/* ============================================
   FOOTER - SCANDINAVIAN MINIMALISM
   ============================================ */
footer {
  background-color: #1B4D3E;
  color: #FFFFFF;
  padding: 60px 20px 20px;
  margin-top: 60px;
}

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

.footer-section {
  flex: 1 1 240px;
  max-width: 350px;
}

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

.footer-section p {
  color: #E8F8F5;
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 12px;
}

.footer-logo {
  height: 60px;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
}

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

.footer-nav a {
  color: #E8F8F5;
  font-size: 14px;
  transition: all 0.3s ease;
  padding-left: 0;
}

.footer-nav a:hover {
  color: #E8C547;
  padding-left: 8px;
}

.copyright {
  text-align: center;
  color: #95A5A6;
  font-size: 14px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* ============================================
   COOKIE CONSENT BANNER
   ============================================ */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #FFFFFF;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.15);
  padding: 24px;
  z-index: 1000;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-top: 3px solid #1B4D3E;
}

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

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

.cookie-text {
  flex: 1 1 300px;
  font-size: 14px;
  color: #34495E;
}

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

.cookie-btn {
  padding: 12px 24px;
  border: none;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cookie-accept {
  background-color: #1B4D3E;
  color: #FFFFFF;
}

.cookie-accept:hover {
  background-color: #2C5F4D;
  transform: translateY(-2px);
}

.cookie-reject {
  background-color: #95A5A6;
  color: #FFFFFF;
}

.cookie-reject:hover {
  background-color: #7F8C8D;
}

.cookie-settings {
  background-color: transparent;
  color: #1B4D3E;
  border: 2px solid #1B4D3E;
}

.cookie-settings:hover {
  background-color: #F5F5F5;
}

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

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

.cookie-modal-content {
  background-color: #FFFFFF;
  border-radius: 8px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  padding: 32px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  animation: slideIn 0.3s ease;
}

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

.cookie-modal h3 {
  color: #1B4D3E;
  font-size: 28px;
  margin-bottom: 20px;
}

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

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

.cookie-category h4 {
  color: #34495E;
  font-size: 18px;
  margin-bottom: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

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

.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-toggle.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

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

/* ============================================
   RESPONSIVE DESIGN - TABLET
   ============================================ */
@media (min-width: 768px) {
  .mobile-menu-toggle {
    display: none;
  }
  
  .main-nav {
    display: flex;
    align-items: center;
  }
  
  .hero h1 {
    font-size: 64px;
  }
  
  h2 {
    font-size: 48px;
  }
  
  .value-grid,
  .service-grid,
  .course-grid {
    justify-content: space-between;
  }
  
  .value-item,
  .service-card,
  .course-card {
    flex: 1 1 calc(50% - 24px);
    max-width: calc(50% - 24px);
  }
  
  .footer-content {
    justify-content: space-between;
  }
  
  .cookie-content {
    flex-wrap: nowrap;
  }
}

/* ============================================
   RESPONSIVE DESIGN - DESKTOP
   ============================================ */
@media (min-width: 1024px) {
  .hero h1 {
    font-size: 72px;
  }
  
  .value-item,
  .benefit-item,
  .reason-item,
  .included-item {
    flex: 1 1 calc(25% - 24px);
    max-width: calc(25% - 24px);
  }
  
  .service-card,
  .course-card,
  .excursion-card,
  .equipment-card {
    flex: 1 1 calc(33.333% - 24px);
    max-width: calc(33.333% - 24px);
  }
  
  .testimonial-card {
    flex: 1 1 calc(50% - 24px);
    max-width: calc(50% - 24px);
  }
}

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

.mb-20 {
  margin-bottom: 20px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mt-20 {
  margin-top: 20px;
}

.mt-40 {
  margin-top: 40px;
}

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

.fade-in {
  animation: fadeIn 0.6s ease forwards;
}

/* ============================================
   FOCUS STATES FOR ACCESSIBILITY
   ============================================ */
a:focus,
button:focus,
input:focus,
textarea:focus {
  outline: 2px solid #E8C547;
  outline-offset: 2px;
}

/* ============================================
   PRINT STYLES
   ============================================ */
@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-consent,
  .cookie-modal {
    display: none !important;
  }
  
  header {
    position: static;
  }
}
.values-grid {
    display: flex;
    gap: 20px;
    justify-content: space-evenly;
}