/* RESET & BASE ------------------------------------------------------ */

/* Remove browser defaults and normalize typography, box-model */
html {
  box-sizing: border-box;
  font-size: 100%;
  scroll-behavior: smooth;
}
*, *::before, *::after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  background: #fff;
  color: #171a1c;
  min-height: 100vh;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg {
  max-width: 100%;
  display: block;
  height: auto;
}
a {
  color: #264653;
  text-decoration: none;
  transition: color 0.2s;
}
a:focus {
  outline: 2px solid #F4A261;
  outline-offset: 2px;
}
button {
  font-family: inherit;
  font-size: 16px;
  background: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
ul, ol {
  margin-left: 24px;
  margin-bottom: 16px;
}
li {
  margin-bottom: 8px;
}
/* TYPOGRAPHY -------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Helvetica, Arial, sans-serif;
  color: #264653;
  font-weight: 700;
  line-height: 1.2;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 16px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
}
h4, h5, h6 {
  font-size: 1.1rem;
}
p, address {
  font-size: 1rem;
  color: #171a1c;
  margin-bottom: 16px;
}
strong {
  font-weight: 600;
}
/* LAYOUT ------------------------------------------------------------ */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
section {
  background: #fff;
  border-radius: 12px;
  margin-bottom: 60px;
  padding: 40px 20px;
  box-shadow: 0 2px 16px rgba(38,70,83,0.03);
  transition: box-shadow 0.2s;
}
@media (max-width: 992px) {
  section {
    padding: 30px 8px;
    margin-bottom: 36px;
  }
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
/* Utility text image */
.text-section {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 10px;
  margin-bottom: 20px;
  box-shadow: 0 1.5px 8px rgba(38,70,83,0.04);
  position: relative;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover {
  box-shadow: 0 3px 18px rgba(38,70,83,0.10);
  transform: translateY(-2px);
}
/* HEADER & NAVIGATION ---------------------------------------------- */
header {
  background: #fff;
  box-shadow: 0 1px 10px rgba(38,70,83,0.04);
  position: sticky;
  top: 0;
  z-index: 100;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  gap: 0;
}
header nav {
  display: flex;
  flex-direction: row;
  gap: 22px;
  align-items: center;
}
header nav a {
  font-family: 'Montserrat', Helvetica, Arial, sans-serif;
  font-size: 1rem;
  color: #264653;
  padding: 6px 0;
  border-radius: 3px;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: color 0.2s, background 0.2s;
}
header nav a:hover, header nav a:focus {
  background: #f7eedd;
  color: #F4A261;
}
.cta-btn {
  font-family: 'Montserrat', Helvetica, Arial, sans-serif;
  background: #264653;
  color: #fff;
  border: none;
  padding: 10px 24px;
  border-radius: 25px;
  font-size: 1rem;
  font-weight: 600;
  margin-left: 24px;
  transition: background 0.22s, color 0.22s, box-shadow 0.22s;
  box-shadow: 0 2px 8px rgba(38,70,83,0.07);
  cursor: pointer;
  outline: none;
  display: inline-block;
}
.cta-btn:hover, .cta-btn:focus {
  background: #F4A261;
  color: #264653;
  box-shadow: 0 4px 16px rgba(244,162,97,0.13);
}
/* Hide cta-btn in small header nav */
@media (max-width: 900px) {
  header .cta-btn {
    display: none;
  }
}
/* MOBILE NAVIGATION ------------------------------------------------ */
.mobile-menu-toggle {
  display: none;
  background: #264653;
  color: #fff;
  border-radius: 5px;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-left: 12px;
  z-index: 120;
  transition: background 0.2s, color 0.2s;
}
.mobile-menu-toggle:focus {
  outline: 2px solid #F4A261;
}
@media (max-width: 900px) {
  header nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: rgba(255,255,255,0.98);
  box-shadow: 0 8px 40px rgba(38,70,83,0.13);
  z-index: 2000;
  transform: translateX(-100%);
  transition: transform 0.36s cubic-bezier(.62,-0.3,.47,1.5);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: #264653;
  color: #fff;
  border-radius: 50%;
  font-size: 1.4rem;
  width: 40px;
  height: 40px;
  border: none;
  margin: 18px 18px 0 18px;
  align-self: flex-end;
  transition: background 0.22s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #F4A261;
  color: #264653;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-left: 32px;
  margin-top: 18px;
}
.mobile-nav a {
  padding: 8px 0;
  font-family: 'Montserrat', Helvetica, Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 500;
  color: #264653;
  border-radius: 3px;
  transition: color 0.15s, background 0.15s;
}
.mobile-nav a:active, .mobile-nav a:hover, .mobile-nav a:focus {
  color: #F4A261;
  background: #f7eedd;
}
@media (min-width: 901px) {
  .mobile-menu {
    display: none;
  }
}
/* HERO ------------------------------------------------------------- */
section:first-of-type {
  background: #fff;
  box-shadow: none;
  margin-top: 24px;
  border-radius: 0;
}
/* FEATURE/ENGAGEMENT LISTS ------------------------------------------ */
ul {
  list-style: disc;
  padding-left: 1.25em;
}
ul li {
  margin-bottom: 8px;
  font-size: 1rem;
  color: #264653;
  display: flex;
  align-items: center;
  gap: 10px;
}
ul li img, .footer-contact img {
  width: 22px;
  height: 22px;
}
.content-wrapper > ul, .content-wrapper > ol {
  margin: 0 0 8px 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
ol {
  list-style: decimal inside;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
/* TESTIMONIALS ----------------------------------------------------- */
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding: 20px 26px;
  margin-bottom: 20px;
  background: #f9fafb;
  border-radius: 12px;
  box-shadow: 0 1px 10px rgba(38,70,83,0.07);
  border-left: 4px solid #F4A261;
  max-width: 570px;
  transition: box-shadow 0.18s, border-color 0.22s;
}
.testimonial-card p {
  margin-bottom: 0;
  font-size: 1.05rem;
  color: #171a1c;
}
.testimonial-card span {
  color: #264653;
  font-size: 0.97rem;
  font-style: italic;
}
.testimonial-card:hover {
  box-shadow: 0 4px 22px rgba(38,70,83,0.18);
  border-left-color: #264653;
}
/* MAP/LOCATION PLACEHOLDER ------------------------------------------ */
.location-map-placeholder {
  background: #f5f5f7;
  border-radius: 9px;
  padding: 32px 0;
  text-align: center;
  color: #aaa;
  font-size: 1rem;
  margin-top: 18px;
}
/* FOOTER ------------------------------------------------------------ */
footer {
  background: #f9fafd;
  border-top: 1px solid #ebeff2;
  padding: 40px 0 20px 0;
  margin-top: 70px;
}
footer .container {
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}
footer nav {
  display: flex;
  flex-direction: column;
  gap: 13px;
}
footer nav a {
  color: #264653;
  font-size: 0.98rem;
  letter-spacing: 0.01em;
  font-family: 'Montserrat', sans-serif;
  transition: color 0.2s;
}
footer nav a:hover, footer nav a:focus {
  color: #F4A261;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 0.97rem;
  color: #38424c;
  margin-top: 8px;
}
.footer-contact img:first-child {
  width: 42px;
  height: auto;
  margin-bottom: 10px;
}
.footer-contact address {
  font-style: normal;
  margin-bottom: 1px;
  color: #38424c;
}
.footer-contact span {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #264653;
  margin-bottom: 3px;
}
/* CARD-RELATED ---------------------------------------------------------- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
}
/* GENERIC UTILITY CLASSES ------------------------------------------ */
.mt-24 { margin-top: 24px; }
.mt-48 { margin-top: 48px; }
.mb-24 { margin-bottom: 24px; }
.mb-40 { margin-bottom: 40px; }
.text-center { text-align: center; }
.align-center { align-items: center; }
.align-start { align-items: flex-start; }
.flex-row { flex-direction: row !important; }
.flex-col { flex-direction: column !important; }
.d-flex { display: flex !important; }
.gap-8 { gap: 8px; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }
.gap-32 { gap: 32px; }
/* BUTTONS, INTERACTIVE STATES -------------------------------------- */
button, .cta-btn {
  transition: background 0.17s, color 0.17s, box-shadow 0.17s, border 0.17s;
}
button:active, .cta-btn:active {
  transform: scale(0.99);
}
/* FORMS (future-proof for contact) --------------------------------- */
input, select, textarea {
  font-family: inherit;
  font-size: 1rem;
  padding: 10px 12px;
  border: 1px solid #e2e5e9;
  border-radius: 7px;
  outline: none;
  background: #f9fafb;
}
input:focus, select:focus, textarea:focus {
  border-color: #F4A261;
}
/* RESPONSIVE DESIGN ----------------------------------------------- */
@media (max-width: 1100px) {
  .container {
    max-width: 95vw;
  }
  footer .container {
    flex-direction: column;
    gap: 32px;
    align-items: flex-start;
  }
}
@media (max-width: 900px) {
  .container { padding: 0 8px; }
  .footer-contact { margin-top: 16px; }
}
@media (max-width: 670px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.45rem; }
  section { padding: 20px 4px; }
}
@media (max-width: 540px) {
  .container { padding: 0 3vw; }
  .footer-contact img:first-child { width: 32px; }
  section { padding: 16px 0px; }
  .testimonial-card { padding: 10px 10px; }
}
/* COOKIE CONSENT BANNER -------------------------------------------- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  z-index: 3000;
  background: #fff;
  border-top: 1.5px solid #e5e8ec;
  box-shadow: 0 -2px 34px rgba(38,70,83,0.04);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 20px 26px;
  gap: 24px;
  width: 100vw;
  font-size: 1rem;
  color: #171a1c;
  transition: transform 0.32s ease, opacity 0.32s;
  opacity: 1;
  transform: translateY(0%);
}
.cookie-banner.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(100%);
}
.cookie-banner-content {
  flex: 1 1 60%;
}
.cookie-banner-actions {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
}
.cookie-btn {
  border-radius: 18px;
  padding: 7px 20px;
  font-weight: 600;
  font-size: 1rem;
  border: 1.5px solid #F4A261;
  background: #fff;
  color: #264653;
  transition: background 0.18s, color 0.18s, border 0.18s;
}
.cookie-btn.accept {
  background: #264653;
  color: #fff;
  border: 1.5px solid #264653;
}
.cookie-btn.reject {
  background: #fff;
  color: #F4A261;
  border: 1.5px solid #F4A261;
}
.cookie-btn.settings {
  background: #fff;
  color: #264653;
  border: 1.5px solid #e2e5e9;
}
.cookie-btn:hover, .cookie-btn:focus {
  box-shadow: 0 4px 22px rgba(38,70,83,0.09);
  outline: none;
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: #F4A261;
  color: #264653;
  border-color: #F4A261;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #fef4e9;
  color: #264653;
  border-color: #e2e5e9;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #f4f8fa;
  color: #F4A261;
}
@media (max-width: 700px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    padding: 11px 10px;
    font-size: 0.98rem;
  }
  .cookie-banner-actions {
    gap: 8px;
  }
}
/* COOKIE PREFERENCES MODAL ----------------------------------------- */
.cookie-modal {
  position: fixed;
  z-index: 4100;
  left: 0; top: 0;
  width: 100vw; height: 100vh;
  background: rgba(38,70,83,0.25);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}
.cookie-modal.open {
  opacity: 1;
  pointer-events: all;
}
.cookie-modal-content {
  background: #fff;
  border-radius: 14px 14px 0 0;
  box-shadow: 0 -2px 22px rgba(38,70,83,0.09);
  width: 100%;
  max-width: 430px;
  margin: 0 auto;
  padding: 32px 26px 24px 26px;
  position: relative;
  transition: transform 0.36s cubic-bezier(.62,-0.3,.47,1.5);
  transform: translateY(100%);
}
.cookie-modal.open .cookie-modal-content {
  transform: translateY(0%);
}
.cookie-modal-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.cookie-modal-header h3 {
  font-size: 1.2rem;
  color: #264653;
  margin-bottom: 0;
}
.cookie-modal-close {
  background: #264653;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 38px; height: 38px;
  font-size: 1.1rem;
  line-height: 38px;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.19s, color 0.19s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: #F4A261;
  color: #264653;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 18px;
}
.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #f7f9fa;
  padding: 13px 14px;
  border-radius: 7px;
}
.cookie-category label {
  font-size: 1rem;
  color: #264653;
  font-weight: 500;
}
.cookie-category input[type=checkbox] {
  width: 18px;
  height: 18px;
  accent-color: #264653;
}
.cookie-category.essential label {
  color: #aaa;
  font-style: italic;
}
.cookie-category.essential input[type=checkbox] {
  display: none;
}
.cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 12px;
  justify-content: flex-end;
}
@media (max-width: 510px) {
  .cookie-modal-content {
    max-width: 99vw;
    padding: 14px 4vw 10px 4vw;
  }
}
/* ANIMATIONS ------------------------------------------------------- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0px);
  }
}
.fade-in-up {
  animation: fadeInUp 0.5s cubic-bezier(.6,-0.28,.74,.05) both;
}
/* ACCORDION, DROPDOWN, ETC. (future proof) ------------------------ */
.accordion-content,
.dropdown-content {
  display: none;
}
.accordion.open .accordion-content,
.dropdown.open .dropdown-content {
  display: block;
}

/* MISC ------------------------------------------------------------- */
::-webkit-scrollbar {
  width: 9px;
  background: #f5f7fa;
}
::-webkit-scrollbar-thumb {
  background: #e8ecef;
  border-radius: 7px;
}
/* SELECTION */
::selection {
  background: #f2e9e1;
}
[class^='icon-'], [class*=' icon-'] {
  display: inline-flex;
  vertical-align: middle;
  margin-right: 5px;
}


/* MOBILE STACKING -------------------------------------------------- */
@media (max-width: 800px) {
  .content-grid, .card-container, .container, footer .container {
    flex-direction: column !important;
    gap: 20px;
    align-items: stretch;
  }
  footer .container { align-items: flex-start; }
}

/* ENSURE MINIMUM SPACING BETWEEN ALL CARDS/SECTIONS -------------- */
section + section {
  margin-top: 28px;
}

/* Visually hidden utility for a11y */
.visually-hidden {
  position: absolute !important;
  width: 1px !important; height: 1px !important;
  overflow: hidden !important;
  clip: rect(1px,1px,1px,1px) !important;
  white-space: nowrap !important;
  border: 0 !important;
  padding: 0 !important;
  margin: -1px !important;
}
