/* ===========================
   CSS RESET & NORMALIZATION
   =========================== */
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 {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  box-sizing: border-box;
}
*, *:before, *:after {
  box-sizing: inherit;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, main, menu, nav, section {
  display: block;
}
body {
  background: #FAFAFB;
  color: #232323;
  font-family: 'Roboto', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  min-height: 100vh;
  width: 100%;
  -webkit-font-smoothing: antialiased;
}
ul, ol {
  list-style: none;
}
a {
  background-color: transparent;
  color: #23426F;
  text-decoration: none;
  transition: color .2s;
}
a:hover, a:focus {
  color: #F0B63A;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  outline: none;
  border: none;
  background: none;
}

/* ===========================
   TYPOGRAPHY SCALE & CLASSES
   =========================== */
h1, .h1 {
  font-family: 'Montserrat', 'Georgia', serif;
  font-size: 2.4rem;
  line-height: 1.16;
  color: #23426F;
  letter-spacing: 0.01em;
  font-weight: 700;
  margin-bottom: 18px;
}
h2, .h2 {
  font-family: 'Montserrat', 'Georgia', serif;
  font-size: 1.65rem;
  line-height: 1.18;
  color: #232323;
  font-weight: 600;
  margin-bottom: 16px;
}
h3, .h3 {
  font-family: 'Montserrat', 'Georgia', serif;
  font-size: 1.18rem;
  font-weight: 500;
  color: #23426F;
  margin-bottom: 10px;
}
h4, .h4 {
  font-family: 'Montserrat', 'Georgia', serif;
  font-size: 1rem;
  font-weight: 400;
  color: #23426F;
  margin-bottom: 10px;
}
p, li, blockquote, em, strong {
  font-family: 'Roboto', 'Georgia', serif;
  font-size: 1rem;
  color: #252525;
}
strong {
  font-weight: 600;
  font-family: 'Montserrat', 'Georgia', serif;
}
blockquote {
  font-style: italic;
  font-size: 1.13rem;
  background: #F7F7F9;
  border-left: 4px solid #F0B63A;
  margin: 24px 0;
  padding: 18px 24px;
  border-radius: 6px;
  color: #23426F;
  box-shadow: 0 2px 8px 0 rgba(35, 66, 111, 0.05);
}

/* ===========================
   LAYOUT STRUCTURE
   =========================== */
.container {
  width: 100%;
  max-width: 1120px;
  margin-inline: auto;
  padding-left: 20px;
  padding-right: 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
@media (max-width: 768px) {
  .section {
    margin-bottom: 40px;
    padding: 28px 8px;
  }
}

/* ========== FLEX UTILITY PATTERNS ========== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 16px 0 rgba(35, 66, 111, 0.11);
  transition: box-shadow .22s;
  display: flex;
  flex-direction: column;
  min-width: 240px;
}
.card:hover {
  box-shadow: 0 6px 24px 0 rgba(35,66,111,0.17);
}
.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: 22px;
  }
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 28px;
  margin-bottom: 20px;
  background: #fff;
  box-shadow: 0 2px 12px 0 rgba(35,66,111,0.08);
  border-radius: 12px;
  border: 1px solid #ebebec;
  max-width: 410px;
  min-width: 260px;
}
.testimonial-slider {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ========================
   HEADER & NAVIGATION BAR
   ======================== */
header {
  background: #fff;
  box-shadow: 0 2px 10px 0 rgba(35,66,111,.06);
  padding: 0;
  z-index: 20;
}
header nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  min-height: 78px;
  padding-left: 20px;
  padding-right: 20px;
}
header .logo-link img {
  height: 48px;
  width: auto;
  display: block;
}
header ul {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
}
header ul li {
  display: flex;
  align-items: center;
}
header ul li a {
  font-family: 'Montserrat', Georgia, serif;
  font-size: 1rem;
  font-weight: 500;
  color: #23426F;
  padding: 8px 4px;
  border-radius: 4px;
  transition: background .17s, color .22s;
}
header ul li a:hover,
header ul li a:focus {
  color: #F0B63A;
  background: #f7f7f9;
}
header .btn-primary {
  margin-left: 24px;
}

/* Hide .mobile-menu-toggle by default on desktop */
.mobile-menu-toggle {
  display: none;
  position: relative;
  background: #F7F7F9;
  border-radius: 50%;
  border: none;
  font-size: 2.1rem;
  color: #23426F;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  margin-left: 20px;
  transition: background .18s;
  z-index: 51;
}
.mobile-menu-toggle:active,
.mobile-menu-toggle:focus {
  background: #ebebec;
}

/* Only show hamburger and hide top nav on mobile */
@media (max-width: 900px) {
  header nav ul,
  header nav .btn-primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  header nav {
    gap: 16px;
    padding-left: 10px;
    padding-right: 10px;
    min-height: 62px;
  }
  header .logo-link img {
    height: 42px;
  }
}

/* ============== MOBILE MENU ============== */
.mobile-menu {
  position: fixed;
  inset: 0;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  box-shadow: 0 2px 32px 0 rgba(35,66,111,0.11);
  z-index: 58;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  opacity: 0;
  pointer-events: none;
  transition: transform .38s cubic-bezier(.7,.2,.38,1), opacity .23s;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: all;
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 30px 28px 12px 0;
  background: none;
  border: none;
  font-size: 2.6rem;
  color: #23426F;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: background .18s;
}
.mobile-menu-close:active, .mobile-menu-close:focus {
  background: #F0B63A11;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  padding: 0 36px;
  margin-top: 24px;
}
.mobile-nav a {
  font-family: 'Montserrat', serif;
  font-weight: 500;
  font-size: 1.23rem;
  color: #23426F;
  padding: 12px 0;
  border-radius: 3px;
  transition: background .15s, color .22s;
  width: 100%;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #F0B63A;
  background: #f7f7f9;
}

/* ============== HERO SECTION ============= */
.hero {
  background: #23426F;
  background-image: linear-gradient(124deg, #23426F 78%, #F0B63A 104%);
  padding: 56px 0 44px 0;
  color: #fff;
  width: 100%;
}
.hero .container {
  max-width: 960px;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 16px;
}
.hero h1, .hero h2, .hero h3 {
  color: #fff;
  font-family: 'Montserrat', 'Georgia', serif;
}
.hero p {
  color: #F7F7F9;
  font-size: 1.15rem;
  margin-bottom: 18px;
}
.hero .btn-primary,
.hero .btn-secondary {
  margin-top: 18px;
}
@media (max-width: 768px) {
  .hero {
    padding: 32px 0 24px 0;
  }
  .hero .container {
    max-width: 98vw;
    padding-left: 4%;
    padding-right: 4%;
  }
}

/* ========== BUTTONS & CTAs ========== */
.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', serif;
  border-radius: 6px;
  font-weight: 600;
  font-size: 1.11rem;
  letter-spacing: 0.01em;
  padding: 12px 34px 11px;
  line-height: 1.1;
  cursor: pointer;
  border: none;
  transition: background .2s, color .22s, box-shadow .22s, border .18s;
  margin: 0;
  min-width: 150px;
  box-shadow: 0 2px 8px rgba(35,66,111,.06);
  text-align: center;
}
.btn-primary {
  background: #F0B63A;
  color: #23426F;
}
.btn-primary:hover, .btn-primary:focus {
  background: #23426F;
  color: #fff;
}
.btn-secondary {
  background: #fff;
  color: #23426F;
  border: 1.5px solid #F0B63A;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: #F0B63A22;
  color: #F0B63A;
}

/* ============== FOOTER ============== */
footer {
  width: 100%;
  background: #232323;
  color: #f7f7f9;
  padding: 0 0 0 0;
  margin-top: 60px;
}
footer .container {
  max-width: 1120px;
  padding-top: 48px;
  padding-bottom: 16px;
}
footer .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  justify-content: space-between;
  align-items: flex-start;
}
footer nav a {
  color: #f7f7f9;
  font-family: 'Montserrat', serif;
  font-size: 1rem;
  margin-right: 16px;
  opacity: 0.93;
  transition: color .18s, opacity .18s;
}
footer nav a:hover, footer nav a:focus {
  opacity: 1;
  color: #F0B63A;
}
footer ul li {
  color: #ebebec;
  font-size: .99rem;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}
footer img {
  max-height: 38px;
}
footer .social-links {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 12px;
}
footer .copyright {
  width: 100%;
  margin-top: 32px;
  color: #B0B6C5;
  font-size: .92rem;
  text-align: right;
}
@media (max-width: 900px) {
  footer .content-wrapper {
    flex-direction: column;
    gap: 26px;
    align-items: flex-start;
  }
  footer .copyright {
    text-align: left;
    margin-top: 18px;
  }
}

/* ========== LISTS & ICONS ========== */
.content-wrapper ul {
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.content-wrapper ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
}
.content-wrapper ul li img {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

/* ============= CARDS, SLIDERS, FEATURES ============= */
.cta-banner {
  background: #F0B63A;
  color: #23426F!important;
  border-radius: 14px;
  padding: 40px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 16px 0;
  box-shadow: 0 4px 24px 0 rgba(35,66,111,0.08);
  gap: 1.2em;
}
.cta-banner h2 {
  color: #23426F;
  font-weight: 700;
}
.search-bar {
  display: flex;
  align-items: center;
  gap: 15px;
  width: 100%;
  margin: 28px 0 10px 0;
}
.search-bar input {
  padding: 11px 18px;
  border-radius: 7px;
  border: 1px solid #dde0e4;
  background: #fafafb;
  font-size: 1rem;
  width: 100%;
  transition: border-color .2s;
}
.search-bar input:focus {
  border-color: #F0B63A;
  outline: 1.5px solid #F0B63A;
}
.map img {
  border-radius: 12px;
  box-shadow: 0 2px 18px 0 rgba(35,66,111,.08);
}

/* ============== TESTIMONIALS ============== */
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 8px;
}
.testimonial-card {
  background: #fff;
  color: #232323;
  border: 1px solid #e5e8ee;
  border-radius: 13px;
  box-shadow: 0 2px 10px 0 rgba(35,66,111,0.06);
  transition: box-shadow .22s, border .12s;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  box-shadow: 0 6px 28px 0 rgba(35,66,111,.14);
  border-color: #F0B63A44;
}
.testimonial-card p {
  color: #232323;
  font-size: 1.05rem;
  margin-bottom: 10px;
}
.testimonial-card strong {
  color: #23426F;
  font-family: 'Montserrat', serif;
  font-weight: 600;
  font-size: .98rem;
}

/* ============== RESPONSIVE ============== */
@media (max-width: 900px) {
  .container {
    max-width: 98vw;
    padding-left: 8px;
    padding-right: 8px;
  }
  .content-wrapper {
    gap: 13px;
  }
  .cta-banner {
    padding: 28px 10px;
  }
  .card-container,
  .content-grid,
  .testimonial-slider {
    gap: 14px;
  }
}
@media (max-width: 650px) {
  .hero h1 {
    font-size: 1.26rem;
  }
  h1, .h1 { font-size: 1.36rem; }
  h2, .h2 { font-size: 1.09rem; }
  h3, .h3 { font-size: .98rem; }
  .btn-primary, .btn-secondary {
    font-size: 1rem;
    padding: 11px 18px 10px;
    min-width: unset;
  }
  .testimonial-card {
    max-width: 99vw;
    min-width: unset;
    padding: 16px 10px;
  }
}

/* ============== MICROS & HOVER EFFECTS ============== */
.card, .testimonial-card, .btn-primary, .btn-secondary, .cta-banner, .cookie-banner, .cookie-modal {
  transition: box-shadow .22s, border .18s, background .25s, color .22s, filter .18s;
}
.card:hover, .testimonial-card:hover, .cta-banner:focus-within {
  filter: brightness(1.011) drop-shadow(0 3px 14px #f0b63a11);
}
::-webkit-input-placeholder { color: #9097a3; }
::-moz-placeholder { color: #9097a3; }
:-ms-input-placeholder { color: #9097a3; }
::placeholder { color: #9097a3; }

/* ========== COOKIE BANNER & MODAL ========== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0; right: 0;
  width: 100vw;
  background: #fff;
  color: #23426F;
  border-top: 1.5px solid #F0B63A;
  box-shadow: 0 -2px 24px 2px rgba(35,66,111,.10);
  z-index: 109;
  padding: 22px 12px 22px 8px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 22px;
  font-size: 1rem;
  transition: transform .44s cubic-bezier(.69,.12,.38,1);
}
.cookie-banner.hide {
  transform: translateY(100%);
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-left: 18px;
}
.cookie-banner button {
  font-family: 'Montserrat', serif;
  font-weight: 600;
  font-size: .97rem;
  border-radius: 5px;
  padding: 8px 20px;
  cursor: pointer;
  border: 1.2px solid #F0B63A;
  margin: 0 2px;
  background: #F7F7F9;
  color: #23426F;
  transition: background .18s, color .18s;
}
.cookie-banner .accept {
  background: #F0B63A;
  color: #23426F;
}
.cookie-banner .accept:hover, .cookie-banner .accept:focus {
  background: #23426F;
  color: #fff;
}
.cookie-banner .reject {
  background: #fff;
  color: #23426F;
  border: 1.2px solid #F0B63A;
}
.cookie-banner .reject:hover, .cookie-banner .reject:focus {
  background: #F0B63A22;
  color: #F0B63A;
}
.cookie-banner .settings {
  background: #F7F7F9;
  color: #23426F;
}
.cookie-banner .settings:hover, .cookie-banner .settings:focus {
  background: #F0B63A11;
  color: #F0B63A;
}

@media (max-width: 650px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 13px;
    padding: 18px 6px 16px 8px;
    font-size: .98rem;
  }
  .cookie-banner .cookie-actions {
    margin-left: 0;
    gap: 8px;
    width: 100%;
  }
}

/* === COOKIE MODAL === */
.cookie-modal {
  position: fixed;
  left: 0; top: 0; width: 100vw; height: 100vh;
  background: rgba(35,66,111,0.27);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity .23s cubic-bezier(.55,.08,.38,1);
}
.cookie-modal.open {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal .modal-content {
  background: #fff;
  color: #23426F;
  border-radius: 13px;
  box-shadow: 0 10px 44px 4px rgba(35,66,111,.14);
  min-width: 320px;
  max-width: 98vw;
  padding: 30px 30px 18px 30px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.cookie-modal h2 {
  font-size: 1.25rem;
  margin-bottom: 6px;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.cookie-modal .cookie-category label {
  font-weight: 600;
  font-family: 'Montserrat',serif;
  font-size: 1rem;
  color: #23426F;
}
.cookie-modal .essential {
  opacity: .7;
}
.cookie-modal .modal-actions {
  display: flex;
  flex-direction: row;
  gap: 16px;
  margin-top: 18px;
}
.cookie-modal button {
  font-family: 'Montserrat', serif;
  font-weight: 600;
  font-size: .97rem;
  border-radius: 5px;
  padding: 8px 20px;
  cursor: pointer;
  transition: background .18s, color .18s, box-shadow .13s;
  border: 1.2px solid #F0B63A;
  color: #23426F;
  background: #fff;
}
.cookie-modal .close {
  position: absolute;
  right: 18px; top: 18px;
  width: 34px; height: 34px;
  background: #fff;
  color: #23426F;
  border: none;
  border-radius: 50%;
  font-size: 1.44rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cookie-modal .close:hover,
.cookie-modal .close:focus {
  background: #F0B63A11;
}
.cookie-modal button.accept {
  background: #F0B63A;
  color: #23426F;
}
.cookie-modal button.accept:hover {
  background: #23426F;
  color: #fff;
}
.cookie-modal button.reject {
  background: #fff;
  color: #23426F;
}
.cookie-modal button.reject:hover {
  background: #F0B63A22;
  color: #F0B63A;
}

@media (max-width: 520px) {
  .cookie-modal .modal-content {
    min-width: 90vw;
    padding: 16px 8px 12px 13px;
    gap: 9px;
  }
  .cookie-modal .modal-actions {
    flex-direction: column;
    gap: 10px;
    margin-top: 8px;
  }
}

/* ========== GENERAL SPACING ========== */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
@media (max-width: 768px) {
  section {
    margin-bottom: 36px;
    padding: 28px 8px;
  }
}

/* ========== ADDITIONAL ELEGANT STYLES ========== */
body {
  background: #FAFAFB;
}
h1,h2,h3,h4,h5,h6 {
  letter-spacing: 0.01em;
}
hr {
  border: 0;
  border-bottom: 1px solid #e3e6ec;
  margin: 40px 0;
}

/* === Decorative icons rounded (cards/list) === */
.content-wrapper ul li img, footer ul li img {
  background: #F0B63A11;
  border-radius: 33%;
  padding: 2px;
}

/* ========== UTILITIES ========== */
.hide { display: none!important; }
.d-flex { display: flex!important; }
.flex-column { flex-direction: column!important; }
.flex-row { flex-direction: row!important; }
.align-center { align-items: center!important; }

/* ========== FOCUS + ACCESSIBILITY ========== */
a:focus, button:focus, input:focus {
  outline: 2px dashed #F0B63A;
  outline-offset: 2px;
}

/* ========== CUSTOM SCROLLBAR FOR ELEGANCE ========== */
::-webkit-scrollbar {
  width: 8px;
  background: #F0B63A11;
}
::-webkit-scrollbar-thumb {
  background: #e6e7eb;
  border-radius: 6px;
}

/* ========== END OF CSS ========== */