/* 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;
  font-size: 16px;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  line-height: 1.6;
  font-family: 'Roboto', Arial, sans-serif;
  background: #F8FAFC;
  color: #222E33;
  min-height: 100vh;
  font-weight: 400;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #125175;
  margin-bottom: 16px;
  font-weight: 700;
}
h1 {font-size: 2.25rem; margin-bottom: 24px;}
h2 {font-size: 1.5rem; margin-bottom: 18px;}
h3 {font-size: 1.125rem; margin-bottom: 14px;}
h4, h5, h6 {font-size: 1rem; margin-bottom: 10px;}
p, ul, ol, dl, blockquote {font-size: 1rem; margin-bottom: 14px;}
.subtitle {
  font-size: 1.125rem;
  color: #215C34;
  opacity: 0.9;
}
strong { font-weight: 600; }
a {
  color: #215C34;
  text-decoration: none;
  transition: color .24s;
}
a:hover, a:focus {
  color: #318BB0;
  text-decoration: underline;
}
li, dd, dt {
  padding-bottom: 6px;
}
dt { font-weight: 600; }

/* UTILITY CONTAINERS */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
 
}
main {
  margin-top: 80px;
  margin-bottom: 60px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #FFFFFF;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(33, 76, 103, 0.06);
}
.content-wrapper {
  margin-bottom: 24px;
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.features-grid, .services-main-grid, .services-preview, .plan-highlights, .faq-list, .booking-info, .testimonials {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.services-preview {gap:24px;}
.features-grid {gap:24px;}

/* CARDS & CARDS CONTAINERS */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(49,139,176, 0.07);
  padding: 32px 24px;
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 15px;
  transition: box-shadow .2s, transform .2s;
}
.card:hover {
  box-shadow: 0 8px 24px rgba(33,76,103, 0.10);
  transform: translateY(-4px);
}

/* TEXT-IMAGE FLEX SECTIONS */
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

/* HERO BANNER */
.hero {
  background: linear-gradient(90deg, #EFF9F0 0% 60%, #DAE6ED 100%);
  padding-top: 50px; padding-bottom: 56px;
  border-radius: 0 0 32px 32px;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.hero h1 {
  color: #215C34;
  font-size: 2.5rem;
  margin-bottom: 16px;
  line-height: 1.2;
}
.hero .subtitle {
  margin-bottom: 30px;
  max-width: 540px;
  color: #215C34;
  opacity: .94;
}

/* FEATURES & SERVICE CARDS */
.feature, .service-item {
  background: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 1px 6px rgba(49,139,176, 0.06);
  padding: 28px 20px 24px 20px;
  min-width: 220px;
  flex: 1 1 260px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  transition: box-shadow .18s, transform .18s;
}
.feature img, .service-item img {
  width: 42px;
  height: 42px;
}
.feature:hover, .service-item:hover {
  box-shadow: 0 6px 20px rgba(33,92,52,0.11);
  transform: translateY(-3px) scale(1.02);
}

/* PRICING PLANS */
.pricing-table {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-bottom: 32px;
}
.pricing-plan {
  background: #F5FAF6;
  border: 1.5px solid #E2EDEC;
  border-radius: 15px;
  padding: 32px 22px 28px 22px;
  flex: 1 1 260px;
  min-width: 220px;
  box-shadow: 0 3px 16px rgba(33,92,52, 0.05);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 20px;
  transition: box-shadow .2s, border-color .2s;
}
.pricing-plan strong {font-size: 1.35rem; color:#215C34;}
.pricing-plan:hover {
  border-color: #318BB0;
  box-shadow: 0 10px 24px rgba(49,139,176,0.11);
}

/* TESTIMONIALS */
.testimonials {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px 28px 22px 28px;
  min-width: 240px;
  background: #F2F8FC;
  color: #184556;
  border-radius: 16px;
  box-shadow: 0 2px 10px rgba(49,139,176,0.10);
  margin-bottom: 20px;
  position: relative;
  font-size: 1rem;
}
.testimonial-card p {
  color: #1B2A32;
  font-size: 1.03rem;
  text-align: center;
}
.testimonial-author {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  color: #318BB0;
  margin-top: 12px;
  letter-spacing: 0.2px;
}
.star-rating {
  display: flex;
  gap: 3px;
  align-items: center;
  margin-bottom: 4px;
}
.star-rating img {
  height: 20px;
  width: 20px;
}

/* FAQ & HIGHLIGHTS */
.faq-list, .plan-highlights {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.faq-item, .plan-highlights li {
  background: #EEF6F1;
  border-radius: 10px;
  padding: 16px 22px;
  margin-bottom: 20px;
  font-size: 1rem;
  min-width: 220px;
  flex: 1 1 260px;
}

/* CONTENT SECTION */
.text-section {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 32px;
}
.text-section ul, .text-section ol {
  margin-left: 20px;
  margin-bottom: 12px;
}
.text-section li { margin-bottom: 7px;}

/* CONTACT DETAILS */
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.contact-row {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #F2F8FC;
  padding: 18px 28px;
  border-radius: 12px;
  box-shadow: 0 1px 6px rgba(49,139,176,0.05);
}
.contact-row img {
  width: 30px;
  height: 30px;
}
.contact-row h3 {
  margin-bottom: 5px;
  color: #215C34;
}

/* BOOKING INFO */
.booking-info {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.booking-info div {
  background: #EFF9F0;
  display: flex;
  align-items: center;
  gap: 16px;
  border-radius: 10px;
  padding: 12px 18px;
  color: #215C34;
  min-width: 210px;
  font-weight: 500;
}
.booking-info img {
  height: 22px;
  width: 22px;
}


/* CTA BUTTONS */
.cta-primary,
.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #215C34;
  color: #FFF;
  border: none;
  outline: none;
  font-weight: 600;
  border-radius: 7px;
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 13px 40px;
  font-size: 1.08rem;
  box-shadow: 0 4px 18px rgba(33,92,52, .08);
  margin-top: 10px;
  margin-bottom: 10px;
  transition: background .18s, color .18s, transform .13s;
  cursor: pointer;
  text-decoration: none;
  letter-spacing: 0.08em;
}
.cta-btn.secondary, .cta-btn.secondary:visited {
  background: #318BB0;
}
.cta-btn:hover, .cta-primary:hover,
.cta-btn:focus, .cta-primary:focus {
  background: #318BB0;
  color: #FFF;
  transform: translateY(-2px) scale(1.02);
  text-decoration: none;
}
.cta-btn.secondary:hover {
  background: #125175;
}

/* CALL TO ACTION SECTIONS */
.call-to-action {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 23px;
  background: #E6F3EA;
  border-radius: 13px;
  box-shadow: 0 2px 12px rgba(33,92,52,0.07);
  padding: 38px;
}
.call-to-action h2 {
  color: #215C34;
  font-size: 1.55rem;
  margin-bottom: 18px;
}

/* BOOKING SUMMARY */
.booking-summary {
  background: #F2F8FC;
  border: 1px solid #D2E0EA;
  padding: 22px 28px;
  border-radius: 14px;
  margin-bottom: 18px;
}

/* HEADER/NAVIGATION */
header {
  background: #FFF;
  box-shadow: 0 2px 10px rgba(49,139,176,0.05);
  padding: 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 990;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 9px;
  padding-bottom: 9px;
}
.logo img {
  height: 48px;
  width: auto;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.02rem;
  font-weight: 600;
}
.main-nav a {
  color: #125175;
  text-decoration: none;
  padding: 7px 11px;
  border-radius: 5px;
  transition: background 0.15s, color 0.15s;
}
.main-nav a:hover, .main-nav a:focus {
  background: #EFF9F0;
  color: #215C34;
}
.cta-primary {
  margin-left: 24px;
}
.mobile-menu-toggle {
  display: none;
  background: transparent;
  border: none;
  font-size: 2.1rem;
  color: #215C34;
  padding: 6px 13px;
  cursor: pointer;
  transition: background .16s;
  z-index: 2001;
}
.mobile-menu-toggle:focus {
  outline: 2px solid #318BB0;
}

/* MOBILE MENU OVERLAY */
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: #125175;
  color: #FFF;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  z-index: 2000;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(.7,.3,.3,.9);
  box-shadow: -4px 0 32px rgba(49,139,176,0.11);
  visibility: hidden;
}
.mobile-menu.open {
  transform: translateX(0);
  visibility: visible;
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 24px 18px 18px 0;
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  transition: color .16s;
  z-index: 2100;
}
.mobile-menu-close:hover { color: #EFF9F0; }
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
  margin-left: 38px;
  margin-top: 24px;
  font-size: 1.22rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
}
.mobile-nav a {
  color: #EFF9F0;
  text-decoration: none;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  width: 100%;
  transition: color 0.13s, background 0.16s;
  border-radius: 4px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #318BB0;
  color: #fff;
  text-decoration: none;
}

/* MOBILE NAV VISIBLE BREAKPOINT */
@media (max-width: 990px) {
  .main-nav, .cta-primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
}
@media (min-width: 991px) {
  .mobile-menu {display: none !important;}
}

/* FOOTER */
footer {
  background: #215C34;
  color: #FFFFFF;
  padding-top: 32px;
  padding-bottom: 18px;
  box-shadow: 0 -3px 16px rgba(33, 92, 52, 0.08);
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
}
.footer-brand img {
  height: 35px;
  width: auto;
}
.footer-nav {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
  margin: 8px 0;
}
.footer-nav a {
  color: #EFF9F0;
  font-size: 1rem;
  font-weight: 500;
  padding: 2px 7px;
  border-radius: 3px;
  transition: color 0.14s, background 0.16s;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: #318BB0;
  color: #fff;
  text-decoration: none;
}
.footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  color: #BFE7D3;
  font-size: 0.96rem;
  align-items: flex-start;
  margin-bottom: 10px;
}
.footer-contact div {
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-contact img {
  width: 16px;
  height: 16px;
}
.footer-bottom {
  font-size: 0.9rem;
  color: #86AD9D;
  margin-top: 14px;
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  z-index: 4000;
  background: #FFFFFF;
  color: #184556;
  box-shadow: 0 -2px 16px rgba(49,139,176,0.13);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  justify-content: center;
  padding: 20px 10px;
  font-size: 1rem;
  line-height: 1.5;
  min-height: 76px;
  border-radius: 14px 14px 0 0;
  animation: fadeInUp .7s cubic-bezier(.29,1.12,.84,1.02);
}
.cookie-banner p {
  margin-bottom: 0;
  font-size: 1rem;
  color: #184556;
}
.cookie-banner .cookie-btn, .cookie-banner .cookie-settings-btn {
  margin-left: 16px;
  margin-right: 10px;
  background: #215C34;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.98rem;
  font-weight: 600;
  padding: 10px 26px;
  cursor: pointer;
  transition: background .16s, color .16s, transform .11s;
  outline: none;
}
.cookie-banner .cookie-btn:hover, .cookie-banner .cookie-settings-btn:hover {
  background: #318BB0;
  color: #fff;
  transform: translateY(-2px) scale(1.04);
}
.cookie-banner .cookie-btn.reject {
  background: #125175;
}
.cookie-banner .cookie-btn.reject:hover {
  background: #318BB0;
}
.cookie-banner .cookie-settings-btn {
  background: #EFF9F0;
  color: #125175;
  border: 1.3px solid #318BB0;
  margin-left: 0;
  margin-right: 0;
}
.cookie-banner .cookie-settings-btn:hover {
  background: #DAE6ED;
  color: #215C34;
}

/* COOKIE SETTINGS MODAL */
.cookie-modal {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(49, 139, 176, 0.11);
  z-index: 4100;
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.25s, visibility 0.25s;
}
.cookie-modal.open {
  visibility: visible;
  opacity: 1;
}
.cookie-modal .cookie-modal-content {
  background: #fff;
  border-radius: 13px;
  box-shadow: 0 8px 40px rgba(33,76,103,0.14);
  padding: 38px 32px 24px 32px;
  max-width: 360px;
  width: 95%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
  position: relative;
  animation: slideModalUp .36s cubic-bezier(.37,1.65,.84,1.01);
}
.cookie-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  background: transparent;
  border: none;
  font-size: 1.5rem;
  color: #318BB0;
  cursor: pointer;
  z-index: 4200;
}
.cookie-modal-content h3 {
  margin-bottom: 8px;
  color: #125175;
  font-size: 1.18rem;
}
.cookie-modal-categories {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cookie-category-row {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: flex-start;
}
.cookie-category-row label {
  font-size: 1rem;
  font-weight: 500;
  color: #184556;
}
.cookie-category-row input[type="checkbox"] {
  accent-color: #215C34;
  width: 17px;
  height: 17px;
}
.cookie-category-row .always-on {
  font-size: 0.98rem;
  color: #318BB0;
  margin-left: 6px;
  font-weight: 500;
}
.cookie-modal .cookie-btn {
  margin-top: 18px;
}

@keyframes fadeInUp {
  from {opacity: 0;transform: translateY(20px);}
  to {opacity: 1;transform: translateY(0);}
}
@keyframes slideModalUp {
  from {opacity: 0;transform: translateY(60px);}
  to {opacity: 1;transform: translateY(0);}
}

/* RESPONSIVE STYLES */
@media (max-width: 990px) {
  .container { max-width: 98vw; padding: 0 12px; }
  .hero h1 { font-size: 2rem;}
  .hero { padding-top: 32px; padding-bottom: 32px; }
  .main-nav, .cta-primary { display: none !important; }
}
@media (max-width: 768px) {
  html { font-size: 15px;}
  main {
    margin-top: 64px;
    margin-bottom: 30px;
  }
  .container { max-width: 100vw; padding: 0 4vw; }
  h1 { font-size: 1.5rem; }
  h2 { font-size: 1.18rem; }
  h3 { font-size: 1rem; }
  .hero { padding-bottom: 23px; border-radius: 0 0 20px 20px; }
  .features-grid, .services-main-grid, .services-preview, .plan-highlights, .faq-list, .booking-info, .testimonials, .pricing-table {
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
  }
  .text-image-section {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
  .footer-contact,
  .footer-nav {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }
  .call-to-action {
    padding: 22px 6px;
    border-radius: 8px;
  }
  .cookie-modal .cookie-modal-content {
    padding: 18px 6vw 11px 6vw;
  }
}
@media (max-width: 480px) {
  html { font-size: 14px;}
  .hero .container {padding:0 4vw;}
  .footer-brand span {display: none;}
  .footer-contact div {
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
  }
  .card, .feature, .service-item, .pricing-plan, .faq-item, .plan-highlights li, .testimonial-card {
    padding-left: 10px; padding-right: 10px;
  }
}
/* ACCESSIBILITY FOCUS STYLES */
a:focus, button:focus, .cookie-btn:focus, .cta-btn:focus {
  outline: 2px solid #318BB0;
  outline-offset: 2px;
}

/* Z-INDEX LAYERING */
header, .mobile-menu, .cookie-modal, .cookie-banner {z-index:9999;}

/* SPACING CORRECTION TO AVOID OVERLAPPING */
.section, .card, .feature, .service-item, .pricing-plan, .faq-item, .plan-highlights li, .testimonial-card {
  margin-bottom: 20px !important;
}

/* END CSS */