/* =======================
   CLARUS VIBE MINIMALIST CSS
   ======================= */
/* --- 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,
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 {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body {
  background: #F5F6FA;
  color: #222;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
  border: 0;
}
a {
  color: #13315C;
  text-underline-offset: 2px;
  text-decoration-thickness: 1.5px;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #45B39D;
  outline: none;
}
ul, ol {
  list-style: none;
}
input, button, textarea, select {
  font: inherit;
  outline: none;
  background: none;
  border: none;
}

/* --- TYPOGRAPHY --- */
h1, .h1 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2.6rem;
  font-weight: 700;
  margin-bottom: 18px;
  letter-spacing: -0.02em;
  color: #13315C;
  line-height: 1.15;
}
h2, .h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 16px;
  color: #13315C;
  line-height: 1.2;
}
h3, .h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: #13315C;
  margin-bottom: 12px;
  line-height: 1.35;
}
h4, .h4 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.05rem;
  font-weight: 500;
  color: #13315C;
}
p, li, dd, blockquote {
  font-size: 1rem;
  color: #222;
}
strong, b {
  font-weight: 600;
  color: #13315C;
}
blockquote {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1.1rem;
  font-style: italic;
  background: #F5F6FA;
  border-left: 4px solid #45B39D;
  padding: 10px 22px;
  margin-bottom: 8px;
  color: #13315C;
}

/* --- CONTAINER --- */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 18px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}

/* --- HEADER --- */
header {
  background: #fff;
  box-shadow: 0 4px 12px rgba(19,49,92,0.05);
  position: relative;
  z-index: 50;
}
header .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 68px;
  padding: 0 18px;
}
.logo {
  display: flex;
  align-items: center;
}
.logo img {
  height: 43px;
  width: auto;
}
.main-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 22px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  color: #13315C;
  font-weight: 500;
  padding: 6px 0;
  position: relative;
  letter-spacing: 0.02em;
  transition: color 0.17s;
}
.main-nav a:hover, .main-nav a:focus {
  color: #45B39D;
}
.main-nav .cta.primary {
  margin-left: 16px;
}
.mobile-menu-toggle {
  display: none;
  font-size: 2.2rem;
  color: #13315C;
  background: none;
  border: none;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 120;
  transition: color 0.16s;
}
.mobile-menu-toggle:active, .mobile-menu-toggle:focus {
  color: #45B39D;
}

/* --- MOBILE MENU --- */
.mobile-menu {
  position: fixed;
  width: 100vw;
  height: 100vh;
  background: rgba(19,49,92,0.93);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 0;
  opacity: 0;
  pointer-events: none;
  z-index: 200;
  transition: transform 0.36s cubic-bezier(.66,0,.33,1), opacity 0.26s;
  transform: translateX(100vw);
}
.mobile-menu.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}
.mobile-menu-close {
  margin: 24px 26px 0 0;
  font-size: 2.4rem;
  background: none;
  border: none;
  color: #fff;
  min-width: 44px;
  min-height: 44px;
  cursor: pointer;
  align-self: flex-end;
  transition: color 0.16s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #45B39D;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  margin: 32px 36px;
  gap: 20px;
  width: calc(100vw - 72px);
  z-index: 202;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.25rem;
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 12px 0;
  text-decoration: none;
  border-radius: 5px;
  transition: background 0.18s, color 0.18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #45B39D;
  background: rgba(69,179,157,0.08);
}

/* --- BUTTONS & CTAs --- */
.cta {
  font-family: 'Montserrat', Arial, sans-serif;
  border-radius: 24px;
  font-weight: 600;
  padding: 10px 28px;
  font-size: 1rem;
  transition: box-shadow 0.16s, background 0.18s, color 0.18s, border-color 0.15s;
  border: 1.5px solid transparent;
  cursor: pointer;
  margin-top: 12px;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(19,49,92,0.06);
}
.cta.primary {
  background: #13315C;
  color: #fff;
  border-color: #13315C;
}
.cta.primary:hover, .cta.primary:focus {
  background: #45B39D;
  color: #fff;
  border-color: #45B39D;
  box-shadow: 0 4px 16px rgba(69,179,157,0.16);
}
.cta.secondary {
  background: #fff;
  color: #13315C;
  border-color: #13315C;
}
.cta.secondary:hover, .cta.secondary:focus {
  background: #F5F6FA;
  color: #45B39D;
  border-color: #45B39D;
}
.cta.tertiary {
  background: transparent;
  color: #13315C;
  border-color: #45B39D;
  border-width: 1.5px;
}
.cta.tertiary:hover, .cta.tertiary:focus {
  background: #45B39D;
  color: #fff;
  box-shadow: 0 1px 6px rgba(19,49,92,0.11);
}

/* --- SECTIONS SPACING & FLEX LAYOUTS --- */
.section, section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 10px rgba(19,49,92,0.07);
  min-width: 280px;
  max-width: 100%;
  padding: 24px 22px;
  transition: box-shadow 0.18s, transform 0.16s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 8px 24px rgba(19,49,92,0.10);
  transform: translateY(-2px) scale(1.012);
}
.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;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 4px 16px rgba(19,49,92,0.07);
  margin-bottom: 20px;
  max-width: 800px;
  transition: box-shadow 0.18s, background 0.18s;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  box-shadow: 0 8px 36px rgba(69,179,157,0.13);
  background: #F5F6FA;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  min-width: 220px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(19,49,92,0.07);
  padding: 30px 20px;
  transition: box-shadow 0.17s, border-color 0.16s;
  border: 1.5px solid #F5F6FA;
}
.feature-item:hover, .feature-item:focus-within {
  box-shadow: 0 6px 18px rgba(69,179,157,0.08);
  border-color: #45B39D;
}

/* --- HERO / BANNERS --- */
.hero, .blog-hero, .contact-hero, .thank-you-msg {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 2px 16px rgba(19,49,92,0.07);
  margin-bottom: 60px;
  padding: 48px 20px;
  min-height: 210px;
  display: flex;
  align-items: center;
}

/* --- FEATURES GRID --- */
.features, .feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.feature-grid {
  margin-top: 20px;
}

/* --- LISTINGS PREVIEW SNIPPETS --- */
.listing-snippets {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.listing-item {
  flex: 1 1 240px;
  background: #fff;
  padding: 30px 20px;
  border-radius: 10px;
  min-width: 220px;
  box-shadow: 0 2.5px 8px rgba(19,49,92,0.06);
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: box-shadow 0.15s;
}
.listing-item:hover, .listing-item:focus-within {
  box-shadow: 0 6px 24px rgba(69,179,157,0.11);
}

/* --- TESTIMONIALS --- */
.testimonials .testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.testimonial-client {
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #13315C;
  font-weight: 500;
  margin-top: 4px;
}

/* --- BLOG --- */
.blog-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 18px;
}
.blog-snippet {
  flex: 1 1 230px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 11px rgba(19,49,92,0.06);
  padding: 22px 20px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 13px;
  transition: box-shadow 0.15s;
}
.blog-snippet:hover, .blog-snippet:focus-within {
  box-shadow: 0 8px 26px rgba(69,179,157,0.12);
}

/* --- FOOTER --- */
footer {
  background: #fff;
  padding: 44px 0 28px;
  border-top: 1.5px solid #F5F6FA;
  font-size: 0.93rem;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: flex-start;
  padding: 0 18px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 8px;
}
.footer-nav a {
  color: #13315C;
  transition: color 0.14s;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #45B39D;
}
.footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.footer-contact div {
  display: flex;
  align-items: center;
  gap: 7px;
}
.footer-contact img {
  width: 20px;
  height: 20px;
}
.footer-brand {
  margin-top: 8px;
  color: #13315C;
  opacity: 0.7;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.02rem;
}
.footer-brand img {
  width: 22px;
  height: 22px;
}

/* --- CONTACT --- */
.contact-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  margin-top: 16px;
}
.contact-icons span {
  background: #F5F6FA;
  padding: 8px 15px;
  border-radius: 24px;
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 1.02rem;
  color: #13315C;
}

/* --- FAQ + ACCORDIONS --- */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 16px;
}
.faq-accordion {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 14px rgba(19,49,92,0.07);
  padding: 22px 18px;
  margin-bottom: 7px;
  transition: box-shadow 0.17s;
}
.faq-accordion h3 {
  margin-bottom: 8px;
  font-size: 1.11rem;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #13315C;
}

/* --- MAP SECTION (STATIC MAP) --- */
.static-map {
  display: flex;
  align-items: center;
  gap: 18px;
  background: #F5F6FA;
  border-radius: 12px;
  padding: 18px 18px;
  margin-top: 10px;
}
.static-map img {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
}

/* --- COOKIE BANNER --- */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  border-top: 1.5px solid #F5F6FA;
  box-shadow: 0 -2px 16px rgba(19,49,92,0.08);
  z-index: 5001;
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 18px 16px;
  justify-content: space-between;
  gap: 12px;
  animation: cookieSlideIn 0.6s cubic-bezier(.69,0,.32,1);
}
@keyframes cookieSlideIn {
  from { transform: translateY(100%); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}
.cookie-banner-message {
  font-size: 1rem;
  color: #13315C;
  margin-right: 20px;
  flex: 1;
}
.cookie-banner-actions {
  display: flex;
  flex-direction: row;
  gap: 14px;
  flex-wrap: wrap;
}
.cookie-banner button, .cookie-banner .cta {
  min-width: 108px;
  padding: 8px 18px;
  font-size: 1rem;
  border-radius: 16px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  border: 1.5px solid transparent;
  background: #F5F6FA;
  color: #13315C;
  transition: background 0.19s, color 0.17s, border-color 0.15s;
  cursor: pointer;
}
.cookie-banner .accept {
  background: #45B39D;
  color: #fff;
  border-color: #45B39D;
}
.cookie-banner .accept:hover, .cookie-banner .accept:focus {
  background: #13315C;
  border-color: #13315C;
  color: #fff;
}
.cookie-banner .reject {
  background: #fff;
  color: #13315C;
  border-color: #45B39D;
}
.cookie-banner .reject:hover, .cookie-banner .reject:focus {
  color: #45B39D;
  border-color: #13315C;
  background: #F5F6FA;
}
.cookie-banner .settings {
  background: #F5F6FA;
  color: #13315C;
  border-color: #13315C;
}
.cookie-banner .settings:hover, .cookie-banner .settings:focus {
  background: #45B39D;
  color: #fff;
  border-color: #45B39D;
}

/* --- COOKIE MODAL --- */
.cookie-modal {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 5100;
  width: 100vw;
  height: 100vh;
  background: rgba(19,49,92,0.19);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
  transition: opacity 0.23s;
  opacity: 1;
}
.cookie-modal.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal-content {
  background: #fff;
  border-radius: 20px;
  padding: 34px 28px 28px 28px;
  box-shadow: 0 16px 54px rgba(19,49,92,0.19);
  width: 90%;
  max-width: 430px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
  animation: fadeInCookieModal 0.45s;
}
@keyframes fadeInCookieModal {
  from { opacity: 0; transform: scale(0.93); }
  to   { opacity: 1; transform: scale(1);   }
}
.cookie-modal-content h2 {
  font-size: 1.25rem;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #13315C;
  font-weight: 600;
  margin-bottom: 10px;
}
.cookie-modal .close-modal {
  position: absolute;
  top: 16px;
  right: 15px;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: #13315C;
  cursor: pointer;
  transition: color 0.16s;
  min-width: 36px;
  min-height: 36px;
  z-index: 3;
}
.cookie-modal .close-modal:hover, .cookie-modal .close-modal:focus {
  color: #45B39D;
}
.cookie-modal-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 15px;
  background: #F5F6FA;
  border-radius: 10px;
  padding: 11px 16px;
  font-size: 1rem;
  color: #13315C;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
}
.cookie-modal-category .toggle {
  margin-left: 15px;
}
.cookie-modal-category .toggle[disabled] {
  opacity: 0.4;
  pointer-events: none;
}
.cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 14px;
  justify-content: flex-end;
}

/* --- TOGGLE SWITCH FOR COOKIES --- */
.toggle {
  width: 48px;
  height: 28px;
  background: #F5F6FA;
  border-radius: 14px;
  position: relative;
  cursor: pointer;
  appearance: none;
  outline: none;
  border: 1.5px solid #45B39D;
  transition: background 0.19s, border 0.17s;
}
.toggle:checked {
  background: #45B39D;
  border-color: #13315C;
}
.toggle:before {
  content: "";
  position: absolute;
  left: 2.5px;
  top: 2.5px;
  width: 23px;
  height: 23px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 8px rgba(19,49,92,0.11);
  transition: transform 0.19s;
}
.toggle:checked:before {
  transform: translateX(20px);
}
.toggle[disabled] {
  opacity: 0.45;
  pointer-events: none;
}

/* --- RESPONSIVE DESIGN --- */
@media (max-width: 1020px) {
  .container { max-width: 90vw; }
  .main-nav { gap: 13px; }
  .features,.feature-grid,.blog-list,.listing-snippets,.testimonial-list, .footer-contact { gap: 16px; }
}
@media (max-width: 900px) {
  .container { max-width: 100vw; }
  .main-nav { gap: 8px; font-size: 0.98rem; }
  .hero, .blog-hero, .contact-hero, .thank-you-msg { padding-left: 8px; padding-right: 8px; }
  .card-container, .features, .feature-grid, .listing-snippets { gap: 14px; }
}
@media (max-width: 800px) {
  .footer-contact { flex-direction: column; gap: 13px; }
  .about-teaser ul, .blog-cta ul { padding-left: 0; }
}
@media (max-width: 768px) {
  .main-nav { display: none; }
  .mobile-menu-toggle { display: flex; }
  .container { padding: 0 8px; }
  .footer-nav { flex-direction: column; gap: 8px; margin-bottom: 4px; }
  .footer-contact { flex-direction: column; gap: 12px; }
  .hero, .blog-hero, .contact-hero, .thank-you-msg { border-radius: 0; padding: 36px 7px; margin-bottom: 32px; }
  .section, section { margin-bottom: 38px; padding: 28px 6px; }
  .about-section, .values-section, .usp-section {
    padding-left: 0; padding-right: 0;
  }
  .features, .feature-grid, .blog-list, .testimonial-list,
  .listing-snippets, .card-container, .content-grid {
    flex-direction: column;
    gap: 12px;
  }
  .text-image-section { flex-direction: column; gap: 15px; align-items: flex-start; }
  .contact-icons { flex-direction: column; gap: 9px; }
  .container { max-width: 99vw; }
}
@media (max-width: 570px) {
  html { font-size: 15px; }
  h1, .h1 { font-size: 2.05rem; }
  h2, .h2 { font-size: 1.34rem; }
  .card, .feature-item, .listing-item, .blog-snippet, .faq-accordion { padding: 16px 9px; }
  .cookie-modal-content { padding: 15px 5px 22px 12px; }
}
@media (max-width: 390px) {
  html { font-size: 14px; }
}

/* --- UTILITIES --- */
.text-center { text-align: center; }
.mt-2 { margin-top: 12px; }
.mb-2 { margin-bottom: 12px; }
.mb-3 { margin-bottom: 22px; }
.gap-8 { gap: 8px !important; }
.gap-16 { gap: 16px !important; }

/* --- ACCENT ELEMENTS --- */
hr {
  border: 0;
  border-top: 1.5px solid #F5F6FA;
  margin: 34px 0;
}

/* --- TRANSITIONS AND INTERACTIONS --- */
.card, .feature-item, .listing-item, .blog-snippet, .testimonial-card, .faq-accordion {
  transition: box-shadow 0.15s, border-color 0.11s, transform 0.13s;
}
.card:active, .feature-item:active, .listing-item:active, .blog-snippet:active, .testimonial-card:active {
  transform: scale(0.98);
}

/* --- FOCUS AND ACCESSIBILITY --- */
a, button, .cta, .mobile-menu-toggle, .mobile-menu-close {
  outline: none;
}
a:focus-visible, button:focus-visible, .cta:focus-visible, .mobile-menu-toggle:focus-visible, .mobile-menu-close:focus-visible {
  outline: 1.5px dotted #45B39D;
  outline-offset: 2px;
}

/* --- CUSTOM SCROLLBAR (minimalist) --- */
::-webkit-scrollbar {
  width: 8px;
  background: #F5F6FA;
}
::-webkit-scrollbar-thumb {
  background: #E2E5EA;
  border-radius: 5px;
}

/* --- BRAND FONTS LOADING (fallback supported) --- */
@import url('https://fonts.googleapis.com/css?family=Montserrat:400,500,600,700&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap');
