/* ============================================
   SCANDINAVIAN CLEAN DESIGN - NEON CHRONICLE
   Modern, minimalist, functional beauty
   ============================================ */

/* === CSS RESET & BASE === */
* {
  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, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.7;
  color: #2C2C2C;
  background-color: #FAFAFA;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* === SCANDINAVIAN TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  line-height: 1.3;
  color: #1A1A1A;
  margin-bottom: 16px;
}

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;
  color: #4A4A4A;
}

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

a:hover {
  color: #996F00;
}

ul, ol {
  margin-bottom: 16px;
  padding-left: 24px;
}

li {
  margin-bottom: 8px;
  color: #4A4A4A;
}

strong {
  font-weight: 600;
  color: #1A1A1A;
}

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

/* === MOBILE MENU TOGGLE === */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 24px;
  right: 24px;
  z-index: 1001;
  background: #FFFFFF;
  border: 2px solid #E8E8E8;
  width: 48px;
  height: 48px;
  border-radius: 8px;
  font-size: 24px;
  color: #1A1A1A;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.mobile-menu-toggle:hover {
  background: #F5F5F5;
  border-color: #C44200;
  transform: scale(1.05);
}

/* === MOBILE MENU OVERLAY === */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 320px;
  height: 100vh;
  background: #FFFFFF;
  z-index: 1000;
  padding: 80px 32px 32px;
  box-shadow: -4px 0 16px 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: 24px;
  right: 24px;
  background: transparent;
  border: none;
  font-size: 32px;
  color: #1A1A1A;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.mobile-menu-close:hover {
  transform: rotate(90deg);
  color: #C44200;
}

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

.mobile-nav a {
  display: block;
  padding: 16px 20px;
  color: #1A1A1A;
  font-size: 16px;
  font-weight: 500;
  border-radius: 8px;
  transition: all 0.3s ease;
  border-left: 3px solid transparent;
}

.mobile-nav a:hover {
  background: #F5F5F5;
  border-left-color: #C44200;
  color: #C44200;
  transform: translateX(4px);
}

/* === HEADER === */
header {
  background: #FFFFFF;
  border-bottom: 1px solid #E8E8E8;
  padding: 24px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
}

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

.logo {
  display: flex;
  align-items: center;
}

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

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

.main-nav a {
  color: #1A1A1A;
  font-weight: 500;
  font-size: 15px;
  padding: 8px 0;
  position: relative;
  transition: color 0.3s ease;
}

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

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

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

/* === SECTIONS === */
section {
  margin-bottom: 80px;
  padding: 60px 20px;
}

/* === HERO SECTION === */
.hero {
  background: linear-gradient(135deg, #F5F5F5 0%, #FFFFFF 100%);
  padding: 120px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: rgba(196, 66, 0, 0.03);
  border-radius: 50%;
  z-index: 0;
}

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

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

.hero p {
  font-size: 20px;
  color: #4A4A4A;
  margin-bottom: 32px;
  line-height: 1.6;
}

.trust-indicator {
  font-size: 14px;
  color: #6A6A6A;
  margin-top: 24px;
}

/* === PAGE HERO === */
.page-hero {
  background: linear-gradient(135deg, #F5F5F5 0%, #FFFFFF 100%);
  padding: 80px 20px;
  text-align: center;
}

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

.page-hero p {
  font-size: 18px;
  color: #4A4A4A;
  max-width: 700px;
  margin: 0 auto;
}

/* === ERROR HERO === */
.error-hero {
  background: linear-gradient(135deg, #F5F5F5 0%, #FFFFFF 100%);
  padding: 100px 20px;
  text-align: center;
}

.error-code {
  font-size: 120px;
  color: #C44200;
  opacity: 0.3;
  margin-bottom: 0;
}

.error-content h2 {
  font-size: 32px;
  margin-bottom: 16px;
}

/* === BUTTONS & CTA === */
.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-top: 32px;
}

.cta-primary,
.cta-secondary,
.cta-button,
.cta-link {
  display: inline-block;
  padding: 16px 32px;
  font-weight: 600;
  font-size: 16px;
  border-radius: 8px;
  transition: all 0.3s ease;
  text-align: center;
  cursor: pointer;
  border: 2px solid transparent;
}

.cta-primary {
  background: #C44200;
  color: #FFFFFF;
  box-shadow: 0 4px 12px rgba(196, 66, 0, 0.2);
}

.cta-primary:hover {
  background: #A03700;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(196, 66, 0, 0.3);
}

.cta-secondary {
  background: #FFFFFF;
  color: #C44200;
  border: 2px solid #C44200;
}

.cta-secondary:hover {
  background: #C44200;
  color: #FFFFFF;
  transform: translateY(-2px);
}

.cta-button {
  background: #C44200;
  color: #FFFFFF;
  margin-top: 24px;
}

.cta-button:hover {
  background: #A03700;
  transform: translateY(-2px);
}

.cta-link {
  background: transparent;
  color: #C44200;
  border: 2px solid #C44200;
  padding: 12px 24px;
}

.cta-link:hover {
  background: #C44200;
  color: #FFFFFF;
}

/* === CARDS & GRIDS === */
.benefits-grid,
.services-grid,
.destinations-grid,
.tips-grid,
.categories-grid,
.regions-grid,
.team-grid,
.values-grid,
.options-grid,
.links-grid,
.posts-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-top: 40px;
}

.benefit-card,
.service-card,
.destination-card,
.tip-card,
.category-card,
.region-card,
.team-member,
.value-card,
.option-card,
.link-card,
.post-card {
  background: #FFFFFF;
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  flex: 1 1 calc(50% - 12px);
  min-width: 280px;
  transition: all 0.3s ease;
  border: 1px solid #F0F0F0;
  position: relative;
  margin-bottom: 20px;
}

.benefit-card:hover,
.service-card:hover,
.destination-card:hover,
.tip-card:hover,
.category-card:hover,
.region-card:hover,
.team-member:hover,
.value-card:hover,
.option-card:hover,
.link-card:hover,
.post-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  border-color: #C44200;
}

.benefit-card h3,
.service-card h3,
.destination-card h3,
.tip-card h3,
.category-card h3,
.region-card h3,
.team-member h3,
.value-card h3,
.option-card h3,
.link-card h3,
.post-card h3 {
  color: #1A1A1A;
  margin-bottom: 12px;
  font-size: 20px;
}

.price {
  font-size: 28px;
  font-weight: 700;
  color: #C44200;
  margin: 16px 0;
}

.daily-cost {
  font-size: 18px;
  font-weight: 600;
  color: #996F00;
  margin-top: 8px;
}

/* === TESTIMONIALS === */
.testimonials {
  background: #F9F9F9;
  padding: 80px 20px;
}

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

.testimonial-card {
  background: #FFFFFF;
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  flex: 1 1 calc(50% - 12px);
  min-width: 300px;
  border-left: 4px solid #C44200;
  margin-bottom: 20px;
}

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

.testimonial-card .author {
  color: #6A6A6A;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 0;
}

/* === SERVICE DETAILS === */
.service-detail,
.destination-detail {
  background: #FFFFFF;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  margin-bottom: 32px;
  border: 1px solid #F0F0F0;
}

.service-detail h2,
.destination-detail h3 {
  color: #1A1A1A;
  margin-bottom: 16px;
}

.service-detail ul,
.destination-detail ul {
  margin: 24px 0;
}

.service-detail li,
.destination-detail li {
  padding-left: 8px;
  position: relative;
}

.service-detail li::before {
  content: '✓';
  position: absolute;
  left: -20px;
  color: #C44200;
  font-weight: 700;
}

.duration {
  color: #6A6A6A;
  font-size: 14px;
  margin: 16px 0;
}

.tip {
  background: #FFF8F0;
  padding: 16px;
  border-radius: 8px;
  border-left: 4px solid #996F00;
  margin-top: 16px;
  font-size: 14px;
  color: #4A4A4A;
}

/* === TIPS & HACKS === */
.tip-item,
.hack-item {
  background: #FFFFFF;
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  margin-bottom: 24px;
  border-left: 4px solid #C44200;
}

.savings {
  display: inline-block;
  background: #E8F5E9;
  color: #2E7D32;
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  margin-top: 12px;
}

/* === BLOG & POSTS === */
.featured-post {
  background: linear-gradient(135deg, #F5F5F5 0%, #FFFFFF 100%);
  padding: 60px 20px;
  border-radius: 12px;
  margin-bottom: 60px;
}

.featured-post .label {
  display: inline-block;
  background: #C44200;
  color: #FFFFFF;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

.meta {
  color: #6A6A6A;
  font-size: 14px;
  margin-top: 12px;
}

/* === CONTACT & FORMS === */
.form-notice {
  background: #F5F5F5;
  padding: 32px;
  border-radius: 12px;
  text-align: center;
  border: 2px solid #E8E8E8;
}

.booking-links {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 32px 0;
}

.booking-link {
  display: block;
  padding: 20px 24px;
  background: #FFFFFF;
  border: 2px solid #E8E8E8;
  border-radius: 8px;
  color: #1A1A1A;
  font-weight: 500;
  transition: all 0.3s ease;
}

.booking-link:hover {
  border-color: #C44200;
  background: #FFF8F0;
  transform: translateX(8px);
}

/* === FOOTER === */
footer {
  background: #1A1A1A;
  color: #E8E8E8;
  padding: 60px 20px 32px;
  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 h4 {
  color: #FFFFFF;
  font-size: 18px;
  margin-bottom: 16px;
}

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

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

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

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

.footer-bottom {
  text-align: center;
  padding-top: 32px;
  border-top: 1px solid #333333;
}

.footer-bottom p {
  color: #B8B8B8;
  font-size: 14px;
  margin: 0;
}

/* === COOKIE CONSENT BANNER === */
.cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #FFFFFF;
  padding: 24px;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.1);
  z-index: 999;
  border-top: 2px solid #E8E8E8;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

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

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

.cookie-consent-text p {
  color: #4A4A4A;
  font-size: 14px;
  margin: 0;
}

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

.cookie-consent-buttons button {
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.cookie-accept-all {
  background: #C44200;
  color: #FFFFFF;
  border: none;
}

.cookie-accept-all:hover {
  background: #A03700;
}

.cookie-reject-all {
  background: #F5F5F5;
  color: #1A1A1A;
  border: 2px solid #E8E8E8;
}

.cookie-reject-all:hover {
  background: #E8E8E8;
}

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

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

/* === COOKIE MODAL === */
.cookie-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

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

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

.cookie-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.cookie-modal-header h3 {
  margin: 0;
}

.cookie-modal-close {
  background: transparent;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #6A6A6A;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.cookie-category {
  padding: 20px;
  background: #F9F9F9;
  border-radius: 8px;
  margin-bottom: 16px;
}

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

.cookie-category h4 {
  margin: 0;
  font-size: 16px;
}

.cookie-toggle {
  position: relative;
  width: 48px;
  height: 24px;
  background: #CCCCCC;
  border-radius: 12px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.cookie-toggle.active {
  background: #C44200;
}

.cookie-toggle::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  width: 20px;
  height: 20px;
  background: #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;
  gap: 12px;
  margin-top: 24px;
  justify-content: flex-end;
}

.cookie-save-preferences {
  background: #C44200;
  color: #FFFFFF;
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-save-preferences:hover {
  background: #A03700;
}

/* === LEGAL PAGES === */
.legal-page {
  padding: 60px 20px;
}

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

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

.legal-page h3 {
  margin-top: 24px;
  margin-bottom: 12px;
  font-size: 18px;
}

/* === STATS & INDICATORS === */
.stat,
.stats,
.social-proof,
.response-time {
  font-size: 14px;
  color: #6A6A6A;
  margin-top: 16px;
}

/* === CATEGORY ITEMS === */
.category-item {
  background: #FFFFFF;
  padding: 20px;
  border-radius: 8px;
  border: 2px solid #E8E8E8;
  flex: 1 1 calc(50% - 12px);
  min-width: 200px;
  transition: all 0.3s ease;
  text-align: center;
  font-weight: 500;
}

.category-item:hover {
  border-color: #C44200;
  background: #FFF8F0;
}

/* === TOOLS & LISTS === */
.tools {
  background: #F9F9F9;
  padding: 20px;
  border-radius: 8px;
  margin-top: 24px;
  font-size: 14px;
  color: #4A4A4A;
}

/* === RESPONSIVE DESIGN === */
@media (max-width: 768px) {
  /* Typography */
  h1 { font-size: 32px; }
  h2 { font-size: 24px; }
  h3 { font-size: 20px; }
  
  .hero h1 { font-size: 36px; }
  .hero p { font-size: 18px; }
  
  .error-code { font-size: 80px; }
  
  /* Header & Navigation */
  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .main-nav {
    display: none;
  }
  
  .mobile-menu {
    display: block;
  }
  
  /* Layout */
  .container {
    padding: 0 16px;
  }
  
  section {
    padding: 40px 16px;
    margin-bottom: 40px;
  }
  
  .hero {
    padding: 80px 16px;
  }
  
  .page-hero {
    padding: 60px 16px;
  }
  
  /* Buttons */
  .cta-buttons {
    flex-direction: column;
  }
  
  .cta-primary,
  .cta-secondary,
  .cta-button {
    width: 100%;
  }
  
  /* Cards & Grids */
  .benefits-grid,
  .services-grid,
  .destinations-grid,
  .tips-grid,
  .categories-grid,
  .regions-grid,
  .team-grid,
  .values-grid,
  .options-grid,
  .links-grid,
  .posts-grid,
  .testimonials-grid {
    flex-direction: column;
  }
  
  .benefit-card,
  .service-card,
  .destination-card,
  .tip-card,
  .category-card,
  .region-card,
  .team-member,
  .value-card,
  .option-card,
  .link-card,
  .post-card,
  .testimonial-card {
    flex: 1 1 100%;
  }
  
  .service-detail,
  .destination-detail {
    padding: 24px;
  }
  
  /* Footer */
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }
  
  .footer-section {
    flex: 1 1 100%;
  }
  
  /* Cookie Banner */
  .cookie-consent-content {
    flex-direction: column;
  }
  
  .cookie-consent-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-consent-buttons button {
    width: 100%;
  }
  
  .cookie-modal-content {
    padding: 24px;
  }
}

@media (max-width: 480px) {
  h1 { font-size: 28px; }
  .hero h1 { font-size: 32px; }
  
  .mobile-menu {
    width: 90%;
  }
  
  .logo img {
    height: 40px;
  }
  
  .category-item {
    flex: 1 1 100%;
  }
}

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

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

/* === UTILITY CLASSES === */
.text-center { text-align: center; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }

/* === ACCESSIBILITY === */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* === FOCUS STYLES === */
*:focus-visible {
  outline: 2px solid #C44200;
  outline-offset: 2px;
}

button:focus-visible,
a:focus-visible {
  outline: 2px solid #C44200;
  outline-offset: 2px;
}

/* === PRINT STYLES === */
@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-consent-banner,
  .cookie-modal {
    display: none !important;
  }
}