/* --- CSS RESET & NORMALIZATION --- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  font-family: 'Open Sans', Arial, sans-serif;
  background-color: #F1FAEE;
  color: #1D3557;
  min-height: 100vh;
  font-size: 1rem;
  line-height: 1.6;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg {
  display: block;
  max-width: 100%;
  height: auto;
}
input, button, textarea, select {
  font-family: inherit;
  font-size: 1rem;
  background: none;
  border: none;
  outline: none;
  color: inherit;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
ul, ol {
  list-style: none;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #1D3557;
  font-weight: 700;
  line-height: 1.15;
}
h1 { font-size: 2.5rem; margin-bottom: 24px; }
h2 { font-size: 2rem; margin-bottom: 20px; }
h3 { font-size: 1.25rem; margin-bottom: 16px; }

strong { font-weight: 600; }

p { margin-bottom: 16px; }

/* --- BASE LAYOUT CLASSES --- */
.container {
  width: 100%;
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

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

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(29, 53, 87, 0.07), 0 0.5px 2px rgba(0,0,0,0.03);
  margin-bottom: 20px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: box-shadow 0.22s cubic-bezier(.4,0,.2,1), transform 0.2s;
  position: relative;
}
.card:hover {
  box-shadow: 0 6px 24px rgba(29, 53, 87, 0.12);
  transform: translateY(-2px) scale(1.01);
}

.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;
}

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

.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(29, 53, 87, 0.09);
  margin-bottom: 20px;
  font-size: 1.125rem;
}
.testimonial-card p {
  color: #1D3557;
  margin-bottom: 0;
}
.testimonial-card span {
  font-size: 0.95rem;
  color: #457B9D;
  font-weight: 500;
}

.feature-grid {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-bottom: 24px;
}
.feature-grid > div {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 1px 7px rgba(29,53,87,0.06);
  padding: 24px 20px 20px 20px;
  flex: 1 1 220px;
  min-width: 220px;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  transition: box-shadow 0.2s, transform 0.17s;
}
.feature-grid > div:hover {
  box-shadow: 0 4px 20px rgba(29, 53, 87, 0.14);
  transform: translateY(-2px) scale(1.01);
}
.feature-grid img {
  width: 40px; height: 40px; margin-bottom: 8px;
}

.services-list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 20px;
}
.services-list .text-section {
  background: #fff;
  padding: 24px 18px;
  border-radius: 10px;
  box-shadow: 0 1px 7px rgba(29,53,87,0.05);
  min-width: 210px;
  flex: 1 1 210px;
}

.team-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.team-values {
  background: #fff;
  padding: 22px 16px;
  border-radius: 10px;
  box-shadow: 0 1px 7px rgba(29,53,87,0.06);
}

.faq-snippet {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 1px 8px rgba(29,53,87,0.06);
  padding: 20px 16px;
  margin-top: 14px;
}
.faq-snippet strong {
  color: #1D3557;
}

.faq-list strong {
  display: block;
  color: #1D3557;
  margin-bottom: 3px;
  font-size: 1rem;
}
.faq-list p {
  margin-bottom: 12px;
}

.address-map {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 1px 7px rgba(29,53,87,0.04);
  padding: 18px 14px;
}

.booking-steps {
  background: #fff;
  padding: 18px 14px;
  border-radius: 8px;
  box-shadow: 0 1px 7px rgba(29,53,87,0.05);
  margin-bottom: 18px;
  margin-top: 5px;
}

.service-pricing {
  margin-top: 7px;
  font-size: 1.09rem;
}


/* --- HEADER & NAVIGATION --- */
header {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  padding: 18px 20px;
  border-bottom: 1px solid #E6ECF0;
  position: relative;
  z-index: 10;
}
.logo-link img {
  height: 38px;
  width: auto;
  display: block;
}
.main-navigation {
  display: flex;
  flex-direction: row;
  gap: 28px;
}
.main-navigation a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  color: #1D3557;
  padding: 4px 6px;
  border-radius: 4px;
  font-weight: 500;
  transition: background 0.2s, color 0.18s;
}
.main-navigation a:hover, .main-navigation a:focus {
  background: #A8DADC;
  color: #1D3557;
}
.cta-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  background: #1D3557;
  color: #fff;
  border-radius: 25px;
  padding: 12px 30px;
  font-size: 1.1rem;
  box-shadow: 0 2px 6px rgba(29,53,87,0.04);
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: background 0.22s, color 0.16s, box-shadow 0.2s, transform 0.14s;
  border: none;
  display: inline-block;
  cursor: pointer;
  margin-left: 18px;
  outline: none;
}
.cta-btn:hover, .cta-btn:focus {
  background: #457B9D;
  color: #fff;
  box-shadow: 0 4px 18px rgba(29,53,87,0.11);
  transform: translateY(-2px);
}

/* --- MOBILE MENU --- */
.mobile-menu-toggle {
  position: fixed;
  right: 22px;
  top: 24px;
  z-index: 101;
  background: #fff;
  color: #1D3557;
  border: 1px solid #A8DADC;
  border-radius: 50%;
  font-size: 2rem;
  padding: 6px 12px 8px 12px;
  line-height: 1;
  cursor: pointer;
  display: none;
  box-shadow: 0 2px 10px rgba(29,53,87,0.05);
  transition: box-shadow 0.2s, background 0.18s;
}
.mobile-menu-toggle:active {
  background: #A8DADC;
}

.mobile-menu {
  position: fixed;
  top: 0; left: 0; height: 100vh; width: 100vw;
  background: #fff;
  z-index: 2002;
  box-shadow: 0 6px 32px rgba(29,53,87,0.18);
  pointer-events: none;
  opacity: 0;
  transform: translateX(100vw);
  transition: transform 0.28s cubic-bezier(.5,.17,.34,1.16), opacity 0.19s;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-top: 52px;
}
.mobile-menu.open {
  pointer-events: auto;
  opacity: 1;
  transform: translateX(0);
}
.mobile-menu-close {
  background: transparent;
  border: none;
  color: #1D3557;
  font-size: 2.1rem;
  position: absolute;
  top: 17px; right: 26px;
  padding: 5px 8px;
  cursor: pointer;
  z-index: 2102;
  border-radius: 50%;
  transition: background 0.15s;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  background: #A8DADC;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 26px;
  margin-top: 32px;
  margin-left: 32px;
}
.mobile-nav a {
  font-size: 1.3rem;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #1D3557;
  padding: 8px 0px;
  border-radius: 8px;
  font-weight: 600;
  transition: background 0.21s, color 0.12s;
}
.mobile-nav a:focus, .mobile-nav a:hover {
  background: #A8DADC;
  color: #457B9D;
}

/* --- FOOTER --- */
footer {
  background: #fff;
  border-top: 1px solid #E6ECF0;
  padding: 32px 20px 26px 20px;
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}
footer nav {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
footer nav a {
  color: #1D3557;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 3px 6px;
  border-radius: 3px;
  transition: background 0.17s, color 0.16s;
}
footer nav a:hover, footer nav a:focus {
  background: #A8DADC;
  color: #1D3557;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 9px;
  font-size: 0.95rem;
  color: #457B9D;
}
.footer-brand img {
  height: 28px;
}

/* --- BUTTONS & INTERACTIVES --- */
button, .cta-btn, .mobile-nav a {
  cursor: pointer;
  outline: none;
  transition: background 0.19s, color 0.17s, box-shadow 0.16s, transform 0.16s;
}
:focus {
  outline: 2px solid #A8DADC;
  outline-offset: 2px;
}

/* --- LISTS --- */
ul, ol {
  margin-bottom: 14px;
  padding-left: 0px;
}
ul li, ol li {
  margin-bottom: 10px;
  color: #1D3557;
  padding-left: 0px;
  font-size: 1rem;
  line-height: 1.6;
  position: relative;
  padding-left: 25px;
}
ul li:before {
  content: "";
  display: inline-block;
  position: absolute;
  left: 0; top: 8px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #A8DADC;
}
ol li {
  counter-increment: customli;
}
ol {
  counter-reset: customli;
}
ol li:before {
  content: counter(customli) ". ";
  font-weight: 700;
  color: #A8DADC;
  position: absolute;
  left: 0; top: 0;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
}

/* --- RESPONSIVE DESIGN --- */
@media (max-width: 1024px) {
  .container {
    max-width: 94vw;
    padding-left: 14px;
    padding-right: 14px;
  }
  header, footer {
    padding-left: 10px;
    padding-right: 10px;
  }
}
@media (max-width: 900px) {
  .feature-grid, .services-list, .card-container {
    flex-direction: column;
    gap: 20px;
  }
  .feature-grid > div, .services-list .text-section {
    max-width: 100%; min-width: unset;
  }
}
@media (max-width: 768px) {
  html { font-size: 15px; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
  header {
    flex-direction: row;
    align-items: center;
    padding: 14px 10px;
  }
  .main-navigation, .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .section {
    padding: 26px 8px;
    margin-bottom: 38px;
  }
  .container {
    padding-left: 7px;
    padding-right: 7px;
  }
  .content-grid, .content-wrapper, .team-list {
    flex-direction: column;
    gap: 16px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
  .footer-brand {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
}
@media (max-width: 480px) {
  html { font-size: 14px; }
  h1 { font-size: 1.33rem; }
  h2 { font-size: 1.1rem; }
  .feature-grid > div, .services-list .text-section, .card {
    padding: 14px 8px;
  }
}

/* --- COOKIE CONSENT --- */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; width: 100vw;
  background: #fff;
  box-shadow: 0 -4px 24px rgba(29,53,87,0.09);
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  padding: 20px 24px 20px 24px;
  z-index: 5000;
  font-size: 1rem;
  transition: transform 0.3s, opacity 0.23s;
  opacity: 1;
  transform: translateY(0);
}
.cookie-banner.hide {
  opacity: 0;
  transform: translateY(100%);
  pointer-events: none;
}
.cookie-banner p {
  color: #1D3557;
  max-width: 600px;
  margin-bottom: 0;
}
.cookie-banner-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}
.cookie-btn {
  background: #A8DADC;
  color: #1D3557;
  font-family: 'Montserrat', Arial, sans-serif;
  border-radius: 18px;
  padding: 8px 20px;
  font-size: 1rem;
  border: none;
  font-weight: 600;
  transition: background 0.18s, color 0.15s, box-shadow 0.13s;
  box-shadow: 0 1px 4px rgba(29,53,87,0.10);
}
.cookie-btn.accept {
  background: #1D3557;
  color: #fff;
}
.cookie-btn.reject {
  background: #F1FAEE;
  color: #1D3557;
  border: 1px solid #A8DADC;
}
.cookie-btn.settings {
  background: #fff;
  color: #1D3557;
  border: 1px solid #A8DADC;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #457B9D;
  color: #fff;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #A8DADC;
  color: #1D3557;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #A8DADC;
  color: #1D3557;
}

/* Cookie Modal */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: rgba(29,53,87,0.18);
  z-index: 9000;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.23s;
}
.cookie-modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 46px rgba(29,53,87,0.13);
  min-width: 325px;
  max-width: 95vw;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  z-index: 9100;
  opacity: 0;
  transform: scale(0.94);
  transition: opacity 0.17s, transform 0.23s;
}
.cookie-modal-overlay.open .cookie-modal {
  opacity: 1;
  transform: scale(1);
}
.cookie-modal-close {
  position: absolute;
  top: 13px; right: 15px;
  background: none;
  border: none;
  color: #1D3557;
  font-size: 2rem;
  cursor: pointer;
  border-radius: 50%;
  transition: background 0.13s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: #A8DADC;
}
.cookie-modal h2 {
  font-size: 1.4rem;
  font-family: 'Montserrat', Arial, sans-serif;
}
.cookie-category-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 14px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 10px 0;
  border-bottom: 1px solid #E6ECF0;
}
.cookie-category:last-child {
  border-bottom: none;
}
.cookie-category label {
  font-size: 1rem;
  color: #1D3557;
  font-weight: 500;
}
.cookie-toggle {
  appearance: none;
  width: 36px;
  height: 20px;
  background: #A8DADC;
  border-radius: 12px;
  position: relative;
  outline: none;
  cursor: pointer;
  transition: background 0.17s;
}
.cookie-toggle:checked {
  background: #457B9D;
}
.cookie-toggle:before {
  content: '';
  position: absolute;
  left: 3px;
  top: 3px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #fff;
  transition: left 0.17s;
}
.cookie-toggle:checked:before {
  left: 18px;
}
.cookie-category input[disabled], .cookie-category input[disabled] + label {
  opacity: 0.6;
  cursor: default;
}

/* --- TRANSITIONS (micro-interactions) --- */
a, button, .cta-btn, .card, .feature-grid > div, .main-navigation a, .mobile-nav a, .cookie-btn {
  transition-property: background, color, box-shadow, transform, opacity;
  transition-timing-function: cubic-bezier(.4,0,.2,1);
  transition-duration: 0.18s;
}

/* --- SPACING between major blocks --- */
section:not(:last-child) {
  margin-bottom: 60px;
}

@media (max-width: 480px) {
  .cookie-modal {
    min-width: unset;
    padding: 16px 7px;
  }
  .cookie-banner {
    flex-direction: column;
    gap: 13px;
    padding: 12px 7px;
    font-size: 0.98rem;
  }
}

/* --- END --- */
