/* --------------------------------------------------
   Incis Divid Adventures Minimalist Flexbox CSS
   Brand: Energetic, adventurous, welcoming
   Colors: #174A38 (primary), #F4B942 (secondary), #E0E7EF (accent)
   Fonts: Montserrat (display), Open Sans (body)
   -------------------------------------------------- */

/* 1. CSS RESET & BASE TYPOGRAPHY */
html {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Open Sans', Arial, sans-serif;
  color: #174A38;
  background: #fff;
  line-height: 1.6;
  min-height: 100vh;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #174A38;
  margin-bottom: 16px;
  line-height: 1.2;
}
h1 { font-size: 2.25rem; }
h2 { font-size: 1.5rem; }
h3 { font-size: 1.125rem; }
h4, h5, h6 { font-size: 1rem; }

p, ul, ol, address, span {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  color: #174A38;
  margin-bottom: 16px;
}

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

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

a {
  color: #174A38;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #F4B942;
  outline: none;
}

/* 2. LAYOUT CONTAINERS */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(23,74,56,0.04);
}

/* 3. HEADER & NAVIGATION */
header {
  background: #fff;
  border-bottom: 1px solid #E0E7EF;
  position: sticky;
  top: 0;
  z-index: 100;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 20px 20px 20px;
}
header img {
  height: 44px;
  width: auto;
}
.main-nav {
  display: flex;
  gap: 28px;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  color: #174A38;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s, color 0.2s;
}
.main-nav a:hover, .main-nav a:focus {
  color: #F4B942;
  border-bottom: 2px solid #F4B942;
}
.cta-button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  background: #174A38;
  color: #fff;
  border: none;
  border-radius: 24px;
  padding: 10px 28px;
  margin-left: 20px;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(23,74,56,0.07);
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  outline: none;
  display: inline-block;
  text-align: center;
}
.cta-button:hover, .cta-button:focus {
  background: #F4B942;
  color: #174A38;
  box-shadow: 0 4px 16px rgba(244,185,66,0.10);
}

/* 4. MOBILE NAVIGATION */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: #174A38;
  cursor: pointer;
  margin-left: 16px;
  z-index: 120;
  transition: color 0.2s;
}
.mobile-menu-toggle:focus {
  color: #F4B942;
  outline: none;
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(23,74,56,0.96);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 40px 24px 24px 24px;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(.77,0,.18,1);
  z-index: 200;
  opacity: 0;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  align-self: flex-end;
  margin-bottom: 32px;
  cursor: pointer;
  transition: color 0.2s;
}
.mobile-menu-close:focus {
  color: #F4B942;
  outline: none;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 500;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: color 0.2s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #F4B942;
}

/* 5. HERO SECTIONS */
.hero {
  background: #E0E7EF;
  border-radius: 0 0 24px 24px;
  padding: 60px 0 40px 0;
  margin-bottom: 60px;
  box-shadow: 0 2px 16px rgba(23,74,56,0.04);
}
.hero .container {
  align-items: center;
  justify-content: center;
}
.hero .content-wrapper {
  align-items: center;
  text-align: center;
  gap: 20px;
}
.hero h1 {
  color: #174A38;
  font-size: 2.5rem;
  margin-bottom: 12px;
}
.hero p {
  color: #174A38;
  font-size: 1.125rem;
  margin-bottom: 20px;
}

/* 6. FLEXBOX PATTERNS & CARDS */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(23,74,56,0.04);
  margin-bottom: 20px;
  position: relative;
  padding: 28px 24px;
  flex: 1 1 320px;
  min-width: 260px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 6px 24px rgba(23,74,56,0.10);
  transform: translateY(-2px) scale(1.01);
}

.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: #E0E7EF;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(23,74,56,0.06);
  margin-bottom: 20px;
  min-width: 240px;
  max-width: 420px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.testimonial-card p {
  color: #174A38;
  font-size: 1.05rem;
  margin-bottom: 8px;
}
.testimonial-card span {
  color: #174A38;
  font-size: 0.95rem;
  opacity: 0.7;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  box-shadow: 0 6px 24px rgba(23,74,56,0.10);
  transform: translateY(-2px) scale(1.01);
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(23,74,56,0.04);
  padding: 24px 20px;
  min-width: 220px;
  flex: 1 1 220px;
  margin-bottom: 20px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.feature-item:hover, .feature-item:focus-within {
  box-shadow: 0 6px 24px rgba(23,74,56,0.10);
  transform: translateY(-2px) scale(1.01);
}
.feature-icon {
  font-size: 2rem;
  color: #F4B942;
  margin-bottom: 8px;
}

/* 7. GRIDS FOR SPECIFIC SECTIONS */
.feature-grid, .tour-cards, .destination-tiles, .team-grid, .value-grid, .tour-list, .benefit-grid, .destination-grid, .region-tabs, .image-grid, .tips-list, .faq-accordion, .featured-user-photos {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.tour-card, .destination-tile, .team-member, .value-item, .benefit-item, .destination-card, .region-tab, .image-card, .tip-card, .faq-item, .user-photo-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(23,74,56,0.04);
  padding: 24px 20px;
  flex: 1 1 220px;
  min-width: 220px;
  margin-bottom: 20px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.tour-card:hover, .destination-tile:hover, .team-member:hover, .value-item:hover, .benefit-item:hover, .destination-card:hover, .region-tab:hover, .image-card:hover, .tip-card:hover, .faq-item:hover, .user-photo-card:hover {
  box-shadow: 0 6px 24px rgba(23,74,56,0.10);
  transform: translateY(-2px) scale(1.01);
}

.tour-card a {
  color: #174A38;
  font-weight: 600;
  margin-top: 12px;
  display: inline-block;
  transition: color 0.2s;
}
.tour-card a:hover, .tour-card a:focus {
  color: #F4B942;
}

/* 8. FOOTER */
footer {
  background: #fff;
  border-top: 1px solid #E0E7EF;
  padding: 40px 0 20px 0;
  margin-top: 60px;
}
footer .container {
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
}
.footer-nav {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-nav a {
  color: #174A38;
  font-size: 1rem;
  opacity: 0.7;
  transition: color 0.2s, opacity 0.2s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #F4B942;
  opacity: 1;
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.98rem;
  color: #174A38;
  opacity: 0.85;
}
.contact-details address {
  font-style: normal;
  margin-bottom: 4px;
}

/* 9. COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #fff;
  border-top: 1px solid #E0E7EF;
  box-shadow: 0 -2px 16px rgba(23,74,56,0.08);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  z-index: 300;
  animation: cookieBannerIn 0.5s cubic-bezier(.77,0,.18,1);
}
@keyframes cookieBannerIn {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner p {
  color: #174A38;
  font-size: 1rem;
  text-align: center;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}
.cookie-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  border-radius: 20px;
  padding: 8px 22px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  margin: 0 2px;
}
.cookie-btn.accept {
  background: #174A38;
  color: #fff;
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: #F4B942;
  color: #174A38;
}
.cookie-btn.reject {
  background: #E0E7EF;
  color: #174A38;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #F4B942;
  color: #174A38;
}
.cookie-btn.settings {
  background: transparent;
  color: #174A38;
  border: 1px solid #E0E7EF;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #E0E7EF;
  color: #174A38;
}

/* COOKIE MODAL */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(23,74,56,0.70);
  z-index: 400;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: cookieModalFadeIn 0.3s cubic-bezier(.77,0,.18,1);
}
@keyframes cookieModalFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(23,74,56,0.18);
  padding: 36px 28px 28px 28px;
  min-width: 320px;
  max-width: 95vw;
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  animation: cookieModalIn 0.4s cubic-bezier(.77,0,.18,1);
}
@keyframes cookieModalIn {
  from { transform: scale(0.96) translateY(40px); opacity: 0; }
  to { transform: scale(1) translateY(0); opacity: 1; }
}
.cookie-modal-close {
  position: absolute;
  top: 18px; right: 18px;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #174A38;
  cursor: pointer;
  transition: color 0.2s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  color: #F4B942;
}
.cookie-modal h2 {
  font-size: 1.25rem;
  margin-bottom: 8px;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 1rem;
}
.cookie-category label {
  font-weight: 500;
  color: #174A38;
}
.cookie-toggle {
  width: 38px;
  height: 22px;
  border-radius: 12px;
  background: #E0E7EF;
  position: relative;
  cursor: pointer;
  transition: background 0.2s;
  margin-left: 8px;
}
.cookie-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie-toggle-slider {
  position: absolute;
  top: 2px; left: 2px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 4px rgba(23,74,56,0.10);
  transition: left 0.2s, background 0.2s;
}
.cookie-toggle input:checked + .cookie-toggle-slider {
  left: 18px;
  background: #F4B942;
}
.cookie-category.essential label {
  opacity: 0.7;
}
.cookie-category.essential .cookie-toggle {
  background: #F4B942;
  cursor: not-allowed;
}
.cookie-category.essential .cookie-toggle-slider {
  background: #F4B942;
}
.cookie-category.essential input {
  pointer-events: none;
}

/* 10. FAQ ACCORDION (minimalist) */
.faq-accordion {
  flex-direction: column;
  gap: 20px;
}
.faq-item {
  cursor: pointer;
  transition: box-shadow 0.2s, background 0.2s;
}
.faq-item h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
  color: #174A38;
}
.faq-item p {
  font-size: 0.98rem;
  color: #174A38;
  opacity: 0.85;
}

/* 11. SLIDER (Testimonials) */
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  align-items: stretch;
}

/* 12. BUTTONS (general) */
button, .button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  border-radius: 20px;
  padding: 8px 22px;
  cursor: pointer;
  background: #174A38;
  color: #fff;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  outline: none;
}
button:hover, button:focus, .button:hover, .button:focus {
  background: #F4B942;
  color: #174A38;
}

/* 13. SPACING & FLEXBOX ENFORCEMENT */
section, .section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container, .content-grid, .feature-grid, .tour-cards, .destination-tiles, .team-grid, .value-grid, .tour-list, .benefit-grid, .destination-grid, .region-tabs, .image-grid, .tips-list, .faq-accordion, .featured-user-photos {
  gap: 24px;
}
.card, .tour-card, .destination-tile, .team-member, .value-item, .benefit-item, .destination-card, .region-tab, .image-card, .tip-card, .faq-item, .user-photo-card {
  margin-bottom: 20px;
}

/* 14. RESPONSIVE DESIGN (Mobile-first) */
@media (max-width: 1024px) {
  .container {
    max-width: 96vw;
    padding: 0 12px;
  }
  .footer-nav {
    gap: 16px;
  }
}
@media (max-width: 900px) {
  .container {
    max-width: 100vw;
    padding: 0 8px;
  }
  .main-nav {
    gap: 18px;
  }
  .footer-nav {
    gap: 10px;
  }
}
@media (max-width: 768px) {
  header .container, footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .cta-button {
    margin-left: 0;
    margin-top: 12px;
  }
  .hero {
    padding: 36px 0 24px 0;
    border-radius: 0 0 16px 16px;
  }
  .hero h1 {
    font-size: 1.7rem;
  }
  .hero p {
    font-size: 1rem;
  }
  .content-grid, .feature-grid, .tour-cards, .destination-tiles, .team-grid, .value-grid, .tour-list, .benefit-grid, .destination-grid, .region-tabs, .image-grid, .tips-list, .faq-accordion, .featured-user-photos {
    flex-direction: column;
    gap: 20px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
  .testimonial-slider {
    flex-direction: column;
    gap: 20px;
  }
  .card, .tour-card, .destination-tile, .team-member, .value-item, .benefit-item, .destination-card, .region-tab, .image-card, .tip-card, .faq-item, .user-photo-card {
    min-width: 0;
    width: 100%;
    padding: 20px 12px;
  }
  .cookie-modal {
    min-width: 0;
    width: 96vw;
    padding: 24px 10px 18px 10px;
  }
}
@media (max-width: 480px) {
  .hero {
    padding: 24px 0 12px 0;
    border-radius: 0 0 8px 8px;
  }
  .section {
    padding: 24px 8px;
    margin-bottom: 36px;
    border-radius: 8px;
  }
  .cookie-banner {
    padding: 16px 8px;
    font-size: 0.95rem;
  }
}

/* 15. ACCESSIBILITY & FOCUS */
a, button, .cta-button, .cookie-btn, .mobile-menu-toggle, .mobile-menu-close, .cookie-modal-close {
  outline: none;
}
a:focus, button:focus, .cta-button:focus, .cookie-btn:focus, .mobile-menu-toggle:focus, .mobile-menu-close:focus, .cookie-modal-close:focus {
  box-shadow: 0 0 0 2px #F4B942;
  outline: none;
}

/* 16. MISCELLANEOUS */
::-webkit-scrollbar {
  width: 8px;
  background: #E0E7EF;
}
::-webkit-scrollbar-thumb {
  background: #174A38;
  border-radius: 4px;
}

/* 17. HIDE/SHOW CLASSES (for JS) */
.hide { display: none !important; }
.show { display: block !important; }

/* 18. UTILITY CLASSES */
.text-center { text-align: center; }
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.mt-24 { margin-top: 24px !important; }
.mb-24 { margin-bottom: 24px !important; }

/* 19. BRAND COLORS UTILITY */
.bg-primary { background: #174A38 !important; color: #fff !important; }
.bg-accent { background: #E0E7EF !important; }
.bg-secondary { background: #F4B942 !important; color: #174A38 !important; }
.text-primary { color: #174A38 !important; }
.text-secondary { color: #F4B942 !important; }
.text-accent { color: #E0E7EF !important; }

/* 20. PRINT STYLES */
@media print {
  header, footer, .cookie-banner, .mobile-menu { display: none !important; }
  body { background: #fff !important; color: #000 !important; }
}

/* END OF CSS */
