/* --- RESET & BASE --- */
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, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, main, section, article, aside, nav, header, footer, figure, figcaption, details, summary, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html { font-size: 100%; scroll-behavior: smooth; }
body {
  font-family: 'Open Sans', Arial, sans-serif;
  color: #222;
  background: #F4F7F6;
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale;
}
main { flex: 1 0 auto; }
img { max-width: 100%; height: auto; display: block; }
a { color: #2A5766; text-decoration: none; transition: color 0.15s; }
a:hover, a:focus { color: #FCBA36; }
ul, ol { padding-left: 22px; }
li { margin-bottom: 0.5em; }

/* --- TYPOGRAPHY --- */
h1, .h1 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2.5rem;
  font-weight: 900;
  letter-spacing: -1px;
  color: #2A5766;
  margin-bottom: 20px;
  line-height: 1.14;
}
@media (max-width: 576px) {
  h1, .h1 { font-size: 2rem; }
}
h2, .h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: #2A5766;
  margin-bottom: 14px;
}
h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #1a3240;
  letter-spacing: 0.02em;
  margin-bottom: 10px;
}
h4, h5, h6 {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1.1em;
  font-weight: 700;
  color: #2A5766;
  margin-bottom: 8px;
}
p, .footer-copy {
  font-size: 1rem;
  color: #222;
  margin-bottom: 16px;
}
strong { font-weight: bold; }
em { color: #2A5766; font-style: italic; }
small { font-size: 0.93em; }

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

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

/* --- SPACING & SECTIONING --- */
section, .section {
  background: #fff;
  border-radius: 16px;
  margin-bottom: 60px;
  padding: 40px 20px;
  box-shadow: 0 4px 18px 0 rgba(67,140,163,0.11);
  transition: box-shadow 0.25s;
}
section.hero {
  background: #2A5766;
  color: #fff;
  box-shadow: 0 8px 32px 0 rgba(42,87,102,0.17);
}
section.hero h1, section.hero p, section.hero .cta-primary, section.hero .cta-secondary {
  color: #fff;
}
@media (max-width: 768px) {
  section, .section { padding: 32px 6px; }
}

/* --- HEADER & NAVIGATION --- */
header {
  background: #fff;
  box-shadow: 0 2px 16px rgba(42,87,102,0.07);
  position: sticky; top: 0;
  z-index: 50;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
  gap: 16px;
}
.logo img { height: 45px; }
nav.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: #2A5766;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  padding: 8px 14px;
  transition: color 0.17s, background 0.17s;
  border-radius: 8px;
}
.main-nav a:hover, .main-nav a:focus {
  color: #fff;
  background: #FCBA36;
}
.cta-primary, .cta-secondary {
  display: inline-block;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 900;
  padding: 14px 28px;
  font-size: 1.14rem;
  letter-spacing: 0.04em;
  border-radius: 24px;
  margin-left: 20px;
  background: #FCBA36;
  color: #fff;
  border: none;
  box-shadow: 0 4px 14px rgba(252,186,54,0.13);
  cursor: pointer;
  transition: background 0.16s, color 0.16s, box-shadow 0.23s;
  outline: none;
  text-align: center;
}
.cta-primary:hover, .cta-primary:focus {
  background: #2A5766;
  color: #fff;
  box-shadow: 0 8px 28px rgba(42,87,102,0.20);
}
.cta-secondary {
  background: #fff;
  color: #2A5766;
  border: 2px solid #2A5766;
  margin-left: 0;
}
.cta-secondary:hover, .cta-secondary:focus {
  background: #FCBA36;
  color: #fff;
  border-color: #FCBA36;
}
.mobile-menu-toggle {
  display: none;
  background: #FCBA36;
  color: #fff;
  border: none;
  font-size: 2rem;
  border-radius: 12px;
  width: 44px;
  height: 44px;
  cursor: pointer;
  z-index: 55;
  margin-left: 24px;
  transition: background 0.22s;
}
.mobile-menu-toggle:active, .mobile-menu-toggle:focus { background: #2A5766; }

@media (max-width: 992px) {
  nav.main-nav, .cta-primary { display: none !important; }
  .mobile-menu-toggle { display: block; }
}

/* --- MOBILE MENU --- */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; bottom: 0; right: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(44, 79, 97, 0.94);
  transform: translateX(105%);
  transition: transform 0.33s cubic-bezier(.51,.21,.18,1.02);
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding: 0;
}
.mobile-menu.open { transform: translateX(0%); }
.mobile-menu-close {
  background: none;
  color: #fff;
  font-size: 2.6rem;
  border: none;
  margin: 28px 24px 0 0;
  align-self: flex-end;
  cursor: pointer;
  z-index: 202;
  transition: color 0.18s;
}
.mobile-menu-close:focus, .mobile-menu-close:hover { color: #FCBA36; }
nav.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  margin-left: 36px;
  margin-top: 32px;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  font-size: 1.17rem;
  padding: 12px 0;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  border-radius: 10px;
  transition: color 0.16s, background 0.14s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #FCBA36;
  background: #fff2d1;
}
@media (min-width: 993px) {
  .mobile-menu { display: none; }
}

/* --- HERO SECTION --- */
section.hero {
  background: #2A5766;
  color: #fff;
  border-radius: 0 0 32px 32px;
  box-shadow: 0 10px 40px 0 rgba(42,87,102,0.17);
  margin-bottom: 60px;
  min-height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
}
section.hero .content-wrapper {
  gap: 20px;
  align-items: flex-start;
}
section.hero h1 { color: #fff; }
section.hero p { color: #ebeef0; }

/* --- CARDS AND FLEX PATTERNS --- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  box-shadow: 0 4px 14px rgba(42,87,102,0.08);
  border-radius: 18px;
  margin-bottom: 20px;
  position: relative;
  padding: 28px;
  flex: 1 1 320px;
  min-width: 280px;
  transition: box-shadow 0.23s, transform 0.15s;
}
.card:hover {
  box-shadow: 0 8px 32px rgba(252,186,54,0.27);
  transform: translateY(-7px) scale(1.02);
}

.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;
}
@media (max-width: 768px) {
  .text-image-section { flex-direction: column; }
  .content-grid { flex-direction: column; }
  .card-container { flex-direction: column; } 
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 24px 28px;
  background: #fff;
  box-shadow: 0 4px 17px rgba(42,87,102,0.15);
  border-radius: 20px;
  margin-bottom: 24px;
  min-width: 240px;
  max-width: 430px;
  transition: box-shadow 0.21s, transform 0.13s;
  color: #2A5766; /* dark text for accessibility */
}
.testimonial-card:hover {
  box-shadow: 0 8px 28px rgba(252,186,54,0.15);
  transform: scale(1.025);
}
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.testimonial-author {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: #FCBA36;
  margin-top: -5px;
}

/* --- FEATURES --- */
.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
  justify-content: center;
}
.feature {
  background: #F4F7F6;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(252,186,54,0.09);
  padding: 28px 20px 22px 20px;
  flex: 1 1 210px;
  min-width: 185px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  transition: box-shadow 0.16s, transform 0.12s;
  margin-bottom: 0;
}
.feature img { width: 48px; height: 48px; margin-bottom: 7px; }
.feature:hover {
  box-shadow: 0 7px 24px #FCBA36aa;
  transform: scale(1.03) translateY(-2px);
}

/* --- FAQ, TIPS, EVENTS, SERVICES --- */
.faq-list, .tips-grid, .event-list, .services-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.faq-item, .tip-area, .event-card, .service-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(67,140,163,0.07);
  padding: 28px 20px;
  flex: 1 1 245px;
  margin-bottom: 20px;
  transition: box-shadow 0.2s, transform 0.14s;
}
.faq-item:hover, .tip-area:hover, .event-card:hover, .service-card:hover {
  box-shadow: 0 7px 24px #FCBA36aa;
  transform: translateY(-6px) scale(1.01);
}
.service-card img, .event-card img, .tip-area img {
  width: 44px;
  height: 44px;
  margin-bottom: 12px;
}
.event-details, .service-price {
  font-weight: bold;
  color: #FCBA36;
  margin-top: 12px;
  font-size: 1.1rem;
}

/* --- FOOTER --- */
footer {
  background: #2A5766;
  color: #fff;
  padding: 42px 0 0 0;
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
  box-shadow: 0 -4px 24px rgba(42,87,102,0.12);
  margin-top: 60px;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 12px;
}
.footer-nav a {
  color: #fff;
  font-weight: 700;
  font-size: 1.13rem;
  padding: 5px 10px;
  border-radius: 6px;
  transition: background 0.13s, color 0.13s;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: #FCBA36;
  color: #2A5766;
}
.footer-contact {
  display: flex; flex-wrap: wrap; gap: 32px;
  align-items: flex-start;
}
.footer-contact div {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 1rem;
  line-height: 1.3;
  margin-bottom: 11px;
  color: #fff;
}
.footer-contact a { color: #fff; font-weight: 600; transition: color 0.14s; }
.footer-contact a:hover, .footer-contact a:focus { color: #FCBA36; }
.footer-contact img { width: 22px; height: 22px; }
.footer-social {
  display: flex;
  align-items: center;
  gap: 22px;
  margin: 16px 0;
}
.footer-social a img {
  width: 34px; height: 34px;
  filter: drop-shadow(0 1px 6px #FCBA36aa);
  transition: filter 0.14s, transform 0.14s;
}
.footer-social a:hover img, .footer-social a:focus img {
  filter: drop-shadow(0 2px 24px #FCBA36ee);
  transform: scale(1.15);
}
.footer-copy {
  color: #fff;
  font-size: 0.98em;
  margin: 20px 0 0 0;
  padding-bottom: 28px;
}
@media (max-width: 768px) {
  .footer-nav, .footer-contact, .footer-social {
    flex-direction: column;
    gap: 11px;
  }
}

/* --- CONTACT INFO GRID --- */
.contact-info-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 32px;
}
.contact-info-block {
  display: flex;
  align-items: center;
  gap: 15px;
  background: #F4F7F6;
  border-radius: 12px;
  padding: 16px 19px;
  min-width: 250px;
  flex: 1 1 200px;
}
.map-placeholder {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 15px;
  padding: 18px 0 0 0;
}
.map-placeholder img { width: 48px; height: 48px; }
@media (max-width: 768px) {
  .contact-info-grid { flex-direction: column; }
  .map-placeholder { flex-direction: column; align-items: flex-start; }
}

/* --- STORY TIMELINE --- */
.story-timeline h3 {
  color: #FCBA36;
  font-size: 1.11em;
  margin-top: 24px;
}
.story-timeline ul {
  margin-top: 8px;
  margin-bottom: 10px;
  padding-left: 22px;
}
.story-timeline li { margin-bottom: 7px; color: #2A5766; font-size: 1rem; }

/* --- ANIMATIONS/MICRO-INTERACTIONS --- */
button, .cta-primary, .cta-secondary, a, .card, .service-card, .feature, .event-card, .tip-area, .testimonial-card {
  transition: box-shadow 0.22s, background 0.18s, color 0.17s, transform 0.18s;
}

/* --- GENERAL UTILITIES --- */
.section { margin-bottom: 60px; padding: 40px 20px; }
.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, .feature { display: flex; flex-direction: column; align-items: flex-start; gap: 15px; }

/* --- ADDITIONAL RESPONSIVENESS --- */
@media (max-width: 576px) {
  h1 { font-size: 1.65rem; }
  h2 { font-size: 1.31rem; }
  .testimonial-card, .card, .service-card, .feature, .event-card, .tip-area {
    padding: 18px 9px;
    min-width: 185px;
  }
  .section, section { padding: 26px 4px; }
}

@media (max-width: 480px) {
  .card-container, .content-grid, .features-grid, .tips-grid, .faq-list, .event-list, .services-list, .footer-contact {
    flex-direction: column; gap: 14px !important;
  }
  .mobile-nav { margin-left: 14px; }
}

/* --- COOKIES BANNER --- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: #2A5766;
  color: #fff;
  box-shadow: 0 -5px 32px rgba(42,87,102,0.10);
  z-index: 2050;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 22px 16px 20px 16px;
  font-size: 1rem;
  animation: cookieShow 0.6s cubic-bezier(.51,.21,.18,1.02);
}
@keyframes cookieShow {
  from { transform: translateY(80px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner .cookie-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-left: 14px;
}
.cookie-banner button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: bold;
  border: none;
  border-radius: 16px;
  outline: none;
  cursor: pointer;
  font-size: 1rem;
  padding: 11px 22px;
  margin: 0 2px;
  transition: background 0.18s,color 0.15s,box-shadow 0.16s;
}
.cookie-banner .accept {
  background: #FCBA36;
  color: #fff;
  box-shadow: 0 3px 12px rgba(252,186,54,0.16);
}
.cookie-banner .accept:hover, .cookie-banner .accept:focus {
  background: #fff;
  color: #2A5766;
}
.cookie-banner .reject {
  background: #fff;
  color: #2A5766;
  border: 2px solid #FCBA36;
}
.cookie-banner .reject:hover, .cookie-banner .reject:focus {
  background: #FCBA36;
  color: #fff;
}
.cookie-banner .settings {
  background: #2A5766;
  color: #fff;
  border: 2px solid #FCBA36;
}
.cookie-banner .settings:hover, .cookie-banner .settings:focus {
  background: #FCBA36;
  color: #fff;
}

/* --- COOKIES MODAL --- */
.cookie-modal-overlay {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  width: 100vw; height: 100vh;
  background: rgba(44,79,97,0.74);
  z-index: 2100;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: modalFadeIn 0.32s cubic-bezier(.51,.21,.18,1.02);
}
@keyframes modalFadeIn {
  from { opacity: 0; } to { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  color: #2A5766;
  border-radius: 24px;
  max-width: 94vw; width: 400px;
  padding: 32px 24px 24px 24px;
  box-shadow: 0 8px 40px rgba(42,87,102,0.19);
  position: relative;
  display: flex; flex-direction: column; align-items: flex-start;
  animation: modalPop 0.24s cubic-bezier(.51,.21,.18,1.02);
}
@keyframes modalPop {
  from { transform: scale(0.8); opacity:0 } to { transform: scale(1); opacity:1 }
}
.cookie-modal h2 {
  font-size: 1.35rem;
  color: #FCBA36;
  font-weight: 900;
  margin-bottom: 14px;
}
.cookie-modal .category {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 14px 0;
}
.cookie-modal .category label {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.09rem;
  color: #2A5766;
}
.cookie-modal .toggle {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 24px;
}
.cookie-modal .toggle input {
  opacity: 0;
  width: 0; height: 0;
}
.cookie-modal .slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #F4F7F6;
  border-radius: 24px;
  transition: .4s;
}
.cookie-modal .toggle input:checked + .slider {
  background: #FCBA36;
}
.cookie-modal .slider:before {
  position: absolute;
  content: '';
  height: 19px;
  width: 19px;
  left: 3px;
  bottom: 2.5px;
  background-color: #fff;
  border-radius: 50%;
  transition: .4s;
  box-shadow:0 2px 7px #F4F7F6;
}
.cookie-modal .toggle input:checked + .slider:before {
  transform: translateX(19px);
}
.cookie-modal .modal-actions {
  display: flex; gap: 13px; margin-top: 16px;
}
.cookie-modal .close-modal {
  position: absolute;
  top: 16px; right: 18px;
  background: none; border: none;
  font-size: 1.91rem;
  color: #2A5766;
  cursor: pointer;
  transition: color 0.16s;
}
.cookie-modal .close-modal:hover, .cookie-modal .close-modal:focus { color: #FCBA36; }

/* Hide modal/banner by default for JS control */
.cookie-modal-overlay { display: none; }
.cookie-banner { display: none; }
.cookie-modal-overlay.open, .cookie-banner.open { display: flex; }

/* --- SCROLLBAR --- */
::-webkit-scrollbar { width: 8px; background: #F4F7F6; }
::-webkit-scrollbar-thumb { background: #FCBA36; border-radius: 5px; }

/* --- FORMS (for completeness) --- */
input, textarea, select {
  border: 2px solid #F4F7F6;
  border-radius: 10px;
  padding: 8px 12px;
  font-size: 1rem;
  margin-bottom: 14px;
  background: #fff;
  transition: border 0.2s;
}
input:focus, textarea:focus, select:focus {
  border-color: #FCBA36;
  outline: none;
}
button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: bold;
  background: #FCBA36;
  color: #fff;
  border: none;
  border-radius: 20px;
  padding: 10px 22px;
  font-size: 1rem;
  cursor: pointer;
  margin: 3px 0;
  transition: background 0.16s, color 0.13s;
}
button:hover, button:focus {
  background: #2A5766;
  color: #fff;
}

/* --- SPECIALS, AESTHETIC HIGHLIGHTS (optional) --- */
.feature img, .service-card img, .event-card img, .tip-area img {
  filter: drop-shadow(0 1px 9px #FCBA3680);
}

/* --- VIBRANT ENERGETIC TOUCHES --- */
.card, .feature, .service-card, .event-card, .tip-area {
  border: 2.5px solid #fff;
  box-shadow: 0 4px 21px rgba(240,135,45,0.09);
}
.card:hover, .feature:hover, .service-card:hover, .event-card:hover, .tip-area:hover {
  border-color: #FCBA36;
  box-shadow: 0 8px 29px #FCBA36cc;
}

section.hero, .cta-primary, .cta-secondary, .footer-social a img {
  animation: pulsePop 1.3s cubic-bezier(.53,.22,.31,1.07) 1;
}
@keyframes pulsePop {
  0% { filter: brightness(1.25) drop-shadow(0 0 8px #FCBA3680); transform: scale(1.02); }
  60% { filter: none; transform: scale(1); }
  100% { filter: none; }
}

/* --- PRINT --- */
@media print {
  header, footer, .mobile-menu, .cookie-banner, .cookie-modal-overlay { display: none !important; }
  .section, section, .card, .feature, .testimonial-card, .service-card, .event-card { box-shadow: none !important; background: #fff !important; }
}
