/* ========================================
   PRISTINE FLOAT - MINIMALIST LUXURY CSS
   Design Style: Minimalist - Clean, spacious, elegant
   ======================================== */

/* ========================================
   CSS RESET & BASE STYLES
   ======================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 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-position: inside;
}

/* ========================================
   TYPOGRAPHY - MINIMALIST APPROACH
   ======================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 400;
  line-height: 1.2;
  color: #0B4F6C;
  margin-bottom: 24px;
}

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

h2 {
  font-size: 36px;
  letter-spacing: -0.01em;
}

h3 {
  font-size: 24px;
}

h4 {
  font-size: 20px;
}

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

blockquote {
  font-style: italic;
  font-size: 18px;
  color: #555555;
  border-left: 3px solid #01BAEF;
  padding-left: 24px;
  margin: 32px 0;
}

strong {
  font-weight: 700;
  color: #0B4F6C;
}

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

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

/* ========================================
   HEADER - MINIMALIST CLEAN DESIGN
   ======================================== */
header {
  background-color: #FFFFFF;
  border-bottom: 1px solid #E5E5E5;
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 20px 0;
}

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

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

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

.main-nav a {
  font-size: 14px;
  font-weight: 400;
  color: #333333;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 8px 0;
  position: relative;
}

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

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

/* ========================================
   MOBILE MENU - HAMBURGER NAVIGATION
   ======================================== */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 24px;
  z-index: 200;
  background-color: #0B4F6C;
  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: #094461;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background-color: #FFFFFF;
  z-index: 150;
  transition: right 0.4s ease;
  box-shadow: -2px 0 8px rgba(0, 0, 0, 0.1);
  padding: 80px 32px 32px;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 32px;
  color: #333333;
  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: #333333;
  padding: 12px 0;
  border-bottom: 1px solid #F0F0F0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ========================================
   HERO SECTIONS - MINIMALIST SPACIOUS
   ======================================== */
.hero {
  background: linear-gradient(135deg, #0B4F6C 0%, #094461 100%);
  color: #FFFFFF;
  padding: 120px 0 80px;
  text-align: center;
}

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

.hero h1 {
  color: #FFFFFF;
  font-size: 56px;
  margin-bottom: 24px;
  font-weight: 300;
}

.hero-subtitle {
  font-size: 20px;
  margin-bottom: 40px;
  color: #E8F4F8;
  line-height: 1.6;
}

.page-hero {
  background-color: #F8F9FA;
  padding: 80px 0;
  text-align: center;
  border-bottom: 1px solid #E5E5E5;
}

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

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

/* ========================================
   BUTTONS - MINIMALIST CLEAN STYLE
   ======================================== */
.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.btn {
  display: inline-block;
  padding: 14px 32px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  border-radius: 2px;
}

.btn-primary {
  background-color: #0B4F6C;
  color: #FFFFFF;
  border: 2px solid #0B4F6C;
}

.btn-primary:hover {
  background-color: transparent;
  color: #4CAF50;
}

.btn-secondary {
  background-color: transparent;
  color: #FFFFFF;
  border: 2px solid #FFFFFF;
}

.btn-secondary:hover {
  background-color: #FFFFFF;
  color: #0B4F6C;
}

.btn-link {
  color: #01BAEF;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  position: relative;
  display: inline-block;
  padding-bottom: 4px;
}

.btn-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #01BAEF;
}

.btn-link:hover {
  color: #0B4F6C;
}

.btn-link:hover::after {
  background-color: #0B4F6C;
}

/* ========================================
   TRUST ELEMENTS - MINIMALIST
   ======================================== */
.trust-badge {
  font-size: 14px;
  color: #E8F4F8;
  font-weight: 400;
}

.badge {
  display: inline-block;
  padding: 8px 16px;
  background-color: #F4A261;
  color: #FFFFFF;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 16px;
  border-radius: 2px;
}

.featured-badge {
  display: inline-block;
  padding: 8px 16px;
  background-color: #F4A261;
  color: #FFFFFF;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
  border-radius: 2px;
}

/* ========================================
   CARDS & GRIDS - FLEXBOX LAYOUTS ONLY
   ======================================== */
.benefits-grid,
.services-grid,
.tours-grid,
.regions-grid,
.team-grid,
.values-grid,
.methods-grid,
.actions-grid,
.highlights-grid,
.stats-grid,
.platforms,
.included-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 40px;
}

.benefit,
.service-card,
.tour-card,
.region-card,
.team-member,
.value,
.method,
.action,
.highlight,
.stat,
.platform,
.included-item {
  flex: 1 1 300px;
  padding: 40px 32px;
  background-color: #FFFFFF;
  border: 1px solid #E5E5E5;
  transition: all 0.3s ease;
  position: relative;
}

.benefit:hover,
.service-card:hover,
.tour-card:hover,
.region-card:hover,
.team-member:hover,
.action:hover {
  box-shadow: 0 8px 24px rgba(11, 79, 108, 0.08);
  transform: translateY(-4px);
}

.service-card h3,
.tour-card h3,
.region-card h3 {
  color: #0B4F6C;
  font-size: 20px;
  margin-bottom: 12px;
}

.service-card p,
.tour-card p,
.region-card p {
  color: #666666;
  font-size: 14px;
  margin-bottom: 8px;
}

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

.tour-card ul {
  list-style: none;
  padding-left: 0;
  margin: 16px 0;
}

.tour-card ul li {
  padding: 6px 0;
  color: #666666;
  font-size: 14px;
  border-bottom: 1px solid #F0F0F0;
}

.tour-card ul li:last-child {
  border-bottom: none;
}

/* ========================================
   STATS & METRICS - FLEXBOX
   ======================================== */
.stats-bar {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 48px;
  padding: 32px 0;
  border-top: 1px solid #E5E5E5;
  border-bottom: 1px solid #E5E5E5;
}

.stats-bar span {
  font-size: 14px;
  color: #666666;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}

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

.trust-metrics span {
  font-size: 14px;
  color: #666666;
  font-weight: 600;
}

.stats {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 32px;
  padding: 24px 0;
}

.stats span {
  font-size: 14px;
  color: #666666;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.stat {
  text-align: center;
  padding: 24px;
}

.stat strong {
  display: block;
  font-size: 36px;
  color: #0B4F6C;
  margin-bottom: 8px;
  font-weight: 300;
}

.stat p {
  font-size: 12px;
  color: #666666;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ========================================
   TESTIMONIALS - READABLE CONTRAST
   ======================================== */
.testimonials {
  background-color: #F8F9FA;
  padding: 80px 0;
  text-align: center;
}

.testimonial-card {
  background-color: #FFFFFF;
  padding: 40px;
  margin-bottom: 32px;
  border: 1px solid #E5E5E5;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.testimonial-card p {
  font-size: 18px;
  line-height: 1.8;
  color: #333333;
  font-style: italic;
  margin-bottom: 24px;
}

.testimonial-card .author {
  font-size: 14px;
  font-weight: 700;
  color: #0B4F6C;
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.testimonial-featured {
  background-color: #FFFFFF;
  padding: 48px;
  margin-bottom: 40px;
  border: 1px solid #E5E5E5;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.testimonial-featured blockquote {
  font-size: 20px;
  line-height: 1.8;
  color: #1a1a1a;
  border-left: 3px solid #0B4F6C;
  padding-left: 32px;
  margin-bottom: 24px;
}

.testimonial-featured .author {
  font-size: 16px;
  font-weight: 700;
  color: #0B4F6C;
  margin-bottom: 4px;
}

.testimonial-featured .location,
.testimonial-featured .tour {
  font-size: 14px;
  color: #666666;
  margin-bottom: 4px;
}

.rating {
  color: #F4A261;
  font-size: 18px;
  margin-top: 16px;
  letter-spacing: 2px;
}

.testimonials-list {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 40px;
}

.testimonials-list .testimonial-card {
  flex: 1 1 calc(50% - 16px);
  min-width: 300px;
  text-align: left;
}

.mini-testimonials {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 800px;
  margin: 32px auto 0;
}

.mini-testimonials blockquote {
  background-color: #FFFFFF;
  padding: 24px;
  border-left: 3px solid #01BAEF;
  font-size: 16px;
  color: #333333;
}

/* ========================================
   FEATURED CONTENT SECTIONS
   ======================================== */
.value-proposition,
.featured-services,
.mission-values,
.differentiators,
.whats-included,
.review-highlights {
  padding: 80px 0;
  text-align: center;
}

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

.tagline {
  font-size: 18px;
  color: #666666;
  font-style: italic;
  margin-bottom: 24px;
}

/* ========================================
   TEXT + IMAGE SECTIONS - FLEXBOX ALIGNED
   ======================================== */
.about-story,
.featured-tour,
.destination-detail {
  padding: 80px 0;
}

.tour-details {
  background-color: #F8F9FA;
  padding: 32px;
  margin: 32px 0;
  border-left: 3px solid #0B4F6C;
}

.tour-details p {
  margin-bottom: 12px;
}

/* ========================================
   TIMELINE - FLEXBOX LAYOUT
   ======================================== */
.timeline {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: 40px 0;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.milestone {
  padding: 24px;
  background-color: #F8F9FA;
  border-left: 3px solid #01BAEF;
  font-size: 16px;
  color: #333333;
}

.milestone strong {
  display: block;
  font-size: 24px;
  color: #0B4F6C;
  margin-bottom: 8px;
}

/* ========================================
   VALUES & CORE PRINCIPLES
   ======================================== */
.core-values {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 48px;
}

.value-item {
  flex: 1 1 calc(25% - 24px);
  min-width: 200px;
  text-align: center;
  padding: 32px 16px;
}

.value-item h4 {
  font-size: 18px;
  color: #0B4F6C;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.value-item p {
  font-size: 14px;
  color: #666666;
}

.diff-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 800px;
  margin: 40px auto 0;
}

.diff-item {
  padding: 32px;
  background-color: #F8F9FA;
  border-left: 3px solid #F4A261;
}

.diff-item h3 {
  font-size: 20px;
  color: #0B4F6C;
  margin-bottom: 12px;
}

.diff-item p {
  font-size: 16px;
  color: #666666;
}

/* ========================================
   GALLERY - FLEXBOX MASONRY STYLE
   ======================================== */
.gallery-categories {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.category-btn {
  padding: 10px 20px;
  background-color: #FFFFFF;
  border: 1px solid #E5E5E5;
  color: #333333;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.category-btn:hover,
.category-btn.active {
  background-color: #0B4F6C;
  color: #FFFFFF;
  border-color: #0B4F6C;
}

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

.gallery-item {
  flex: 1 1 calc(33.333% - 16px);
  min-width: 280px;
  aspect-ratio: 4/3;
  position: relative;
}

.image-placeholder {
  width: 100%;
  height: 100%;
  background-color: #F8F9FA;
  border: 1px solid #E5E5E5;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 24px;
  text-align: center;
  transition: all 0.3s ease;
}

.image-placeholder:hover {
  background-color: #E8F4F8;
}

.image-placeholder p {
  font-size: 14px;
  color: #666666;
}

.photo-author {
  font-size: 12px;
  color: #999999;
  margin-top: 8px;
}

.hashtag {
  font-size: 18px;
  color: #01BAEF;
  margin: 32px 0 16px;
  font-weight: 600;
}

/* ========================================
   VIDEO SECTION
   ======================================== */
.video-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 40px;
}

.video-item {
  flex: 1 1 calc(33.333% - 22px);
  min-width: 300px;
}

.video-placeholder {
  width: 100%;
  aspect-ratio: 16/9;
  background-color: #F8F9FA;
  border: 1px solid #E5E5E5;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
  text-align: center;
}

.video-placeholder p {
  font-size: 16px;
  color: #666666;
}

/* ========================================
   CONTACT & FORMS
   ======================================== */
.contact-methods {
  padding: 60px 0;
}

.form-note {
  background-color: #FFF8E1;
  border-left: 3px solid #F4A261;
  padding: 24px;
  margin: 32px 0;
}

.form-note p {
  font-size: 14px;
  color: #333333;
  margin-bottom: 8px;
}

.form-fields-display {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 600px;
  margin: 32px auto;
}

.field-item {
  padding: 16px;
  background-color: #F8F9FA;
  border: 1px solid #E5E5E5;
  font-size: 14px;
  color: #666666;
}

.directions h3 {
  font-size: 18px;
  color: #0B4F6C;
  margin: 24px 0 16px;
}

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

.directions ul li {
  padding: 8px 0;
  border-bottom: 1px solid #F0F0F0;
}

/* ========================================
   FAQ SECTION
   ======================================== */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 800px;
  margin: 40px auto 0;
}

.faq-item {
  padding: 24px;
  background-color: #F8F9FA;
  border-left: 3px solid #01BAEF;
}

.faq-item h3 {
  font-size: 16px;
  color: #0B4F6C;
  margin-bottom: 8px;
}

.faq-item p {
  font-size: 14px;
  color: #666666;
  margin-bottom: 0;
}

/* ========================================
   NEWSLETTER
   ======================================== */
.newsletter {
  background-color: #F8F9FA;
  padding: 60px 0;
  text-align: center;
}

.newsletter ul {
  list-style: none;
  padding-left: 0;
  max-width: 600px;
  margin: 24px auto;
  text-align: left;
}

.newsletter ul li {
  padding: 8px 0;
  font-size: 14px;
  color: #666666;
  border-bottom: 1px solid #E5E5E5;
}

/* ========================================
   LEGAL PAGES - CONTENT WRAPPER
   ======================================== */
.legal-content {
  padding: 60px 0;
}

.content-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.content-wrapper h2 {
  margin-top: 40px;
  margin-bottom: 16px;
}

.content-wrapper h3 {
  margin-top: 32px;
  margin-bottom: 12px;
  font-size: 20px;
}

.content-wrapper ul,
.content-wrapper ol {
  margin: 16px 0;
  padding-left: 24px;
}

.content-wrapper li {
  margin-bottom: 8px;
  color: #666666;
}

/* ========================================
   THANK YOU PAGE
   ======================================== */
.thank-you-hero {
  padding: 100px 0 60px;
  text-align: center;
  background-color: #F8F9FA;
}

.success-icon {
  width: 80px;
  height: 80px;
  background-color: #4CAF50;
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  margin: 0 auto 24px;
}

.subtitle {
  font-size: 18px;
  color: #666666;
}

.confirmation {
  padding: 60px 0;
}

.main-message {
  font-size: 20px;
  color: #0B4F6C;
  font-weight: 600;
  text-align: center;
  margin-bottom: 32px;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 700px;
  margin: 32px auto;
}

.step {
  padding: 20px;
  background-color: #F8F9FA;
  border-left: 3px solid #01BAEF;
  font-size: 16px;
}

.note {
  font-size: 14px;
  color: #999999;
  font-style: italic;
}

/* ========================================
   CTA SECTIONS
   ======================================== */
.cta,
.cta-final {
  background-color: #0B4F6C;
  color: #FFFFFF;
  padding: 80px 0;
  text-align: center;
}

.cta h2,
.cta-final h2 {
  color: #FFFFFF;
  margin-bottom: 16px;
}

.cta p,
.cta-final p {
  color: #E8F4F8;
  font-size: 18px;
  margin-bottom: 32px;
}

.urgency {
  font-size: 14px;
  color: #E8F4F8;
  margin-top: 24px;
  font-style: italic;
}

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

/* ========================================
   FOOTER - CLEAN MINIMALIST
   ======================================== */
footer {
  background-color: #1a1a1a;
  color: #CCCCCC;
  padding: 60px 0 24px;
}

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

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

.footer-section h4 {
  color: #FFFFFF;
  font-size: 16px;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

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

.footer-section img {
  height: 50px;
  margin-bottom: 16px;
}

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

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

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

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

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

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

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

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

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

.cookie-btn {
  padding: 10px 20px;
  font-size: 13px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 2px;
}

.cookie-accept {
  background-color: #0B4F6C;
  color: #FFFFFF;
}

.cookie-accept:hover {
  background-color: #094461;
}

.cookie-reject {
  background-color: #FFFFFF;
  color: #0B4F6C;
  border: 1px solid #0B4F6C;
}

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

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

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

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

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

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

.cookie-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #333333;
}

.cookie-category {
  padding: 16px 0;
  border-bottom: 1px solid #E5E5E5;
}

.cookie-category h4 {
  font-size: 16px;
  color: #0B4F6C;
  margin-bottom: 8px;
}

.cookie-category p {
  font-size: 14px;
  color: #666666;
  margin-bottom: 12px;
}

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

.cookie-toggle input[type="checkbox"] {
  width: 20px;
  height: 20px;
}

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

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

/* Tablet screens */
@media (max-width: 768px) {
  /* Show mobile menu button */
  .mobile-menu-toggle {
    display: block;
  }
  
  /* Hide desktop navigation */
  .main-nav {
    display: none;
  }
  
  /* Typography adjustments */
  h1 {
    font-size: 36px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  .hero h1 {
    font-size: 40px;
  }
  
  /* Section padding */
  .section {
    padding: 40px 0;
    margin-bottom: 60px;
  }
  
  .hero {
    padding: 80px 0 60px;
  }
  
  .page-hero {
    padding: 60px 0;
  }
  
  /* Grid adjustments */
  .benefits-grid,
  .services-grid,
  .tours-grid,
  .regions-grid,
  .team-grid,
  .values-grid {
    gap: 24px;
  }
  
  .benefit,
  .service-card,
  .tour-card,
  .region-card,
  .team-member,
  .value {
    flex: 1 1 100%;
  }
  
  .gallery-item {
    flex: 1 1 calc(50% - 12px);
  }
  
  .video-item {
    flex: 1 1 100%;
  }
  
  /* Footer */
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }
  
  /* Cookie consent */
  .cookie-content {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .cookie-buttons {
    width: 100%;
  }
  
  .cookie-btn {
    flex: 1;
  }
}

/* Mobile screens */
@media (max-width: 480px) {
  /* Container padding */
  .container {
    padding: 0 16px;
  }
  
  /* Typography */
  h1 {
    font-size: 28px;
  }
  
  h2 {
    font-size: 24px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  .hero h1 {
    font-size: 32px;
  }
  
  .hero-subtitle {
    font-size: 16px;
  }
  
  /* Sections */
  .section {
    padding: 32px 0;
    margin-bottom: 48px;
  }
  
  /* Cards */
  .benefit,
  .service-card,
  .tour-card,
  .testimonial-card,
  .testimonial-featured {
    padding: 24px;
  }
  
  /* Gallery */
  .gallery-item {
    flex: 1 1 100%;
  }
  
  /* Stats bar */
  .stats-bar {
    flex-direction: column;
    gap: 16px;
  }
  
  /* CTA buttons */
  .cta-buttons {
    flex-direction: column;
  }
  
  .btn {
    width: 100%;
  }
  
  /* Value items */
  .value-item {
    flex: 1 1 100%;
  }
  
  /* Cookie modal */
  .cookie-modal-content {
    padding: 24px;
  }
}

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

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

/* Smooth scroll */
html {
  scroll-padding-top: 80px;
}

/* Focus states for accessibility */
*:focus {
  outline: 2px solid #01BAEF;
  outline-offset: 2px;
}

button:focus,
a:focus {
  outline: 2px solid #01BAEF;
  outline-offset: 2px;
}

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

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

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

.hidden {
  display: none;
}

/* ========================================
   PRINT STYLES
   ======================================== */
@media print {
  header,
  footer,
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-consent,
  .cta-buttons,
  .btn {
    display: none;
  }
  
  body {
    font-size: 12pt;
    color: #000000;
  }
  
  a {
    text-decoration: underline;
  }
}
section {
  padding: 15px;
}
/* END OF CSS */