/* RESET & NORMALIZE (mobile first) */
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,
main, 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 {
  scroll-behavior: smooth;
}
body {
  line-height: 1.5;
  font-family: 'Roboto', Arial, sans-serif;
  background-color: #F3F6FA;
  color: #1C3552;
  font-size: 16px;
  min-height: 100vh;
}
* {
  box-sizing: inherit;
}
ul, ol {
  list-style-position: inside;
}
img {
  max-width: 100%;
  height: auto;
  display: inline-block;
}
a {
  color: #25A164;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #1C3552;
  text-decoration: underline;
}
hr {
  border: none;
  border-top: 1px solid #dde3eb;
  margin: 24px 0;
}

/* FONTS */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #1C3552;
}
h1 {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 20px;
}
h2 {
  font-size: 2rem;
  line-height: 1.25;
  margin-bottom: 18px;
}
h3 {
  font-size: 1.33rem;
  line-height: 1.3;
  margin-bottom: 12px;
}
h4 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}
p, li, label, input, textarea, select {
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
  color: #384259;
}
strong {
  font-weight: 700;
  color: #1C3552;
}

/* CONTAINER */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: white;
  border-radius: 20px;
  box-shadow: 0 1px 6px rgba(28, 53, 82, 0.05);
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* HEADER NAV */
header {
  background-color: #FFFFFF;
  box-shadow: 0 2px 16px 0 rgba(28, 53, 82, 0.04);
  position: sticky;
  top: 0;
  z-index: 20;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  gap: 24px;
}
.logo img {
  height: 42px;
  width: auto;
  display: block;
}
.main-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: #1C3552;
  padding: 9px 11px;
  border-radius: 8px;
  transition: background 0.18s, color 0.18s;
}
.main-nav a:hover, .main-nav a:focus {
  background-color: #EAF2EC;
  color: #25A164;
}
.main-nav .cta-cta {
  background: #25A164;
  color: #fff;
  font-weight: 700;
  padding: 10px 24px;
  border-radius: 24px;
  box-shadow: 0 1px 8px rgba(37,161,100, 0.10);
  margin-left: 8px;
  border: none;
  transition: background 0.2s, box-shadow 0.2s;
}
.main-nav .cta-cta:hover, .main-nav .cta-cta:focus {
  background: #1C3552;
  color: #fff;
  box-shadow: 0 2px 12px rgba(28,53,82,0.16);
}
.mobile-menu-toggle {
  background: none;
  border: none;
  font-size: 2rem;
  color: #1C3552;
  cursor: pointer;
  display: none;
  padding: 6px 13px 6px 8px;
  border-radius: 8px;
  transition: background 0.17s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background-color: #EAF2EC;
}

/* MOBILE NAVIGATION */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(28, 53, 82, 0.93);
  z-index: 90;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(.41,.79,.41,1);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100vw;
  height: 100vh;
  padding-top: 0;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: all;
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 2.5rem;
  align-self: flex-end;
  margin: 20px 24px 10px 0;
  cursor: pointer;
  z-index: 99;
  padding: 0 9px;
  border-radius: 6px;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  background: #25A164;
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 16px;
  width: 100%;
  align-items: center;
}
.mobile-nav a {
  font-size: 1.25rem;
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 18px 0 8px 0;
  color: #fff;
  font-weight: 600;
  width: 82vw;
  text-align: left;
  border-radius: 12px;
  transition: background 0.16s, color 0.16s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #25A164;
  color: #FFF;
}
@media (max-width: 1024px) {
  .main-nav {
    gap: 13px;
  }
}
@media (max-width: 900px) {
  .main-nav {
    gap: 9px;
  }
  .container {
    padding: 0 10px;
  }
}
@media (max-width: 880px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
}

/* HERO SECTION */
.hero, .booking-hero {
  background-color: #EAF2EC;
  border-radius: 0 0 28px 28px;
  box-shadow: 0 2px 20px rgba(30,53,82,0.03);
  margin-bottom: 60px;
  padding: 40px 0 60px 0;
}
.hero .container,
.booking-hero .container {
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
}
.hero .content-wrapper,
.booking-hero .content-wrapper {
  background: transparent;
  box-shadow: none;
  border-radius: 0;
  padding: 0 10px;
  align-items: flex-start;
}
.hero h1, .booking-hero h1 {
  font-size: 2.1rem;
  margin-bottom: 16px;
  color: #1C3552;
}
.hero p, .booking-hero p {
  margin-bottom: 26px;
  font-size: 1.12rem;
  color: #384259;
}

/* CTA BUTTONS */
.cta-cta {
  display: inline-block;
  background: #25A164;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 15px 34px;
  border: none;
  border-radius: 28px;
  box-shadow: 0 2px 12px rgba(37,161,100,0.13);
  transition: background 0.21s, box-shadow 0.19s, transform 0.17s;
  cursor: pointer;
  margin-top: 10px;
  margin-bottom: 0;
  text-align: center;
  min-width: 184px;
  letter-spacing: 0.01em;
}
.cta-cta:hover, .cta-cta:focus {
  background: #1C3552;
  color: #fff;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 6px 24px rgba(28,53,82,.16);
}

/* ICONS IN SECTION */
.feature-grid, .service-highlights, .step-by-step-process, .step-overview, .brand-values, .why-choose-us {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-start;
  margin-top: 20px;
}
.feature-grid {
  gap: 32px;
  flex-direction: row;
  justify-content: space-between;
}
.feature {
  background-color: #F3F6FA;
  border-radius: 16px;
  box-shadow: 0 1px 8px rgba(28,53,82,0.03);
  padding: 28px 24px 18px 24px;
  min-width: 200px;
  flex: 1 1 220px;
  margin-bottom: 20px;
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  gap: 15px;
  transition: box-shadow 0.17s, background 0.19s;
}
.feature img {
  width: 44px;
  height: 44px;
  margin-bottom: 8px;
}
.feature h3 {
  font-size: 1.125rem;
  color: #1C3552;
}
.feature:hover {
  background: #e3f5ed;
  box-shadow: 0 4px 20px rgba(37,161,100,0.07);
}

.service-highlights, .why-choose-us, .brand-values {
  flex-direction: column;
  gap: 15px;
  width: 100%;
  margin-left: 0;
}
.service-highlights h3, .why-choose-us h3 {
  margin-bottom: 12px;
}
.step-by-step-process ol, .step-overview ol {
  padding-left: 20px;
}

/*********** CARD PATTERNS ***********/
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 1px 7px rgba(28,53,82,0.05);
  padding: 28px 24px;
  flex: 1 1 280px;
  transition: box-shadow 0.19s, border 0.16s;
}
.card:hover {
  box-shadow: 0 3px 16px rgba(37,161,100,0.09);
}
.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;
}
.text-image-section > * {
  flex: 1 1 260px;
}

/*********** TESTIMONIALS ***********/
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #FFFFFF;
  border-radius: 18px;
  box-shadow: 0 1px 13px rgba(28,53,82,0.09);
  margin-bottom: 20px;
  margin-top: 8px;
  max-width: 660px;
  transition: box-shadow 0.18s, background 0.14s;
}
.testimonial-card p {
  color: #1C3552;
  font-size: 1.08rem;
  margin-bottom: 0;
  font-style: italic;
}
.testimonial-meta {
  font-size: 0.97rem;
  font-family: 'Roboto', Arial, sans-serif;
  color: #384259;
  opacity: 0.83;
}
.testimonial-card:hover {
  background: #F3F6FA;
  box-shadow: 0 6px 27px rgba(37,161,100,0.07);
}

/*********** FOOTER ***********/
footer {
  background: #fff;
  border-top: 2px solid #EAF2EC;
  padding: 36px 0 16px 0;
  margin-top: 46px;
}
footer .container {
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
}
.footer-links, .contact-info, .social-links {
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.footer-links {
  flex: 1 1 160px;
}
footer .footer-links a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #1C3552;
  font-weight: 500;
  font-size: 1.01rem;
  transition: color 0.17s;
}
footer .footer-links a:hover, footer .footer-links a:focus {
  color: #25A164;
}
footer .contact-info p, footer .contact-info a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.99rem;
  color: #384259;
}
footer .contact-info img {
  width: 19px;
  height: 19px;
}
.social-links {
  flex-direction: row;
  gap: 18px;
}
.social-links a img {
  width: 28px;
  height: 28px;
  opacity: 0.88;
  transition: opacity 0.14s, filter 0.14s;
}
.social-links a:hover img {
  opacity: 1;
  filter: brightness(1.3);
}

/* FORMS & INPUTS */
input[type="text"], input[type="email"], input[type="password"], textarea, select {
  font-size: 1rem;
  padding: 12px 14px;
  border: 1px solid #EAF2EC;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 1px 2px rgba(30,53,82,0.04);
  width: 100%;
  transition: border-color 0.16s;
  margin-top: 5px;
}
input:focus, textarea:focus, select:focus {
  border-color: #25A164;
  outline: none;
}
label {
  margin-bottom: 5px;
  font-weight: 500;
  font-family: 'Montserrat', Arial, sans-serif;
}

/* TABLES */
table {
  width: 100%;
  border-spacing: 0;
  border-collapse: collapse;
  margin-bottom: 24px;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 14px rgba(28,53,82,0.04);
}
th, td {
  text-align: left;
  padding: 18px 20px 15px 15px;
  border-bottom: 1px solid #EAF2EC;
  font-size: 1rem;
}
th {
  background: #EAF2EC;
  color: #1C3552;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.02rem;
}
tr:last-child td {
  border-bottom: none;
}

/******* FAQ ACCORDION (expand/collapse via JS) *******/
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 24px;
}
.faq-item {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 1px 7px rgba(28,53,82,0.04);
  padding: 18px 22px 18px 18px;
  cursor: pointer;
  border: 1px solid #F3F6FA;
  transition: box-shadow 0.17s, border 0.16s;
}
.faq-item h3 {
  font-size: 1.08rem;
  color: #1C3552;
}
.faq-item div {
  margin-top: 12px;
  color: #384259;
  font-size: 0.97rem;
  display: none;
}
.faq-item.active {
  border-color: #25A164;
  box-shadow: 0 7px 27px rgba(37,161,100,0.08);
}
.faq-item.active div {
  display: block;
  animation: fadeIn .35s;
}
@keyframes fadeIn {
  0% { opacity: 0; transform: translateY(-15px); }
  100% { opacity:1; transform: none; }
}

/******* SEARCH FAQ ******/
.search-faq {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

/******* FEATURE ITEMS *******/
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/******* STEPS ******/
.step-overview, .step-by-step-process {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  align-items: flex-start;
  background: #F3F6FA;
  border-radius: 16px;
  padding: 19px 24px;
  margin-bottom: 20px;
}
.step-overview ol, .step-by-step-process ol {
  flex: 1 1 220px;
}
.step-icons {
  flex: 1 1 140px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.step-icons img {
  width: 74px;
  height: auto;
}

/******* BOOKING SECURITY HINT ******/
.security-hint {
  background: #F3F6FA;
  border-radius: 13px;
  display: flex;
  align-items: center;
  gap: 13px;
  color: #25A164;
  font-weight: 500;
  padding: 10px 24px;
  font-size: 1.06rem;
}
.security-hint img {
  width: 22px; height: 22px;
}

/******* NEXT STEPS & REMINDERS ******/
.next-steps, .contact-reminder {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 1px 9px rgba(37,161,100,0.06);
  padding: 18px 15px;
  margin-bottom: 18px;
}
.next-steps h2 {
  margin: 3px 0 12px 0;
  font-size: 1.22rem;
}

/************************************/
/*********   RESPONSIVE   ***********/
/************************************/
@media (max-width: 1150px) {
  .footer .container {
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
  }
  .feature-grid {
    gap: 20px;
  }
}
@media (max-width: 900px) {
  .feature-grid {
    flex-direction: column;
  }
  .content-wrapper {
    padding: 29px 6px;
  }
  .card {
    padding: 18px 8px;
  }
  .text-image-section {
    gap: 16px;
  }
}
@media (max-width: 768px) {
  h1 {
    font-size: 1.72rem;
  }
  h2 {
    font-size: 1.21rem;
  }
  .content-wrapper, .section {
    padding: 21px 3px;
    border-radius: 13px;
  }
  .hero, .booking-hero {
    padding: 18px 0 30px 0;
    border-radius: 0 0 18px 18px;
  }
  .card-container, .content-grid, .feature-grid, .testimonial-card, .services, .text-image-section {
    flex-direction: column !important;
    gap: 18px;
  }
  .testimonial-card {
    padding: 15px 8px;
  }
  .footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 17px;
  }
  .footer-links, .contact-info, .social-links {
    flex-direction: column;
    gap: 7px;
  }
}
@media (max-width: 540px) {
  h1, h2 { font-size: 1.02rem; }
  .feature {
    min-width: 0;
    padding: 17px 6px 11px 9px;
  }
  .step-overview, .step-by-step-process {
    padding: 9px 6px;
  }
  .card {
    padding: 12px 2px;
    font-size: 0.98rem;
  }
}

/************************************/
/*********   COOKIE BANNER   ********/
/************************************/
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 200;
  width: 100%;
  background: #1C3552;
  color: #fff;
  box-shadow: 0 -4px 18px rgba(28,53,82,0.13);
  padding: 18px 10px 20px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  transition: transform 0.4s cubic-bezier(.41,.9,.41,1);
  transform: translateY(0);
}
.cookie-banner.cookie-banner--hidden {
  transform: translateY(100%);
  pointer-events: none;
}
.cookie-banner p {
  color: #fff;
  font-size: 1.01rem;
  margin-bottom: 0;
  text-align: center;
  font-weight: 400;
}
.cookie-banner .cookie-btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  justify-content: center;
}
.cookie-banner button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  padding: 11px 23px;
  border-radius: 22px;
  box-shadow: 0 1px 8px rgba(28,53,82,0.09);
  font-weight: 600;
  transition: background 0.17s, color 0.17s, box-shadow 0.14s;
}
.cookie-accept {
  background: #25A164;
  color: #fff;
}
.cookie-accept:hover, .cookie-accept:focus {
  background: #1C3552;
  color: #fff;
  box-shadow: 0 4px 20px rgba(37,161,100,0.09);
}
.cookie-reject {
  background: #dae5ef;
  color: #1C3552;
}
.cookie-reject:hover, .cookie-reject:focus {
  background: #1C3552;
  color: #fff;
}
.cookie-settings {
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
}
.cookie-settings:hover, .cookie-settings:focus {
  background: #fff;
  color: #1C3552;
}

/***** COOKIE MODAL ******/
.cookie-modal-wrapper {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(28,53,82,0.52);
  z-index: 210;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.35s;
  opacity: 1;
}
.cookie-modal-wrapper.cookie-modal--hidden {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal {
  background: #fff;
  border-radius: 28px;
  box-shadow: 0 4px 28px rgba(28,53,82,0.18);
  padding: 38px 28px 30px 28px;
  max-width: 410px;
  width: 96vw;
  display: flex;
  flex-direction: column;
  gap: 21px;
  position: relative;
  animation: modalBumpIn 0.45s cubic-bezier(.64,-0.05,.54,1);
}
@keyframes modalBumpIn {
  0% { opacity:0; transform: scale(0.93) translateY(18px); }
  100% { opacity:1; transform: none; }
}
.cookie-modal-close {
  position: absolute;
  top: 16px;
  right: 18px;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #384259;
  cursor: pointer;
  border-radius: 8px;
  transition: background 0.16s;
  z-index: 1;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: #EAF2EC;
}
.cookie-modal h3 {
  margin-bottom: 13px;
  font-size: 1.19rem;
}
.cookie-modal-category {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 10px 0;
  border-bottom: 1px solid #F3F6FA;
  font-size: 1rem;
}
.cookie-modal-category:last-child {
  border-bottom: none;
}
.cookie-modal-category label {
  font-weight: 500;
  font-family: 'Montserrat', Arial, sans-serif;
  cursor: pointer;
  color: #1C3552;
}
.cookie-toggle {
  appearance: none;
  width: 38px;
  height: 18px;
  background: #EAF2EC;
  border-radius: 9px;
  position: relative;
  outline: none;
  transition: background 0.18s;
}
.cookie-toggle:checked {
  background: #25A164;
}
.cookie-toggle::after {
  content: '';
  display: block;
  width: 18px;
  height: 18px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 1px 2px rgba(28,53,82,0.03);
  position: absolute;
  left: 0; top: 0;
  transition: left 0.17s;
}
.cookie-toggle:checked::after {
  left: 20px;
}
.cookie-modal-buttons {
  display: flex;
  gap: 14px;
  margin-top: 16px;
}
@media (max-width: 500px) {
  .cookie-modal {
    padding: 21px 4vw 15px 4vw;
    border-radius: 19px;
    width: 98vw;
  }
}

/************************************/
/*********     UTILITIES    *********/
/************************************/
.hidden {
  display: none !important;
}
.text-center {
  text-align: center !important;
}
.mb-0 { margin-bottom: 0 !important; }
.mt-0 { margin-top: 0 !important; }

/********* SMALL ANIMATIONS *********/
.card, .feature, .testimonial-card, .faq-item {
  transition: box-shadow 0.18s, background 0.17s, border 0.14s;
}
.cta-cta, .main-nav a, .footer-links a {
  transition: background 0.18s, color 0.17s, box-shadow 0.14s, transform 0.13s;
}

/********* CUSTOM SCROLLBAR (modern) *********/
body, .faq-accordion, .mobile-menu {
  scrollbar-color: #d8f4eb #F3F6FA;
  scrollbar-width: thin;
}
::-webkit-scrollbar {
  width: 10px;
  background: #F3F6FA;
  border-radius: 6px;
}
::-webkit-scrollbar-thumb {
  background: #d8f4eb;
  border-radius: 6px;
}
