/* CSS RESET & BASE STYLES (Normalize, no grid/columns/overflow for content) */
html {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  background: #F2F2F2;
  color: #1B2733;
  font-family: 'Open Sans', Arial, sans-serif;
  min-height: 100vh;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: #01589A;
  text-decoration: none;
  transition: color .2s cubic-bezier(.65,.05,.36,1);
}
a:hover, a:focus {
  color: #FFD700;
  outline: none;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  color: #01589A;
  letter-spacing: 0.01em;
  margin-bottom: 16px;
}
h1 { font-size: 2.5rem; line-height: 1.15; margin-bottom: 24px; }
h2 { font-size: 2rem; margin-bottom: 20px; }
h3 { font-size: 1.35rem; margin-bottom: 14px; }
h4, h5, h6 { font-size: 1.08rem; }
p {
  font-size: 1rem;
  color: #253046;
  margin-bottom: 13px;
}
ul, ol {
  margin-left: 22px;
  margin-bottom: 18px;
  color: #1B2733;
}
strong {
  font-weight: 700;
  color: #01589A;
}
blockquote {
  font-style: italic;
  color: #222b35;
  border-left: 4px solid #01589A;
  padding-left: 14px;
  margin-bottom: 8px;
  background: #f7fafc;
}
cite {
  font-size: 0.97rem;
  color: #01589A;
}

/* ==== LAYOUT ====*/
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.text-section {
  max-width: 710px;
  margin: 0 auto;
}

.section, .hero, .features, .services, .testimonials, .cta, .gallery-features, .blog-features, .about-story, .about-features, .privacy-policy, .gdpr-policy, .cookies-policy, .terms-of-use, .thank-you, .faq, .contact-details {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 9px 0 rgba(1,88,154,0.09);
  padding: 28px 22px 22px 22px;
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 240px;
  flex: 1 1 300px;
  transition: box-shadow 0.21s cubic-bezier(.65,.05,.36,1), transform 0.20s cubic-bezier(.65,.05,.36,1);
  border: 2px solid #F2F2F2;
}
.card:hover {
  box-shadow: 0 8px 26px 0 rgba(1,88,154,0.14);
  transform: translateY(-4px) scale(1.025);
  border-color: #FFD700;
}
.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 {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 1px 7px 0 rgba(1,88,154,0.10);
  margin-bottom: 22px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex: 1 1 320px;
  min-width: 0;
  border: 2px solid #e4e7ec;
  transition: box-shadow 0.21s cubic-bezier(.65,.05,.36,1);
}
.testimonial-card:hover {
  box-shadow: 0 8px 32px 0 rgba(1,88,154,0.16);
  border-color: #FFD700;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ==== HEADER & NAVBAR ==== */
header {
  width: 100%;
  background: #fff;
  border-bottom: 3px solid #01589A;
  position: sticky;
  top: 0;
  z-index: 12;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  min-height: 66px;
  height: 100%;
}
.logo img {
  height: 38px;
  width: auto;
  margin-right: 26px;
}
.main-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 30px;
}
nav.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.05rem;
  font-weight: 500;
  padding: 8px 0 6px 0;
  position: relative;
  letter-spacing: .07em;
  color: #01589A;
  border-bottom: 2.5px solid transparent;
  transition: color 0.18s, border-color 0.18s;
}
nav.main-nav a:hover, nav.main-nav a:focus {
  color: #FFD700;
  border-bottom: 2.5px solid #FFD700;
}
.cta-button.primary {
  background: #01589A;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 1rem;
  padding: 10px 28px;
  border: none;
  border-radius: 8px;
  margin-left: 28px;
  margin-right: 8px;
  box-shadow: 0 2px 8px 0 rgba(1,88,154,0.08);
  letter-spacing: .08em;
  cursor: pointer;
  transition: background 0.21s, color 0.21s, box-shadow 0.2s;
}
.cta-button.primary:hover, .cta-button.primary:focus {
  background: #FFD700;
  color: #01589A;
  box-shadow: 0 6px 22px rgba(1,88,154,0.13);
}

/* ==== MOBILE MENU ==== */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2.3rem;
  color: #01589A;
  cursor: pointer;
  margin-left: 18px;
  transition: color 0.2s;
  z-index: 19;
}
.mobile-menu-toggle:focus {
  color: #FFD700;
  outline: 2px dashed #FFD700;
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #fff;
  z-index: 200;
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(0.55,0,0.1,1);
  box-shadow: -6px 0 28px 0 rgba(1,88,154,0.14);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  padding-top: 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  top: 18px;
  right: 28px;
  background: none;
  border: none;
  font-size: 2.2rem;
  color: #01589A;
  cursor: pointer;
  z-index: 201;
  transition: color 0.2s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #FFD700;
  outline: none;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: flex-start;
  margin: 86px 0 0 34px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.27rem;
  font-weight: 600;
  color: #01589A;
  padding: 14px 0;
  width: 100%;
  border-radius: 6px;
  transition: background 0.17s, color 0.15s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #F2F2F2;
  color: #FFD700;
}

/* ==== HERO SECTIONS ==== */
.hero, .hero-contact {
  background: linear-gradient(120deg, #F2F2F2 78%, #01589A 78%);
  border-radius: 0 0 54px 54px;
  box-shadow: 0 10px 30px rgba(1,88,154,0.09);
  margin-bottom: 54px;
  padding: 56px 0 72px 0;
  display: flex;
  align-items: center;
}
.hero .container, .hero-contact .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.hero .content-wrapper, .hero-contact .content-wrapper {
  align-items: center;
  text-align: center;
}
.hero h1, .hero-contact h1 {
  color: #01589A;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2.5rem;
}
.hero p, .hero-contact p {
  color: #253046;
  font-size: 1.22rem;
  margin-bottom: 22px;
}
.hero .cta-button, .hero-contact .cta-button {
  margin-top: 16px;
}

/* ==== FEATURES, SERVICES, CARDS ====*/
.features, .about-features, .services {
  background: #fff;
  border-radius: 32px;
  box-shadow: 0 2px 13px 0 rgba(1,88,154,0.06);
  margin-bottom: 48px;
}
.features h2, .about-features h2, .services h2 {
  margin-bottom: 18px;
}
.features ul, .about-features ul, .services ul {
  color: #1B2733;
  font-size: 1.07rem;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.features ul li, .services ul li, .about-features ul li {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 12px 0;
  border-bottom: 1.7px dashed #e4e7ec;
}
.features ul li:last-of-type, .services ul li:last-of-type, .about-features ul li:last-of-type {
  border-bottom: none;
}
.features ul img, .services ul img {
  width: 26px;
  height: 26px;
}
.services ul span {
  margin-left: 8px;
  background: #F2F2F2;
  border-radius: 6px;
  padding: 2px 10px;
  color: #01589A;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
}

.tour-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 12px;
}
.tour-item {
  background: #F2F2F2;
  border-radius: 18px;
  flex: 1 1 300px;
  min-width: 250px;
  padding: 26px 20px 18px 22px;
  box-shadow: 0 1.5px 8px 0 rgba(1,88,154,0.06);
  border: 2.5px solid #dedede;
  margin-bottom: 20px;
  transition: border-color 0.18s, box-shadow 0.18s;
}
.tour-item:hover {
  border-color: #FFD700;
  box-shadow: 0 8px 19px 0 rgba(1,88,154,0.15);
}
.tour-item h3 {
  font-size: 1.33rem;
  color: #01589A;
  margin-bottom: 9px;
}

/* ==== TESTIMONIALS ==== */
.testimonials .testimonial-card,
.gallery-features .testimonial-card,
.blog-features .testimonial-card {
  margin-bottom: 20px;
  background: #fff;
  color: #1B2733;
  min-width: 0;
  border-radius: 14px;
  box-shadow: 0 1px 7px 0 rgba(1,88,154,0.10);
  border: 2px solid #e4e7ec;
}
.testimonials h2, .gallery-features h2 { margin-bottom: 27px; }

/* ==== CTA (Call-to-action) ==== */
.cta {
  background: #01589A;
  border-radius: 24px;
  color: #fff;
  text-align: center;
  box-shadow: 0 6px 24px 0 rgba(1,88,154,0.13);
}
.cta h2, .cta p {
  color: #fff;
  margin-bottom: 16px;
}
.cta .cta-button {
  background: #FFD700;
  color: #01589A;
  margin-top: 18px;
}
.cta .cta-button:hover, .cta .cta-button:focus {
  background: #fff;
  color: #01589A;
  box-shadow: 0 8px 20px rgba(1,88,154,0.16);
}

/* ==== BLOG ==== */
.blog-preview {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 22px;
}
.blog-article {
  background: #F2F2F2;
  border-radius: 16px;
  padding: 22px 20px 18px 20px;
  flex: 1 1 290px;
  min-width: 240px;
  border: 2px solid #e4e7ec;
  transition: box-shadow .18s, border-color .16s;
  margin-bottom: 20px;
  box-shadow: 0 1px 5px 0 rgba(1,88,154,0.07);
}
.blog-article:hover { 
  border-color: #FFD700;
  box-shadow: 0 6px 16px 0 rgba(1,88,154,0.13);
}
.topic-tag {
  font-family: 'Montserrat', Arial, sans-serif;
  background: #FFD700;
  color: #01589A;
  border-radius: 8px;
  padding: 2px 10px;
  font-size: 0.88rem;
  margin-left: 12px;
  font-weight: 700;
  letter-spacing: 0.07em;
}

.cta-signup {
  background: #01589A;
  border-radius: 14px;
  color: #fff;
  text-align: center;
  padding: 26px 18px 18px 18px;
  margin-top: 32px;
  box-shadow: 0 4px 17px 0 rgba(1,88,154,0.10);
}
.cta-signup h2, .cta-signup p { color: #fff; }

/* ==== FOOTER ==== */
footer {
  background: #fff;
  border-top: 3px solid #01589A;
  padding: 40px 0 28px 0;
  margin-top: 44px;
}
footer .container {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 22px;
  text-align: center;
}
.logo-footer img {
  height: 36px;
}
.footer-nav {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-bottom: 11px;
}
.footer-nav a {
  color: #01589A;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.04rem;
  font-weight: 500;
  padding: 6px 7px;
  border-radius: 5px;
  transition: background 0.12s, color 0.13s;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: #F2F2F2;
  color: #FFD700;
}
.footer-info {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 21px;
  color: #253046;
  font-size: 0.98rem;
  margin-bottom: 7px;
  justify-content: center;
}
.footer-tagline {
  color: #01589A;
  font-family: 'Montserrat', Arial, sans-serif;
  letter-spacing: 0.07em;
  font-size: 1.08rem;
  font-weight: 600;
  margin-top: 5px;
}

/* ==== COOKIE CONSENT BANNER ===== */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: #fff;
  color: #1B2733;
  padding: 22px 16px 16px 16px;
  box-shadow: 0 -2px 24px rgba(1,88,154,0.10);
  z-index: 502;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 26px;
  border-radius: 18px 18px 0 0;
  transition: transform 0.33s cubic-bezier(.55,.12,.18,1), opacity 0.18s;
}
.cookie-banner.hide {
  transform: translateY(120%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner .cookie-text {
  flex: 1 1 570px;
  font-size: 1.03rem;
  color: #222b35;
  padding-right: 8px;
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 13px;
}
.cookie-banner button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  border: none;
  border-radius: 6px;
  padding: 8px 16px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.15s, color 0.14s;
  margin-left: 0;
}
.cookie-banner .accept {
  background: #01589A;
  color: #fff;
}
.cookie-banner .accept:hover, .cookie-banner .accept:focus {
  background: #FFD700;
  color: #01589A;
}
.cookie-banner .reject {
  background: #F2F2F2;
  color: #01589A;
}
.cookie-banner .reject:hover, .cookie-banner .reject:focus {
  background: #FFD700;
  color: #01589A;
}
.cookie-banner .settings {
  background: transparent;
  color: #01589A;
  border: 2px solid #01589A;
}
.cookie-banner .settings:hover, .cookie-banner .settings:focus {
  background: #FFD700;
  border-color: #FFD700;
  color: #01589A;
}

/* ==== COOKIE MODAL ==== */
.cookie-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(37,44,67,0.35);
  z-index: 999;
  justify-content: center;
  align-items: center;
  display: flex;
  opacity: 1;
  transition: opacity 0.18s;
}
.cookie-modal-overlay.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal {
  background: #fff;
  border-radius: 18px;
  min-width: 320px;
  max-width: 98vw;
  width: 440px;
  padding: 34px 22px 16px 22px;
  box-shadow: 0 10px 32px rgba(1,88,154,0.17);
  position: relative;
  color: #1B2733;
  animation: cookie-modal-in 0.32s cubic-bezier(.55,0,.1,1);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@keyframes cookie-modal-in {
  from { opacity: 0; transform: scale(0.97) translateY(22px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}
.cookie-modal h2 {
  font-size: 1.33rem;
  color: #01589A;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 18px;
}
.cookie-category {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.01rem;
  border-bottom: 1px solid #e4e7ec;
  padding-bottom: 8px;
}
.cookie-category:last-child {
  border-bottom: none;
}
.cookie-toggle input[type=checkbox] {
  width: 34px;
  height: 18px;
  accent-color: #01589A;
}
.cookie-modal-actions {
  display: flex;
  gap: 14px;
  justify-content: flex-end;
}
.cookie-modal .close-cookie-modal {
  position: absolute;
  right: 14px;
  top: 14px;
  background: none;
  border: none;
  font-size: 1.8rem;
  color: #01589A;
  cursor: pointer;
}
.cookie-modal .close-cookie-modal:hover { color: #FFD700; }

/* ==== GEOMETRIC STRUCTURED VISUALS & EFFECTS ==== */
.hero, .hero-contact {
  position: relative;
  overflow: visible;
}
.hero:after, .hero-contact:after {
  content: '';
  display: block;
  position: absolute;
  bottom: -30px;
  left: -40px;
  width: 90px;
  height: 90px;
  background: #01589A;
  clip-path: polygon(50% 0%, 100% 45%, 82% 100%, 18% 100%, 0% 45%);
  opacity: 0.11;
  z-index: 1;
  pointer-events: none;
}
.card:before, .tour-item:before {
  content: '';
  display: block;
  position: absolute;
  top: 18px;
  right: 18px;
  width: 28px;
  height: 28px;
  background: #FFD700;
  clip-path: polygon(0 0,100% 0,80% 100%,0 70%);
  opacity: 0.13;
  z-index: 0;
}

/* ==== STRUCTURED SPACING ==== */
@media (min-width: 1024px) {
  .container {
    padding: 0 30px;
  }
  .hero, .hero-contact {
    padding: 64px 0 95px 0;
  }
  .section, .features, .testimonials, .cta, .about-story, .about-features, .services, .gallery-features, .blog-features {
    padding: 60px 60px;
    border-radius: 38px;
  }
  .content-wrapper, .text-section {
    max-width: 840px;
  }
  .main-nav {
    gap: 44px;
  }
  .tour-list, .blog-preview, .card-container {
    gap: 32px;
  }
}

/* ====== RESPONSIVE DESIGN (Mobile-first) ====== */
@media (max-width: 1023px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
  .cta-button.primary {
    margin-left: 10px;
  }
}
@media (max-width: 768px) {
  .container {
    padding: 0 8px;
  }
  .section, .features, .testimonials, .cta, .about-story, .about-features, .services, .gallery-features, .blog-features, .privacy-policy, .gdpr-policy, .cookies-policy, .terms-of-use, .thank-you, .faq, .contact-details {
    padding: 27px 6px 32px 6px;
    margin-bottom: 39px;
    border-radius: 18px;
  }
  .hero, .hero-contact {
    padding: 34px 0 38px 0;
    border-radius: 0 0 27px 27px;
  }
  .features ul, .about-features ul, .services ul {
    gap: 8px;
  }
  .testimonials .testimonial-card,
  .gallery-features .testimonial-card,
  .blog-features .testimonial-card {
    gap: 6px;
    padding: 13px;
    font-size: 0.99rem;
  }
  .tour-list, .blog-preview, .card-container, .content-grid, .footer-info {
    gap: 14px;
  }
  .tour-item, .card {
    min-width: 170px;
    padding: 15px 9px 13px 12px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 17px;
    align-items: flex-start;
  }
  .footer-nav {
    gap: 9px;
    font-size: 0.99rem;
  }
  .footer-info {
    gap: 7px;
    flex-direction: column;
  }
}

@media (max-width: 510px) {
  h1 { font-size: 1.45rem; }
  h2 { font-size: 1.16rem; }
  h3 { font-size: 1.01rem; }
  .cta-button, .cta-button.primary {
    font-size: 0.99rem;
    padding: 8px 16px;
  }
  .cookie-banner {
    flex-direction: column;
    gap: 12px;
    padding: 16px 7px 11px 7px;
    align-items: stretch;
  }
  .cookie-banner .cookie-text {
    padding-right: 0;
  }
}

/* ====== UTILITY ====== */
.hide { display: none !important; }

/* ====== GEOMETRIC FONT LOADING (Montserrat/Opensans defaults) ====== */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600;700&family=Open+Sans:ital,wght@0,400;0,600;1,400&display=swap');

/* ====== FOCUS STYLES FOR ACCESSIBILITY ====== */
:focus {
  outline: 2px solid #FFD700;
  outline-offset: 2px;
}
button:focus, .cta-button:focus, a:focus {
  outline: 2px solid #FFD700;
  outline-offset: 2px;
}

/* END CSS */
