/* ===================================
   NANOGLEAM - SCANDINAVIAN CLEAN DESIGN
   CSS STYLESHEET
   =================================== */

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

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

h1 {
  font-size: 48px;
  font-weight: 700;
}

h2 {
  font-size: 36px;
}

h3 {
  font-size: 24px;
}

h4 {
  font-size: 20px;
}

p {
  margin-bottom: 16px;
  color: #636e72;
  font-size: 16px;
}

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

a:hover {
  color: #17252A;
}

ul {
  list-style: none;
}

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

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

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

/* HEADER STYLES */
header {
  background-color: #FEFFFF;
  border-bottom: 1px solid #e8ecef;
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.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;
  gap: 32px;
  align-items: center;
  flex-wrap: wrap;
}

.main-nav a {
  font-size: 15px;
  font-weight: 500;
  color: #17252A;
  padding: 8px 0;
  position: relative;
  letter-spacing: 0.3px;
}

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

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

/* MOBILE MENU TOGGLE BUTTON */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1001;
  background-color: #2B7A78;
  color: #FEFFFF;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 8px;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(43, 122, 120, 0.3);
  transition: all 0.3s ease;
}

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

/* MOBILE MENU OVERLAY */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background-color: #FEFFFF;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  padding: 80px 30px 30px;
  transition: right 0.4s ease;
  overflow-y: auto;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: none;
  font-size: 32px;
  color: #17252A;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

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

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

.mobile-nav a {
  font-size: 18px;
  font-weight: 500;
  color: #17252A;
  padding: 12px 0;
  border-bottom: 1px solid #e8ecef;
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  color: #2B7A78;
  padding-left: 8px;
}

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

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

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

.hero-subtitle {
  font-size: 20px;
  color: #636e72;
  margin-bottom: 32px;
  line-height: 1.6;
}

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

.trust-indicator {
  font-size: 14px;
  color: #2B7A78;
  font-weight: 500;
  margin-top: 24px;
}

/* BUTTONS - SCANDINAVIAN MINIMALIST */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 0.5px;
}

.btn-primary {
  background-color: #2B7A78;
  color: #FEFFFF;
  border-color: #2B7A78;
}

.btn-primary:hover {
  background-color: #17252A;
  border-color: #17252A;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(43, 122, 120, 0.2);
}

.btn-secondary {
  background-color: transparent;
  color: #2B7A78;
  border-color: #2B7A78;
}

.btn-secondary:hover {
  background-color: #2B7A78;
  color: #FEFFFF;
  transform: translateY(-2px);
}

/* PAGE HERO */
.page-hero {
  background: linear-gradient(135deg, #f8f9fa 0%, #e8ecef 100%);
  padding: 60px 20px;
  margin-bottom: 60px;
  text-align: center;
}

.breadcrumb {
  font-size: 14px;
  margin-bottom: 16px;
  color: #636e72;
}

.breadcrumb a {
  color: #2B7A78;
}

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

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

/* VALUE PROPOSITION SECTION */
.value-proposition {
  padding: 60px 20px;
  text-align: center;
}

.value-proposition h2 {
  font-size: 36px;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 18px;
  color: #636e72;
  margin-bottom: 48px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.benefits-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 40px;
}

.benefit-card {
  background-color: #FEFFFF;
  padding: 32px 24px;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  flex: 1 1 calc(25% - 24px);
  min-width: 200px;
  max-width: 280px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid #e8ecef;
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(43, 122, 120, 0.12);
}

.benefit-card h3 {
  color: #2B7A78;
  font-size: 20px;
  margin-bottom: 12px;
}

.benefit-card p {
  font-size: 15px;
  color: #636e72;
  line-height: 1.6;
}

/* SERVICES OVERVIEW */
.services-overview {
  padding: 60px 20px;
  background-color: #f8f9fa;
  text-align: center;
}

.services-overview h2 {
  font-size: 36px;
  margin-bottom: 48px;
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-bottom: 40px;
}

.service-card {
  background-color: #FEFFFF;
  padding: 32px;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  max-width: 360px;
  text-align: left;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border: 1px solid #e8ecef;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(43, 122, 120, 0.12);
}

.service-card h3 {
  color: #17252A;
  font-size: 22px;
  margin-bottom: 12px;
}

.service-card p {
  font-size: 15px;
  color: #636e72;
  line-height: 1.6;
  flex-grow: 1;
}

.service-card .price {
  font-size: 28px;
  font-weight: 700;
  color: #2B7A78;
  margin-top: 16px;
  font-family: 'Montserrat', sans-serif;
}

/* TESTIMONIALS SECTION */
.testimonials {
  padding: 60px 20px;
  background-color: #FEFFFF;
  text-align: center;
}

.testimonials h2 {
  font-size: 36px;
  margin-bottom: 48px;
}

.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.testimonial-card {
  background-color: #f8f9fa;
  padding: 32px;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  flex: 1 1 calc(50% - 24px);
  min-width: 300px;
  max-width: 500px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-left: 4px solid #2B7A78;
}

.testimonial-card p {
  font-size: 16px;
  color: #17252A;
  line-height: 1.7;
  font-style: italic;
}

.testimonial-card strong {
  color: #2B7A78;
  font-weight: 600;
  font-style: normal;
  font-size: 15px;
}

/* ROUTES SECTION */
.routes-section {
  padding: 60px 20px;
}

.routes-section h2 {
  font-size: 36px;
  margin-bottom: 40px;
  text-align: center;
}

.routes-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.route-card {
  background-color: #FEFFFF;
  padding: 32px;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  max-width: 360px;
  transition: all 0.3s ease;
  border: 1px solid #e8ecef;
}

.route-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(43, 122, 120, 0.12);
}

.route-card h3 {
  color: #17252A;
  font-size: 22px;
  margin-bottom: 12px;
}

.route-card p {
  font-size: 15px;
  color: #636e72;
}

/* SERVICES DETAILED */
.services-detailed {
  padding: 60px 20px;
}

.service-detail {
  background-color: #FEFFFF;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  margin-bottom: 32px;
  border-left: 4px solid #2B7A78;
}

.service-detail h2 {
  font-size: 28px;
  margin-bottom: 16px;
  color: #17252A;
}

.service-detail .price {
  font-size: 32px;
  font-weight: 700;
  color: #2B7A78;
  margin-bottom: 16px;
  font-family: 'Montserrat', sans-serif;
}

.service-detail p {
  font-size: 16px;
  margin-bottom: 20px;
}

.service-detail ul {
  list-style: none;
  margin-bottom: 24px;
}

.service-detail ul li {
  padding: 8px 0 8px 28px;
  position: relative;
  color: #636e72;
  font-size: 15px;
}

.service-detail ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #2B7A78;
  font-weight: bold;
  font-size: 18px;
}

/* DESTINATIONS SECTION */
.destinations-section {
  padding: 60px 20px;
}

.destinations-section h2 {
  font-size: 36px;
  margin-bottom: 40px;
  text-align: center;
}

.destinations-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.destination-card {
  background-color: #FEFFFF;
  padding: 32px;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  flex: 1 1 calc(25% - 24px);
  min-width: 240px;
  max-width: 280px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid #e8ecef;
}

.destination-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(43, 122, 120, 0.12);
}

.destination-card h3 {
  color: #17252A;
  font-size: 20px;
  margin-bottom: 12px;
}

.destination-card p {
  font-size: 14px;
  color: #636e72;
}

/* REGIONS SECTION */
.regions-section {
  padding: 60px 20px;
  background-color: #f8f9fa;
}

.regions-section h2 {
  font-size: 36px;
  margin-bottom: 40px;
  text-align: center;
}

.region-card {
  background-color: #FEFFFF;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  margin-bottom: 32px;
  border-left: 4px solid #2B7A78;
}

.region-card h3 {
  color: #17252A;
  font-size: 26px;
  margin-bottom: 16px;
}

.region-card p {
  font-size: 16px;
  margin-bottom: 12px;
}

.region-card strong {
  color: #2B7A78;
  font-weight: 600;
}

/* ABOUT STORY */
.about-story {
  padding: 60px 20px;
  text-align: center;
}

.about-story h2 {
  font-size: 36px;
  margin-bottom: 24px;
}

.about-story p {
  font-size: 17px;
  max-width: 800px;
  margin: 0 auto 24px;
  line-height: 1.8;
}

/* STATS SECTION */
.stats-section {
  padding: 60px 20px;
  background-color: #f8f9fa;
  text-align: center;
}

.stats-section h2 {
  font-size: 36px;
  margin-bottom: 48px;
}

.stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.stat-card {
  background-color: #FEFFFF;
  padding: 40px 32px;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  flex: 1 1 calc(25% - 24px);
  min-width: 200px;
  max-width: 260px;
  border-top: 4px solid #2B7A78;
}

.stat-card h3 {
  font-size: 48px;
  color: #2B7A78;
  margin-bottom: 8px;
  font-weight: 700;
}

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

/* PHILOSOPHY SECTION */
.philosophy-section {
  padding: 60px 20px;
  text-align: center;
}

.philosophy-section h2 {
  font-size: 36px;
  margin-bottom: 32px;
}

.philosophy-section ul {
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}

.philosophy-section ul li {
  padding: 16px 0 16px 32px;
  position: relative;
  font-size: 17px;
  line-height: 1.7;
  color: #636e72;
  border-bottom: 1px solid #e8ecef;
}

.philosophy-section ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: #2B7A78;
  font-weight: bold;
  font-size: 20px;
}

.philosophy-section ul li strong {
  color: #17252A;
  font-weight: 600;
}

/* BLOG SECTION */
.blog-section {
  padding: 60px 20px;
}

.featured-post {
  background-color: #f8f9fa;
  padding: 48px;
  border-radius: 8px;
  margin-bottom: 48px;
  border-left: 4px solid #2B7A78;
}

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

.featured-post h2 {
  font-size: 32px;
  margin-bottom: 16px;
}

.featured-post p {
  font-size: 17px;
  color: #636e72;
}

.blog-section h2 {
  font-size: 36px;
  margin-bottom: 32px;
  text-align: center;
}

.blog-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.blog-card {
  background-color: #FEFFFF;
  padding: 32px;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  max-width: 360px;
  transition: all 0.3s ease;
  border: 1px solid #e8ecef;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(43, 122, 120, 0.12);
}

.blog-card h3 {
  color: #17252A;
  font-size: 20px;
  margin-bottom: 12px;
}

.blog-card p {
  font-size: 15px;
  color: #636e72;
}

/* CONTACT SECTION */
.contact-section {
  padding: 60px 20px;
}

.contact-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-bottom: 48px;
}

.contact-method {
  background-color: #f8f9fa;
  padding: 32px;
  border-radius: 8px;
  flex: 1 1 calc(33.333% - 24px);
  min-width: 250px;
  max-width: 350px;
  text-align: center;
  border-top: 4px solid #2B7A78;
}

.contact-method h3 {
  color: #17252A;
  font-size: 20px;
  margin-bottom: 12px;
}

.contact-method p {
  font-size: 15px;
  color: #636e72;
}

.contact-info {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.contact-info h2 {
  font-size: 32px;
  margin-bottom: 16px;
}

.contact-info p {
  font-size: 17px;
  margin-bottom: 16px;
}

/* FAQ SECTION */
.faq-section {
  padding: 60px 20px;
  background-color: #f8f9fa;
}

.faq-section h2 {
  font-size: 36px;
  margin-bottom: 40px;
  text-align: center;
}

.faq-item {
  background-color: #FEFFFF;
  padding: 32px;
  border-radius: 8px;
  margin-bottom: 20px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  border-left: 4px solid #2B7A78;
}

.faq-item h3 {
  color: #17252A;
  font-size: 20px;
  margin-bottom: 12px;
}

.faq-item p {
  font-size: 16px;
  color: #636e72;
}

/* CTA SECTION */
.cta-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #2B7A78 0%, #17252A 100%);
  text-align: center;
  color: #FEFFFF;
}

.cta-section h2 {
  font-size: 36px;
  color: #FEFFFF;
  margin-bottom: 16px;
}

.cta-section p {
  font-size: 18px;
  color: #FEFFFF;
  margin-bottom: 32px;
  opacity: 0.9;
}

.cta-section .btn-primary {
  background-color: #FEFFFF;
  color: #2B7A78;
  border-color: #FEFFFF;
}

.cta-section .btn-primary:hover {
  background-color: transparent;
  color: #FEFFFF;
  border-color: #FEFFFF;
}

/* LEGAL PAGE */
.legal-page {
  padding: 60px 20px;
  max-width: 900px;
  margin: 0 auto;
}

.legal-page h1 {
  font-size: 42px;
  margin-bottom: 32px;
  color: #17252A;
}

.legal-page h2 {
  font-size: 28px;
  margin-top: 40px;
  margin-bottom: 16px;
  color: #17252A;
}

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

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

.legal-page ul {
  list-style: disc;
  padding-left: 32px;
  margin-bottom: 24px;
}

.legal-page ul li {
  padding: 6px 0;
  color: #636e72;
  font-size: 16px;
}

/* THANK YOU SECTION */
.thank-you-section {
  padding: 80px 20px;
  text-align: center;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.thank-you-content h1 {
  font-size: 42px;
  color: #2B7A78;
  margin-bottom: 24px;
}

.thank-you-content h2 {
  font-size: 28px;
  margin-top: 40px;
  margin-bottom: 20px;
}

.thank-you-content ol {
  list-style: decimal;
  padding-left: 32px;
  text-align: left;
  max-width: 500px;
  margin: 24px auto;
}

.thank-you-content ol li {
  padding: 8px 0;
  color: #636e72;
  font-size: 17px;
}

.suggestions {
  margin: 48px 0;
  padding: 32px;
  background-color: #f8f9fa;
  border-radius: 8px;
}

.suggestions h2 {
  font-size: 24px;
  margin-bottom: 20px;
}

.suggestions ul {
  list-style: none;
}

.suggestions ul li {
  padding: 12px 0;
}

.suggestions a {
  font-size: 17px;
  color: #2B7A78;
  font-weight: 500;
}

.social-proof {
  margin: 32px 0;
  padding: 24px;
  background-color: #f8f9fa;
  border-radius: 8px;
}

.social-proof h2 {
  font-size: 24px;
  margin-bottom: 16px;
}

.social-proof p {
  font-size: 16px;
  line-height: 1.8;
}

.back-home {
  margin-top: 40px;
}

.next-steps {
  margin: 40px 0;
  text-align: center;
}

.next-steps h2 {
  font-size: 28px;
  margin-bottom: 24px;
}

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

/* FOOTER */
footer {
  background-color: #17252A;
  color: #FEFFFF;
  padding: 60px 20px 24px;
  margin-top: 60px;
}

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

.footer-col {
  flex: 1 1 calc(25% - 32px);
  min-width: 200px;
}

.footer-col h4 {
  color: #FEFFFF;
  font-size: 18px;
  margin-bottom: 16px;
  font-weight: 600;
}

.footer-col p {
  color: rgba(254, 255, 255, 0.8);
  font-size: 14px;
  line-height: 1.8;
}

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

.footer-col nav a {
  color: rgba(254, 255, 255, 0.8);
  font-size: 14px;
  transition: all 0.3s ease;
}

.footer-col nav a:hover {
  color: #FEFFFF;
  padding-left: 4px;
}

.copyright {
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid rgba(254, 255, 255, 0.2);
  color: rgba(254, 255, 255, 0.6);
  font-size: 14px;
}

/* COOKIE CONSENT BANNER */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #17252A;
  color: #FEFFFF;
  padding: 24px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
  z-index: 999;
  display: none;
  animation: slideUp 0.4s ease;
}

.cookie-consent.active {
  display: block;
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
  }
  to {
    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 60%;
  min-width: 300px;
}

.cookie-text p {
  color: rgba(254, 255, 255, 0.9);
  font-size: 15px;
  margin-bottom: 0;
}

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

.cookie-buttons button {
  padding: 10px 24px;
  border-radius: 6px;
  border: 2px solid transparent;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Montserrat', sans-serif;
}

#acceptCookies {
  background-color: #2B7A78;
  color: #FEFFFF;
  border-color: #2B7A78;
}

#acceptCookies:hover {
  background-color: #1f5856;
}

#rejectCookies {
  background-color: transparent;
  color: #FEFFFF;
  border-color: rgba(254, 255, 255, 0.3);
}

#rejectCookies:hover {
  border-color: #FEFFFF;
}

#cookieSettings {
  background-color: transparent;
  color: #FEFFFF;
  border: none;
  text-decoration: underline;
  padding: 10px 16px;
}

/* 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.active {
  display: flex;
}

.cookie-modal-content {
  background-color: #FEFFFF;
  border-radius: 8px;
  padding: 40px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  position: relative;
  animation: modalSlide 0.3s ease;
}

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

.cookie-modal h2 {
  color: #17252A;
  font-size: 28px;
  margin-bottom: 24px;
}

.cookie-category {
  margin-bottom: 24px;
  padding: 20px;
  background-color: #f8f9fa;
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

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

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

.cookie-category p {
  font-size: 14px;
  color: #636e72;
  margin-top: 8px;
}

.cookie-toggle {
  position: relative;
  width: 50px;
  height: 26px;
}

.cookie-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.cookie-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: 0.3s;
  border-radius: 26px;
}

.cookie-slider:before {
  position: absolute;
  content: '';
  height: 18px;
  width: 18px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: 0.3s;
  border-radius: 50%;
}

input:checked + .cookie-slider {
  background-color: #2B7A78;
}

input:checked + .cookie-slider:before {
  transform: translateX(24px);
}

input:disabled + .cookie-slider {
  background-color: #2B7A78;
  opacity: 0.5;
  cursor: not-allowed;
}

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

.cookie-modal-buttons button {
  flex: 1;
  padding: 12px 24px;
  border-radius: 6px;
  border: 2px solid transparent;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Montserrat', sans-serif;
  min-width: 140px;
}

#savePreferences {
  background-color: #2B7A78;
  color: #FEFFFF;
  border-color: #2B7A78;
}

#savePreferences:hover {
  background-color: #17252A;
}

#closeModal {
  background-color: transparent;
  color: #17252A;
  border-color: #e8ecef;
}

#closeModal:hover {
  border-color: #17252A;
}

/* RESPONSIVE DESIGN - MOBILE FIRST */
@media (max-width: 768px) {
  /* Hide desktop navigation on mobile */
  .main-nav {
    display: none;
  }
  
  /* Show mobile menu toggle */
  .mobile-menu-toggle {
    display: block;
  }
  
  /* Show mobile menu when toggled */
  .mobile-menu {
    display: block;
  }
  
  /* Typography adjustments */
  h1 {
    font-size: 32px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  .hero h1 {
    font-size: 36px;
  }
  
  .hero-subtitle {
    font-size: 17px;
  }
  
  .page-hero h1 {
    font-size: 32px;
  }
  
  /* Adjust container padding */
  .container {
    padding: 0 16px;
  }
  
  /* Section spacing */
  .section {
    padding: 40px 16px;
    margin-bottom: 40px;
  }
  
  .hero {
    padding: 60px 16px;
  }
  
  .page-hero {
    padding: 40px 16px;
  }
  
  /* Hero CTA buttons stack vertically */
  .hero-cta {
    flex-direction: column;
    gap: 12px;
  }
  
  .hero-cta .btn {
    width: 100%;
    max-width: 300px;
  }
  
  /* Grid layouts adjust to single column */
  .benefits-grid,
  .services-grid,
  .testimonials-grid,
  .routes-grid,
  .destinations-grid,
  .stats-grid,
  .blog-grid,
  .contact-methods {
    flex-direction: column;
    gap: 20px;
  }
  
  .benefit-card,
  .service-card,
  .testimonial-card,
  .route-card,
  .destination-card,
  .stat-card,
  .blog-card,
  .contact-method {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  /* Footer adjustments */
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }
  
  .footer-col {
    flex: 1 1 100%;
    text-align: center;
  }
  
  /* Cookie consent stacks vertically */
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-text {
    flex: 1 1 100%;
  }
  
  .cookie-buttons {
    justify-content: center;
    width: 100%;
  }
  
  .cookie-buttons button {
    flex: 1 1 auto;
  }
  
  /* Modal adjustments */
  .cookie-modal-content {
    padding: 24px;
    margin: 20px;
  }
  
  .cookie-modal h2 {
    font-size: 24px;
  }
  
  .cookie-modal-buttons {
    flex-direction: column;
  }
  
  .cookie-modal-buttons button {
    width: 100%;
  }
  
  /* Service detail adjustments */
  .service-detail,
  .region-card,
  .faq-item {
    padding: 24px;
  }
  
  /* Featured post */
  .featured-post {
    padding: 24px;
  }
  
  /* Thank you section */
  .thank-you-content ol {
    padding-left: 24px;
  }
  
  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .cta-buttons .btn {
    width: 100%;
  }
}

/* TABLET RESPONSIVE */
@media (min-width: 769px) and (max-width: 1024px) {
  .benefits-grid .benefit-card {
    flex: 1 1 calc(50% - 24px);
  }
  
  .services-grid .service-card {
    flex: 1 1 calc(50% - 24px);
  }
  
  .destinations-grid .destination-card {
    flex: 1 1 calc(33.333% - 24px);
  }
  
  .stats-grid .stat-card {
    flex: 1 1 calc(50% - 24px);
  }
}

/* ACCESSIBILITY & FOCUS STATES */
button:focus,
a:focus,
input:focus {
  outline: 2px solid #2B7A78;
  outline-offset: 2px;
}

/* SMOOTH SCROLLING */
html {
  scroll-behavior: smooth;
}

/* SELECTION STYLING */
::selection {
  background-color: #2B7A78;
  color: #FEFFFF;
}

/* LOADING ANIMATION FOR IMAGES */
img {
  animation: fadeIn 0.6s ease-in;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* PRINT STYLES */
@media print {
  header,
  footer,
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-consent,
  .cookie-modal {
    display: none !important;
  }
  
  body {
    font-size: 12pt;
    color: #000;
  }
  
  a {
    color: #000;
    text-decoration: underline;
  }
}