/* --- CSS RESET & 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, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html { box-sizing: border-box; }
*, *:before, *:after { box-sizing: inherit; }
body {
  line-height: 1.5;
  font-family: 'Roboto', Arial, sans-serif;
  background: #F7F7F4;
  color: #12496A;
  min-height: 100vh;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: #F2B545;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #F2B545;
}
ul, ol {
  margin-left: 26px;
  margin-bottom: 16px;
}
li {
  margin-bottom: 8px;
}
strong, b {
  font-weight: 700;
}

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #12496A;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.15;
}
h1 {
  font-size: 2.25rem;
  margin-bottom: 20px;
}
h2 {
  font-size: 1.6rem;
  margin-bottom: 18px;
}
h3 {
  font-size: 1.2rem;
  margin-bottom: 14px;
}
h4, h5, h6 {
  font-size: 1rem;
}
p {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  margin-bottom: 14px;
  color: #12496A;
}

@media (min-width: 600px) {
  h1 { font-size: 3rem; }
  h2 { font-size: 2.1rem; }
  h3 { font-size: 1.5rem; }
}

/* --- LAYOUT UTILITY CLASSES --- */
.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 3px 22px -8px rgba(18,73,106,0.08);
  gap: 24px;
}

@media (min-width: 820px) {
  .section {
    padding: 52px 40px;
  }
}

/* --- HEADER & NAVIGATION --- */
header {
  background: linear-gradient(90deg, #12496A 70%, #F2B545 100%);
  color: #fff;
  width: 100%;
  top: 0;
  z-index: 30;
  box-shadow: 0 4px 18px -6px rgba(18,73,106,0.11);
}
header .container {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
  min-height: 70px;
  gap: 18px;
  padding: 0 16px;
}
.logo img {
  height: 42px;
  width: auto;
}
.main-nav {
  display: flex !important;
  align-items: center;
  gap: 26px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  color: #fff;
  font-size: 1rem;
  transition: color 0.25s;
  letter-spacing: 0.03em;
  position: relative;
  padding: 3px 2px;
}
.main-nav a:after {
  content: "";
  display: block;
  height: 2.5px;
  width: 0%;
  background: #F2B545;
  transition: width 0.25s;
  border-radius: 1px;
}
.main-nav a:hover:after, .main-nav a:focus:after {
  width: 100%;
}
.main-nav a:hover, .main-nav a:focus {
  color: #F2B545;
}
.cta-button {
  background: linear-gradient(90deg, #F2B545, #12496A);
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  border: none;
  border-radius: 26px;
  padding: 12px 30px;
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: 0.03em;
  cursor: pointer;
  box-shadow: 0 2px 10px -2px rgba(18,73,106,0.08);
  margin-left: 10px;
  transition: background 0.3s, box-shadow 0.24s, transform 0.18s, color 0.23s;
  outline: none;
  display: inline-block;
}
.cta-button:hover, .cta-button:focus {
  background: linear-gradient(90deg, #12496A, #F2B545);
  color: #fff;
  box-shadow: 0 6px 22px -8px #F2B545;
  transform: translateY(-1px) scale(1.033);
}

/* --- BURGER MOBILE MENU --- */
.mobile-menu-toggle {
  display: inline-flex;
  background: transparent;
  border: none;
  font-size: 2rem;
  color: #fff;
  cursor: pointer;
  margin-left: 8px;
  align-items: center;
  padding: 8px 10px;
  z-index: 101;
  border-radius: 7px;
  transition: background 0.18s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: rgba(18,73,106,0.12);
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: #12496A;
  color: #fff;
  z-index: 1000;
  transform: translateX(100%);
  transition: transform 0.36s cubic-bezier(.86,-0.3,.23,1.2);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  box-shadow: -7px 0 18px -7px rgba(18,73,106,0.17);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  font-size: 2.3rem;
  background: transparent;
  color: #fff;
  border: none;
  margin: 18px 18px 0 0;
  cursor: pointer;
  padding: 0 5px;
  border-radius: 4px;
  transition: background 0.17s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: rgba(242,181,69,0.15);
  color: #F2B545;
}
.mobile-nav {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 40px 32px 0 32px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #fff;
  border-radius: 10px;
  padding: 10px 20px;
  margin-bottom: 6px;
  transition: background 0.18s, color 0.18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #F2B545;
  color: #12496A;
}

@media (max-width: 1024px) {
  .main-nav, .cta-button {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-flex;
  }
}
@media (min-width: 1025px) {
  .mobile-menu-toggle, .mobile-menu {
    display: none !important;
  }
  .main-nav, .cta-button {
    display: initial;
  }
}

/* --- HERO SECTIONS --- */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 3px 22px -8px rgba(18,73,106,0.08);
}
section:first-of-type {
  background: linear-gradient(115deg, #12496A 55%, #F2B545 100%);
  color: #fff;
  box-shadow: 0 7px 34px -12px rgba(18,73,106,0.15);
}
section:first-of-type h1, section:first-of-type h2, section:first-of-type h3, section:first-of-type h4 {
  color: #fff;
}
section:first-of-type p {
  color: #fff;
}
section:first-of-type .cta-button {
  background: linear-gradient(90deg, #F2B545, #fff 160%);
  color: #12496A;
}
section:first-of-type .cta-button:hover, section:first-of-type .cta-button:focus {
  background: linear-gradient(90deg, #fff, #F2B545 120%);
  color: #12496A;
}
@media (min-width: 820px) {
  section {
    padding: 58px 40px;
  }
}

/* --- FLEX CONTAINERS (MANDATORY) --- */
.features-grid, .services-cards, .services-tabs, .testimonial-slider, .testimonial-list, .testimonial-grid, .footer-nav, .card-container, .content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.features-grid, .service-cards {
  justify-content: flex-start;
}
.card {
  position: relative;
  margin-bottom: 20px;
}
.content-grid {
  justify-content: space-between;
  gap: 20px;
}
.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: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 18px -8px #12496A22;
  margin-bottom: 20px;
  min-width: 220px;
  max-width: 370px;
  flex: 1 1 320px;
  transition: box-shadow 0.19s, transform 0.13s;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  box-shadow: 0 6px 24px -10px #F2B54599;
  transform: translateY(-2px) scale(1.03);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* --- FEATURE CARDS --- */
.feature-card, .service-card, .service-tab {
  border-radius: 16px;
  box-shadow: 0 2px 18px -8px rgba(18,73,106,0.09);
  padding: 26px 22px 22px 22px;
  flex: 1 1 280px;
  min-width: 210px;
  max-width: 340px;
  transition: box-shadow 0.18s, transform 0.15s;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}
.feature-card img {
  width: 50px;
  height: 50px;
  margin-bottom: 10px;
}
.feature-card:hover, .service-card:hover, .service-tab:hover,
.feature-card:focus-within, .service-card:focus-within, .service-tab:focus-within {
  box-shadow: 0 7px 24px -10px #F2B545bb;
  transform: translateY(-2.5px) scale(1.033);
}
.feature-card h3, .service-card h3, .service-tab h3 {
  margin-bottom: 6px;
}
.feature-card span, .service-card span, .service-tab span {
  font-size: 0.97rem;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #F2B545;
  font-weight: 600;
}

/* --- QUICK STATS --- */
.quick-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 10px;
}
.quick-stats span {
  background: #12496A;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  border-radius: 23px;
  padding: 7.5px 23px;
  font-size: 1rem;
  box-shadow: 0 1px 5px -2px #12496A11;
}

/* --- CTA BUTTONS --- */
.cta-button {
  margin-top: 12px;
  align-self: flex-start;
}

/* --- TESTIMONIALS --- */
.testimonial-slider, .testimonial-list, .testimonial-grid {
  gap: 24px;
  flex-wrap: wrap;
  align-items: flex-start;
}

.testimonial-card p {
  color: #12496A;
  font-size: 1.07rem;
}
.testimonial-card span {
  color: #F2B545;
  font-size: 0.99rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
}
.star-summary {
  margin-top: 28px;
  font-size: 1.1rem;
  font-weight: 600;
  background: #12496A;
  color: #fff;
  border-radius: 16px;
  padding: 17px 23px;
}

/* --- ADDRESS / CONTACT BLOCK --- */
.footer-contact p, .footer-contact a {
  font-size: 0.97rem;
  color: #12496A;
}
.footer-contact a {
  font-weight: 600;
  color: #F2B545;
  text-decoration: underline;
}
.footer-contact a:hover {
  color: #12496A;
}

/* --- FOOTER --- */
footer {
  background: #F7F7F4;
  color: #12496A;
  border-top: 3px solid #F2B545;
  width: 100%;
  padding: 32px 0 8px 0;
}
.footer-brand-social {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.footer-brand-social img {
  width: 48px;
  height: 48px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 22px;
}
.footer-nav a {
  color: #12496A;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  padding: 3px 10px;
  border-radius: 7px;
  transition: background 0.18s;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: #F2B545;
  color: #fff;
}
.footer-contact {
  margin-bottom: 10px;
}
.footer-legal {
  font-size: 0.93rem;
  color: #6c7a86;
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-legal a {
  color: #12496A;
  padding: 0 5px;
  border-radius: 5px;
  transition: background 0.16s;
}
.footer-legal a:hover {
  background: #F2B545;
  color: #fff;
}

/* --- DESTINATION HIGHLIGHTS & TIPS --- */
.destination-highlights, .travel-tips {
  margin: 22px 0 0 0;
  background: #fff;
  padding: 20px 19px;
  border-radius: 13px;
  box-shadow: 0 2px 12px -8px #12496A33;
}
.destination-highlights h3, .travel-tips h3 {
  color: #F2B545;
  margin-bottom: 8px;
}

/* --- STAR SUMMARY --- */
.star-summary strong {
  color: #F2B545;
}

/* --- COOKIES BANNER --- */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #12496A;
  color: #fff;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 22px 30px 22px 20px;
  z-index: 10701;
  box-shadow: 0 -3px 24px -8px #12496A66;
  gap: 24px;
  animation: slideUpBanner 0.6s cubic-bezier(.77,1.62,.34,1) 1;
}
@keyframes slideUpBanner {
  from { transform: translateY(80px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
#cookie-banner p {
  color: #fff;
  font-size: 1rem;
  flex: 2 1 340px;
  margin-bottom: 0;
}
.cookie-btn-group {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
}
.cookie-consent-btn, .cookie-settings-btn {
  padding: 7px 21px;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  border-radius: 18px;
  cursor: pointer;
  font-family: 'Montserrat', Arial, sans-serif;
  transition: background 0.17s, color 0.17s, box-shadow 0.13s;
}
.cookie-consent-btn.accept {
  background: #F2B545;
  color: #12496A;
}
.cookie-consent-btn.accept:hover, .cookie-consent-btn.accept:focus {
  background: #fff;
  color: #12496A;
  box-shadow: 0 4px 16px -7px #F2B54599;
}
.cookie-consent-btn.reject {
  background: #fff;
  color: #12496A;
  border: 1px solid #F2B545;
}
.cookie-consent-btn.reject:hover, .cookie-consent-btn.reject:focus {
  background: #F2B545;
  color: #fff;
}
.cookie-settings-btn {
  background: transparent;
  color: #F2B545;
  border: 1.5px solid #F2B545;
}
.cookie-settings-btn:hover, .cookie-settings-btn:focus {
  background: #F2B545;
  color: #12496A;
}

/* --- COOKIE SETTINGS MODAL --- */
#cookie-modal {
  position: fixed;
  left: 0; top: 0;
  width: 100vw; height: 100vh;
  background: rgba(0,0,0,0.33);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 11000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
}
#cookie-modal.open {
  opacity: 1; pointer-events: auto;
}
.cookie-modal-box {
  background: #fff;
  color: #12496A;
  border-radius: 17px;
  padding: 34px 28px;
  min-width: 320px;
  max-width: 98vw;
  box-shadow: 0 8px 40px -12px #12496A33;
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: modalZoomIn 0.32s cubic-bezier(.82,2,.44,.98) 1;
}
@keyframes modalZoomIn {
  from { transform: scale(0.88); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
.cookie-modal-title {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: #F2B545;
}
.cookie-category-list {
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 15px;
}
.cookie-toggle {
  appearance: none;
  width: 38px; height: 22px;
  background: #F2B545;
  border-radius: 13px;
  position: relative;
  outline: none;
  cursor: pointer;
  transition: background 0.16s;
}
.cookie-toggle:checked {
  background: #12496A;
}
.cookie-toggle:before {
  content: '';
  display: block;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: #fff;
  position: absolute;
  top: 2px;
  left: 2px;
  transition: transform 0.18s;
}
.cookie-toggle:checked:before {
  transform: translateX(16px);
}
.cookie-category-label {
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
}
.cookie-modal-btn-group {
  display: flex;
  flex-direction: row;
  gap: 11px;
  margin-top: 10px;
}
.cookie-modal-btn {
  padding: 7px 26px;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  border-radius: 23px;
  border: none;
  cursor: pointer;
  background: #F2B545;
  color: #12496A;
  transition: background 0.18s, color 0.18s, box-shadow 0.12s;
}
.cookie-modal-btn.secondary {
  background: #12496A;
  color: #fff;
}
.cookie-modal-btn:hover, .cookie-modal-btn:focus {
  background: #fff;
  color: #12496A;
  box-shadow: 0 2px 16px -6px #12496A66;
}
.cookie-modal-btn.secondary:hover, .cookie-modal-btn.secondary:focus {
  background: #F2B545;
  color: #12496A;
}


/* --- RESPONSIVE DESIGN ADJUSTMENTS --- */
@media (max-width: 1024px) {
  .container {
    max-width: 95vw;
    padding: 0 12px;
  }
  section, .section {
    padding: 28px 6px;
    border-radius: 13px;
    margin-bottom: 34px;
  }
  .feature-card, .service-card, .service-tab {
    min-width: 92%;
    max-width: 100%;
  }
  .testimonial-card {
    min-width: 92%;
    max-width: 100%;
  }
}
@media (max-width: 768px) {
  .container {
    max-width: 100vw;
    padding: 0 5px;
  }
  .content-wrapper {
    gap: 14px;
  }
  section, .section {
    padding: 16px 2px;
    border-radius: 8px;
    margin-bottom: 24px;
  }
  .features-grid, .services-cards, .services-tabs, .testimonial-slider, .testimonial-list, .testimonial-grid, .footer-nav, .card-container, .content-grid {
    flex-direction: column;
    gap: 16px;
  }
  .main-nav {
    display: none !important;
  }
  .cta-button {
    padding: 12px 17px;
    font-size: 1rem;
    margin-top: 9px;
  }
  h1 {
    font-size: 1.5rem;
    margin-bottom: 13px;
  }
  h2 {
    font-size: 1.13rem;
    margin-bottom: 10px;
  }
  .cta-button {
    align-self: stretch;
    width: 100%;
  }
  .testimonial-card {
    padding: 14px;
    border-radius: 8px;
    min-width: 99%;
    font-size: 1rem;
  }
  .quick-stats {
    flex-direction: column;
    gap: 10px;
  }
  #cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 17px 10px;
    gap: 9px;
  }
}

@media (max-width: 480px) {
  h1 { font-size: 1.1rem; }
  h2 { font-size: 1rem; }
  .footer-brand-social img {
    width: 34px;
    height: 34px;
  }
  .cookie-modal-box {
    min-width: 95vw;
    padding: 14px 6px;
  }
}

/* --- ANIMATIONS & MICRO-INTERACTIONS --- */
.cta-button, .cookie-consent-btn, .cookie-modal-btn, .service-card, .feature-card, .testimonial-card {
  will-change: transform, box-shadow;
}
.cta-button:active {
  transform: scale(0.97);
}

/* --- MISCELLANEOUS --- */
.text-section {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

::-webkit-input-placeholder { color:#ccc; }
::-moz-placeholder { color:#ccc; }
:-ms-input-placeholder { color:#ccc; }
::placeholder { color:#ccc; }

@media (max-width: 400px) {
  html { font-size: 14px; }
}

/* --- END OF STYLE.CSS --- */
