/* 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 { font-size: 16px; }
body {
  font-family: 'Roboto', Arial, sans-serif;
  background: #fff;
  color: #14213D;
  line-height: 1.65;
  min-height: 100vh;
  overflow-x: hidden;
  letter-spacing: 0.01em;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}
a {
  color: #14213D;
  text-decoration: underline;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #FCA311;
  outline: none;
}
ul, ol {
  margin-left: 22px;
  margin-bottom: 1.2em;
}
li {
  margin-bottom: 8px;
}
.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 22px;
  width: 100%;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #14213D;
  font-weight: 800;
  letter-spacing: 0.01em;
}
h1 { font-size: 2.25rem; margin-bottom: 20px; line-height: 1.18; }
h2 { font-size: 1.75rem; margin-bottom: 18px; line-height: 1.22; }
h3 { font-size: 1.2rem; margin-bottom: 10px; font-weight: 700; }
h4, h5, h6 { font-size: 1.05rem; }
p {
  font-size: 1rem;
  margin-bottom: 1.05em;
}
strong {
  font-weight: 700;
  color: #FCA311;
}

/* ARTISTIC HEADERS */
h1, h2 {
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(92deg,#14213D 68%, #FCA311 95%);
}

/* SECTION LAYOUTS */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 26px;
  box-shadow: 0 2px 24px rgba(20,33,61,0.08);
  position: relative;
}
@media (max-width: 900px) {
  section {
    padding: 32px 12px;
  }
}

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

.text-section {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* SPACING & FLEX LAYOUTS */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  border-radius: 20px;
  box-shadow: 0 3px 24px 0 rgba(20, 33, 61, 0.06);
  background: #fff;
  transition: transform 0.2s, box-shadow 0.22s;
  overflow: hidden;
}
.card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 8px 28px 0 rgba(252,163,17,0.13);
  z-index: 2;
}
.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;
    align-items: flex-start;
    gap: 18px;
  }
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #E5E5E5;
  padding: 20px;
  border-radius: 18px;
  box-shadow: 0 3px 18px 0 rgba(20,33,61,0.09);
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow 0.2s, transform 0.15s;
  color: #14213D; /* DARK TEXT ON LIGHT BG */
}
.testimonial-card blockquote {
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 1.15rem;
  color: #14213D;
  background: none;
  border-left: 5px solid #FCA311;
  padding-left: 12px;
  margin-bottom: 5px;
}
.testimonial-card strong {
  color: #14213D;
}
.testimonial-card:hover {
  box-shadow: 0 8px 30px 0 rgba(252,163,17,0.14);
  transform: translateY(-2px) scale(1.01);
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-bottom: 18px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: rgba(252,163,17,0.08);
  border-left: 5px solid #FCA311;
  border-radius: 15px;
  gap: 15px;
  padding: 22px 20px 18px 20px;
  flex: 1 1 250px;
  min-width: 225px;
  box-shadow: 0 2px 12px rgba(20,33,61,0.08);
  transition: box-shadow 0.2s, background 0.16s;
}
.feature-item:hover {
  background: rgba(252,163,17,0.21);
  box-shadow: 0 8px 24px 0 rgba(252,163,17,0.12);
}
.feature-item img {
  width: 38px;
  height: 38px;
}

/* BUTTONS & CTA */
.cta {
  display: inline-flex;
  align-items: center;
  background: #FCA311;
  color: #14213D;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: bold;
  border: none;
  border-radius: 23px;
  box-shadow: 0 2px 10px 0 rgba(252,163,17,0.11);
  cursor: pointer;
  font-size: 1.1rem;
  padding: 12px 32px;
  margin-top: 10px;
  margin-bottom: 5px;
  letter-spacing: 0.01em;
  text-decoration: none;
  outline: none;
  transition: box-shadow 0.18s, background 0.19s, color 0.18s;
  position: relative;
  z-index: 1;
}
.cta.primary {
  background: #14213D;
  color: #fff;
}
.cta:hover, .cta:focus {
  background: #FCA311;
  color: #fff;
  box-shadow: 0 8px 22px 0 rgba(252,163,17,0.21);
  outline: 2px dashed #14213D;
}
.cta.primary:hover, .cta.primary:focus {
  background: #FCA311;
  color: #14213D;
  outline: 2px dashed #FCA311;
}

/* HEADER & NAVIGATION */
header {
  width: 100%;
  background: #14213D;
  padding: 0;
  min-height: 72px;
  box-shadow: 0 2px 12px 0 rgba(20,33,61,0.07);
  display: flex;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 90;
}
header .container {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
}
.logo,
.logo-footer {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-right: 24px;
  padding: 10px 0;
}
.logo img,
.logo-footer img {
  height: 38px;
  width: auto;
  filter: drop-shadow(0 2px 0 #FCA31144);
}
/* Desktop Nav (Main) */
.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-right: 38px;
}
.main-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  text-decoration: none;
  padding: 8px 13px 8px 13px;
  font-size: 1.02rem;
  border-radius: 17px;
  transition: background 0.16s, color 0.16s;
}
.main-nav a:hover, .main-nav a:focus {
  background: #FCA311;
  color: #14213D;
  outline: none;
}

header .cta {
  margin-left: auto;
  margin-right: 15px;
}

.mobile-menu-toggle {
  display: none;
  background: transparent;
  color: #FCA311;
  border: none;
  font-size: 2.1rem;
  padding: 8px 17px 8px 10px;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.21s;
  z-index: 110;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: #2d364d;
  color: #fff;
  outline: 2px solid #FCA311;
}

/* MOBILE MENU OVERLAY */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(20,33,61,0.97);
  z-index: 9999;
  transition: transform 0.4s cubic-bezier(.68,-0.55,.27,1.55);
  transform: translateX(100vw);
}
.mobile-menu.active {
  display: flex;
  flex-direction: column;
  transform: translateX(0);
  animation: menuSlideIn 0.33s cubic-bezier(.77,0,.18,1);
}
@keyframes menuSlideIn {
  from { transform: translateX(100vw); }
  to   { transform: translateX(0); }
}
.mobile-menu-close {
  align-self: flex-end;
  background: transparent;
  color: #FCA311;
  font-size: 2.2rem;
  border: none;
  cursor: pointer;
  margin: 22px 28px 10px 0;
  transition: color 0.13s, background 0.14s;
  border-radius: 8px;
  padding: 0 10px;
  z-index: 1021;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #fff;
  background: #FCA311;
  outline: 2px solid #2d364d;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  padding: 24px 42px;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.25rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  text-decoration: none;
  padding: 13px 0;
  width: 100%;
  border-radius: 13px;
  transition: background 0.17s, color 0.16s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #FCA311;
  color: #14213D;
}

@media (max-width: 1024px) {
  .main-nav {
    gap: 18px;
    margin-right: 0;
  }
}
@media (max-width: 900px) {
  .main-nav, header .cta.primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
}

/* Footer */
footer {
  background: #14213D;
  color: #fff;
  padding: 32px 0 18px 0;
  width: 100%;
  position: relative;
  margin-top: 50px;
}
footer .container {
  display: flex;
  flex-direction: column;
}
footer .content-wrapper {
  justify-content: space-between;
  align-items: center;
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
.footer-nav a {
  color: #FCA311;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.16s, text-decoration 0.16s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #fff;
  text-decoration: underline;
}
.footer-meta {
  font-size: 0.96rem;
  color: #E5E5E5;
}

@media (max-width: 800px) {
  .footer-nav, .footer-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  footer .content-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
}

/* Cookie Consent Banner */
.cookie-consent-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 3400;
  background: #14213D;
  color: #fff;
  padding: 24px 22px 18px 22px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  box-shadow: 0 -2px 22px 0 rgba(20,33,61,0.18);
  font-size: 1rem;
  animation: cookieBannerIn 0.65s cubic-bezier(.53,.21,.13,.98);
}
@keyframes cookieBannerIn {
  from { transform: translateY(120px); }
  to   { transform: translateY(0); }
}
.cookie-consent-banner p {
  margin-bottom: 8px;
  font-family: 'Roboto', Arial, sans-serif;
  color: #fff;
}
.cookie-consent-banner .cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  align-items: center;
}
.cookie-consent-banner button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  border: none;
  border-radius: 19px;
  font-size: 1rem;
  padding: 10px 22px;
  cursor: pointer;
  margin-right: 6px;
  margin-top: 4px;
}
.cookie-consent-banner .accept-all {
  background: #FCA311;
  color: #14213D;
  transition: background 0.15s;
}
.cookie-consent-banner .accept-all:hover, .cookie-consent-banner .accept-all:focus {
  background: #fff;
  color: #14213D;
  outline: 2px solid #FCA311;
}
.cookie-consent-banner .reject-all {
  background: #fff;
  color: #14213D;
  border: 1.5px solid #FCA311;
}
.cookie-consent-banner .reject-all:hover, .cookie-consent-banner .reject-all:focus {
  background: #FFB656;
  color: #14213D;
}
.cookie-consent-banner .cookie-settings {
  background: none;
  color: #FCA311;
  border: 2.2px dashed #FCA311;
  padding: 10px 18px;
}
.cookie-consent-banner .cookie-settings:hover, .cookie-consent-banner .cookie-settings:focus {
  background: #FCA311;
  color: #14213D;
}
@media (max-width: 650px) {
  .cookie-consent-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    font-size: 0.96rem;
    padding: 18px 6px;
  }
}

/* Cookie Preferences Modal */
.cookie-modal-overlay {
  position: fixed;
  top:0; left:0; right:0; bottom:0;
  z-index: 3600;
  background: rgba(20,33,61,0.74);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.24s;
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  color: #14213D;
  min-width: 320px;
  max-width: 98vw;
  border-radius: 25px;
  padding: 40px 28px 28px 28px;
  box-shadow: 0 4px 36px rgba(20,33,61,0.21);
  display: flex;
  flex-direction: column;
  gap: 20px;
  animation: modalPopIn 0.36s cubic-bezier(.36,1.27,.25,1);
  position: relative;
}
@keyframes modalPopIn {
  from { transform: scale(0.90) translateY(60px); opacity: 0; }
  to   { transform: scale(1) translateY(0);   opacity: 1; }
}
.cookie-modal h2 {
  color: #14213D;
  margin-bottom: 14px;
  font-size: 1.35rem;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 11px;
}
.cookie-category label {
  font-weight: bold;
}
.cookie-category input[type='checkbox'] {
  width: 20px; height: 20px;
  accent-color: #FCA311;
}
.cookie-category .always-on {
  color: #FCA311;
  margin-left: 16px;
  font-size: 0.98em;
}
.cookie-modal-close {
  position: absolute;
  right: 18px;
  top: 14px;
  color: #FCA311;
  background: none;
  border: none;
  font-size: 1.7rem;
  cursor: pointer;
  border-radius: 8px;
  transition: background 0.11s;
  z-index: 10;
}
.cookie-modal-close:hover,.cookie-modal-close:focus {
  background: #FFE7BB;
}
.cookie-modal .cookie-actions {
  margin-top: 12px;
  display: flex;
  gap: 15px;
}
@media (max-width: 540px) {
  .cookie-modal { padding: 30px 10px 22px 10px; }
}

/* MAP PLACEHOLDER */
.map-placeholder {
  background: #FCA31122 url('../assets/map-placeholder.svg') center center no-repeat;
  min-height: 220px;
  border-radius: 18px;
  margin: 12px 0 0 0;
}

/* MISC. */
::-webkit-scrollbar {
  width: 11px;
  background: #E5E5E5;
}
::-webkit-scrollbar-thumb {
  background: #FCA31199;
  border-radius: 8px;
}

/* Responsive adjustments - mobile first */
@media (max-width: 950px) {
  .feature-grid {
    gap: 18px;
    flex-direction: column;
  }
  .feature-item {
    min-width: 100%;
  }
}
@media (max-width: 640px) {
  .container {
    padding: 0 5px;
  }
  .content-wrapper {
    gap: 12px;
  }
  h1, h2 { font-size: 1.35rem; }
  .map-placeholder { min-height: 120px; }
}

/* Artistic visual accents */
section:before {
  content: '';
  display: block;
  position: absolute;
  left: -40px; top: 55px;
  width: 32px; height: 32px;
  background: #FCA311;
  opacity: 0.12;
  border-top-right-radius: 60px;
  border-bottom-right-radius: 63px;
}
section:after {
  content: '';
  position: absolute;
  right: -35px; bottom: 30px;
  width: 36px; height: 36px;
  background: #14213D;
  opacity: 0.13;
  border-radius: 60px 24px 30px 62px;
}
@media (max-width: 620px) {
  section:before, section:after { display: none; }
}

/* Animations for cards on hover */
.feature-item, .card {
  will-change: box-shadow, transform;
  transition: box-shadow 0.20s, border 0.13s, background 0.16s, transform 0.18s;
}
.card:focus-within, .feature-item:focus-within {
  outline: 2.5px solid #FCA311;
}

/* Forms (if present in expansions) */
input[type="text"], input[type="email"], textarea {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  padding: 11px 16px;
  border: 1.5px solid #E5E5E5;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 1px 6px rgba(20,33,61,0.06);
  color: #14213D;
  outline: none;
  margin-bottom: 13px;
  width: 100%;
  transition: border 0.16s;
}
input[type="text"]:focus, input[type="email"]:focus, textarea:focus {
  border-color: #FCA311;
}

button:focus-visible, .cta:focus-visible, a:focus-visible, .mobile-menu-close:focus-visible {
  outline: 2px solid #FCA311;
  outline-offset: 2px;
}

/* Utility for spacing */
.mb-2 { margin-bottom: 20px !important; }
.mb-3 { margin-bottom: 32px !important; }
.mt-2 { margin-top: 20px !important; }
.mt-3 { margin-top: 32px !important; }

/* Ensuring NO overlapping in flex systems */
.card, .feature-item, .testimonial-card, section {
  margin-bottom: 20px;
}

/* Z-INDEX management */
header { z-index: 90; }
.mobile-menu { z-index: 9999; }
.cookie-consent-banner { z-index: 3400; }
.cookie-modal-overlay { z-index: 3600; }

/* END OF CSS */
