/* ============================================================================
   RESET & BASELINE NORMALIZE
============================================================================ */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td {  background: transparent; border: 0; margin: 0; padding: 0; vertical-align: baseline; box-sizing: border-box; }
html { line-height: 1.15; -webkit-text-size-adjust: 100%; }
body { min-height: 100vh; font-family: 'Roboto', Arial, sans-serif; background: #E6F0F8; color: #172C38; font-size: 16px; line-height: 1.6; }
*, *:before, *:after { box-sizing: inherit; }
img { border-style: none; max-width: 100%; display: block; }
ul, ol { list-style: none; padding: 0; margin: 0; }
a { color: #004A77; text-decoration: none; transition: color 0.2s; }
a:hover, a:focus { color: #FFC700; }
button, input, select, textarea { font-family: inherit; font-size: 100%; border: none; background: none; outline: none; }
button { cursor: pointer; }
h1, h2, h3, h4, h5, h6 { font-family: 'Montserrat', 'Roboto', Arial, sans-serif; color: #004A77; margin-bottom: 12px; font-weight: 700; }
h1 { font-size: 2.4rem; margin-bottom: 16px; }
h2 { font-size: 2rem; margin-bottom: 14px; }
h3 { font-size: 1.3rem; margin-bottom: 10px; }
.subheadline { color: #004A77; font-size: 1.125rem; margin-bottom: 22px; font-family: 'Montserrat', Arial, sans-serif; }

/* ============================================================================
   GRADIENT MODERN DESIGN BASE
============================================================================ */
body {
  background: linear-gradient(135deg, #E6F0F8 0%, #fafdff 100%);
}

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

.container {
  max-width: 1080px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.text-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* ============================================================================
    HEADER & NAVIGATION
============================================================================ */
header {
  background: #fff;
  box-shadow: 0 4px 24px rgba(0,74,119,0.04);
  position: sticky;
  top: 0; z-index: 100;
  width: 100%;
  transition: box-shadow 0.3s;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 20px;
}
header img {
  height: 46px; width: auto;
  margin-right: 12px;
}
header nav {
  display: flex;
  gap: 20px;
}
header nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: #004A77;
  padding: 4px 4px;
  position: relative;
  transition: color 0.2s;
}
header nav a:hover, header nav a:focus {
  color: #FFC700;
}
.cta-primary {
  display: inline-block;
  padding: 12px 28px;
  background: linear-gradient(90deg, #004A77 70%, #147BDD 100%);
  color: #fff !important;
  font-family: 'Montserrat', Arial, sans-serif;
  border-radius: 28px;
  font-weight: 700;
  font-size: 1.15rem;
  box-shadow: 0 2px 12px rgba(0,74,119,0.10);
  letter-spacing: 0.02em;
  transition: background 0.18s, box-shadow 0.18s, color 0.13s;
  border: none;
  margin-left: 20px;
}
.cta-primary:hover, .cta-primary:focus {
  background: linear-gradient(90deg, #FFC700 10%, #EEB900 90%);
  color: #004A77 !important;
  box-shadow: 0 6px 24px rgba(255,199,0,0.11);
}

.mobile-menu-toggle {
  display: none;
  background: #FFC700;
  color: #004A77;
  border-radius: 50%;
  width: 44px; height: 44px;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  border: none;
  margin-left: 10px;
  transition: box-shadow .2s, background .2s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #004A77;
  color: #fff;
  box-shadow: 0 2px 10px rgba(0,74,119,0.13);
}

/* ============================================================================
   MOBILE MENU OVERLAY
============================================================================ */
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: linear-gradient(135deg, #fff 70%, #E6F0F8 100%);
  z-index: 5555;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  transform: translateX(100vw);
  transition: transform 0.38s cubic-bezier(.59,1.34,.19,1);
  box-shadow: 0 6px 48px 0 rgba(0,74,119,0.14);
  padding-top: 36px;
  will-change: transform;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  top: 22px; right: 26px;
  font-size: 2.3rem;
  color: #004A77;
  background: #FFC700;
  width: 42px; height: 42px;
  border-radius: 50%;
  border: none;
  display: flex;
  align-items: center; justify-content: center;
  z-index: 5560;
  transition: background 0.2s;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  background: #004A77; color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  margin-top: 60px;
  gap: 12px;
  padding-left: 40px;
}
.mobile-nav a {
  font-size: 1.25rem;
  color: #004A77;
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 14px 0;
  width: 100%;
  transition: color 0.2s, background 0.2s;
  border-radius: 8px;
}
.mobile-nav a:focus, .mobile-nav a:hover {
  background: #E6F0F8;
  color: #FFC700;
}

/* Hide main nav and show burger on mobile */
@media (max-width: 900px) {
  header nav {
    display: none !important;
  }
  .cta-primary {
    margin-left: 0;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  header .container {
    gap: 10px;
  }
}
@media (min-width: 901px) {
  .mobile-menu {
    display: none !important;
  }
}

/* ============================================================================
   FLEXBOX LAYOUTS: Cards, Features, Regions, Lists
============================================================================ */
.card-container, .feature-grid, .service-list, .region-highlights-grid, .testimonial-slider, .testimonial-list, .accordion-faq-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card, .feature-item, .service-list > div, .region-highlights-grid > div, .testimonial-card, .accordion-faq-list > div {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 3px 18px 0 rgba(0,74,119,.055);
  padding: 30px 24px;
  min-width: 260px;
  flex: 1 1 260px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  transition: box-shadow 0.19s, transform .14s;
}
.card:hover, .feature-item:hover, .service-list > div:hover, .region-highlights-grid > div:hover {
  box-shadow: 0 8px 28px 0 rgba(0,74,119,0.13);
  transform: translateY(-3px) scale(1.012);
}
.feature-grid {
  flex-wrap: wrap;
  gap: 24px;
}
.feature-grid > div {
  flex: 1 1 245px;
  min-width: 210px;
  background: #F8FBFF;
  border-radius: 14px;
  padding: 26px 18px;
  align-items: flex-start;
  box-shadow: 0 1px 13px 0 rgba(0,74,119,0.04);
  display: flex;
  flex-direction: column;
  gap: 13px;
  transition: box-shadow 0.15s, background 0.29s;
}
.feature-grid > div:hover {
  background: #E6F0F8;
  box-shadow: 0 6px 38px 0 rgba(232,200,36,0.12);
}
.feature-grid img, .service-list img, .region-highlights-grid img {
  width: 52px;
  height: 52px;
  margin-bottom: 7px;
}
.service-list {
  gap: 24px;
  margin-top: 8px;
}
.service-list > div {
  flex: 1 1 252px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 14px 0 rgba(0,74,119,.08);
  padding: 22px 18px 20px 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  min-width: 232px;
}
.service-list > div strong {
  color: #004A77;
  font-size: 1.06rem;
}
.service-list a {
  margin-top: 7px;
  color: #004A77;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  border-radius: 20px;
  padding: 8px 16px;
  background: #E6F0F8;
  transition: background .21s, color .15s;
}
.service-list a:hover, .service-list a:focus {
  background: #FFC700;
  color: #004A77 !important;
}
.region-highlights-grid {
  gap: 24px;
  margin-bottom: 10px;
}
.region-highlights-grid > div {
  flex: 1 1 245px;
  background: #F8FBFF;
  border-radius: 12px;
  padding: 22px 16px;
  box-shadow: 0 1px 10px 0 rgba(0,74,119,0.03);
}

/* ============================================================================
   TESTIMONIALS - Cards & Slider
============================================================================ */
.testimonial-slider, .testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 22px;
  background: #F8FBFF;
  border-radius: 16px;
  min-width: 265px;
  max-width: 440px;
  box-shadow: 0 2px 18px 0 rgba(0,74,119,0.07);
  color: #172C38;
  font-size: 1.03rem;
  transition: box-shadow 0.13s, background 0.18s;
}
.testimonial-card p {
  color: #172C38;
  font-size: 1.07rem;
  font-style: italic;
}
.testimonial-card span {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #004A77;
  font-size: 1rem;
  font-style: normal;
  font-weight: 500;
}
.testimonial-card strong {
  color: #004A77;
}
.testimonial-card:hover {
  background: #fffefb;
  box-shadow: 0 6px 24px 0 rgba(255,199,0,0.11);
}

/* ============================================================================
   FLEXBOX HELPERS FOR COMMON SECTIONS
============================================================================ */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
}
.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;
  align-items: center;
  gap: 20px;
  padding: 20px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ============================================================================
   ACCORDION FAQ STYLE
============================================================================ */
.accordion-faq-list > div {
  background: #F8FBFF;
  border-radius: 14px;
  box-shadow: 0 1px 10px 0 rgba(0,74,119,0.03);
  padding: 22px 17px;
  flex: 1 1 230px;
  transition: box-shadow 0.12s;
}
.accordion-faq-list > div + div { margin-top: 0px; }
.accordion-faq-list h3 {
  margin-bottom: 7px;
  font-size: 1.08rem;
  cursor: pointer;
}
.accordion-faq-list p {
  color: #172C38;
  font-size: 1rem;
}

/* ============================================================================
   FOOTER
============================================================================ */
footer {
  width: 100%;
  background: linear-gradient(90deg, #E6F0F8 65%, #fff 100%);
  margin-top: 60px;
  padding: 30px 0 16px 0;
  box-shadow: 0 -2px 13px 0 rgba(0,74,119,0.04);
}
footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
}
.footer-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}
.footer-menu a {
  font-size: 1rem;
  color: #004A77;
  opacity: .80;
  font-family: 'Montserrat', Arial, sans-serif;
  transition: color .18s, opacity .16s;
}
.footer-menu a:hover { color: #FFC700; opacity:1; }
.brands-socials {
  font-size: 0.97rem;
  color: #999;
  margin-top: 5px;
}

/* ============================================================================
   FORM FIELDS - (if added)
============================================================================ */
input[type='text'], input[type='email'], textarea, select {
  width: 100%;
  padding: 14px 14px;
  border-radius: 8px;
  border: 1px solid #E6F0F8;
  margin-bottom: 16px;
  font-size: 1rem;
  background: #F8FBFF;
  transition: border 0.18s, background 0.18s;
  color: #172C38;
}
input:focus, textarea:focus, select:focus {
  border-color: #004A77;
  background: #fff;
}

/* ============================================================================
   BUTTONS - General
============================================================================ */
button, .btn, .cta-primary {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  border: none;
  cursor: pointer;
  outline: none;
  transition: background 0.17s, color 0.15s, box-shadow 0.15s;
}
.btn {
  padding: 10px 24px;
  border-radius: 22px;
  background: #004A77;
  color: #fff;
  font-size: 1rem;
}
.btn:hover, .btn:focus {
  background: #FFC700;
  color: #004A77;
  box-shadow: 0 2px 15px rgba(255,199,0,0.18);
}

/* ============================================================================
   COOKIE CONSENT BANNER
============================================================================ */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100%;
  z-index: 8000;
  background: #fff;
  border-top: 2px solid #E6F0F8;
  box-shadow: 0 -2px 24px 0 rgba(0,74,119,0.14);
  padding: 28px 16px 20px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  transition: transform .38s ease, opacity .25s;
}
.cookie-banner.hide {
  transform: translateY(110%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner p {
  color: #172C38;
  font-size: 1.05rem;
  margin-bottom: 4px;
}
.cookie-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 5px;
}
.cookie-actions button {
  padding: 9px 24px;
  border-radius: 20px;
  font-size: 1rem;
  background: #E6F0F8;
  color: #004A77;
  border: none;
  transition: background 0.19s, color 0.16s;
}
.cookie-actions button.accept {
  background: #004A77;
  color: #fff;
  font-weight: 700;
}
.cookie-actions button.accept:hover, .cookie-actions button.accept:focus {
  background: #FFC700;
  color: #004A77;
}
.cookie-actions button.reject {
  background: #fff;
  border: 1.5px solid #004A77;
}
.cookie-actions button.reject:hover, .cookie-actions button.reject:focus {
  background: #FFC700;
  color: #004A77;
}
.cookie-actions button.settings {
  background: #F8FBFF;
}
.cookie-actions button.settings:hover, .cookie-actions button.settings:focus {
  background: #FFC700;
  color: #004A77;
}

/* Cookie Settings Modal */
.cookie-modal-overlay {
  position: fixed; z-index: 8100;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(0,74,119,0.18);
  display: flex;
  align-items: center; justify-content: center;
  opacity: 1;
  transition: opacity 0.22s;
}
.cookie-modal-overlay.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal {
  background: #fff;
  padding: 37px 28px 28px 28px;
  border-radius: 20px;
  box-shadow: 0 12px 72px 0 rgba(0,74,119,0.25);
  max-width: 400px;
  width: 94vw;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}
.cookie-modal h2 {
  margin-top: 0;
  margin-bottom: 14px;
  font-size: 1.30rem;
  color: #004A77;
  font-weight: 700;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 13px;
}
.cookie-category label {
  font-size: 1.04rem;
  color: #172C38;
  cursor: pointer;
}
.cookie-category input[type="checkbox"] {
  accent-color: #004A77; width: 18px; height: 18px;
  margin-right: 5px;
}
.cookie-category input[disabled] {
  accent-color: #eee;
}
.cookie-modal-footer {
  display: flex;
  justify-content: flex-end;
  gap: 15px;
  width: 100%;
}

/* ============================================================================
   RESPONSIVE DESIGN (Mobile-first)
============================================================================ */
@media (max-width: 1080px) {
  .container {
    max-width: 97vw;
    padding: 0 13px;
  }
}
@media (max-width: 900px) {
  .testimonials-slider, .card-container, .feature-grid, .service-list, .region-highlights-grid, .testimonial-list, .accordion-faq-list, .footer-menu {
    gap: 15px;
  }
  .card, .testimonial-card, .feature-grid > div, .service-list > div, .region-highlights-grid > div {
    min-width: 88vw;
    max-width: 95vw;
    flex: 1 1 95vw;
    padding-left: 13px; padding-right: 13px;
  }
  header .container { flex-wrap: wrap; }
  footer .container { gap: 8px; }
}
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.27rem; }
  h3 { font-size: 1.08rem; }
  .section { margin-bottom: 28px; padding: 24px 7px; }
  .content-wrapper { gap: 13px; }
  .card-container, .feature-grid, .service-list, .region-highlights-grid, .testimonial-slider, .testimonial-list, .accordion-faq-list {
    flex-direction: column;
    gap: 13px;
  }
  .content-grid, .footer-menu {
    flex-direction: column;
    gap: 11px;
  }
  .text-image-section {
    flex-direction: column !important;
    gap: 18px;
  }
  .feature-grid > div, .card, .testimonial-card, .service-list > div, .region-highlights-grid > div {
    min-width: 97vw;
    max-width: 99vw;
    border-radius: 10px;
    padding: 16px 9px;
  }
  header img { height: 32px; }
}
@media (max-width: 520px) {
  h1 { font-size: 1.28rem; }
  h2 { font-size: 1.13rem; }
  h3 { font-size: 0.97rem; }
  .container, .section {
    padding: 0 5px;
  }
  .card, .testimonial-card, .feature-grid > div, .service-list > div, .region-highlights-grid > div {
    padding: 9px 3px;
  }
  .footer-menu { flex-direction: column; gap: 7px; }
}

/* ============================================================================
   SMOOTH MICRO-INTERACTIONS
============================================================================ */
.card, .testimonial-card, .feature-grid > div, .service-list > div, .region-highlights-grid > div, .accordion-faq-list > div {
  transition: box-shadow 0.22s, background 0.22s, transform 0.21s;
  will-change: box-shadow, background, transform;
}
a, .btn, .cta-primary, button, .mobile-menu-toggle, .mobile-menu-close {
  transition: background 0.22s, color 0.15s, box-shadow 0.22s, filter 0.18s;
}

/* ============================================================================
   UTILS
============================================================================ */
.text-center { text-align:center; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.hide { display: none !important; }
.show { display: block !important; }
.visually-hidden { border: 0; clip: rect(0 0 0 0); height: 1px; margin: -1px; overflow: hidden; padding: 0; position: absolute; width: 1px; }

/* ============================================================================
   CUSTOM FONTS
============================================================================ */
@import url('https://fonts.googleapis.com/css?family=Montserrat:400,500,700&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap');