/* =======================
   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,
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 {
  box-sizing: border-box;
  scroll-behavior: smooth;
  background: #18191F;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  color: #18191F;
  background: #FAFAFA;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #18191F;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #F2C94C;
}
ul, ol {
  margin-left: 1.5em;
  margin-bottom: 1.2em;
}
li {
  margin-bottom: 8px;
}
table {
  border-collapse: collapse;
  width: 100%;
  background: #fff;
  margin-bottom: 20px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 3px 24px rgba(24,25,31,0.04);
}
th, td {
  padding: 14px 18px;
  text-align: left;
  border-bottom: 1px solid #ececec;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
}
th {
  background: #F7F7F7;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: #18191F;
}

/* =======================
   TYPOGRAPHY
   ======================= */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: #18191F;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 24px;
  line-height: 1.1;
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  line-height: 1.15;
  position: relative;
}
h3 {
  font-size: 1.3rem;
  margin-bottom: 16px;
  letter-spacing: 0.04em;
  font-weight: 600;
  line-height: 1.2;
}
h4, h5, h6 {
  margin-bottom: 12px;
  font-weight: 600;
}
p {
  margin-bottom: 16px;
  font-size: 1rem;
  color: #23232D;
}
.text-section p, .text-section ul, .text-section ol {
  max-width: 720px;
}
strong {
  font-weight: bold;
  color: #18191F;
}

/* =======================
   BRAND COLORS
   ======================= */
:root {
  --primary: #18191F;
  --secondary: #F2C94C;
  --accent: #FFFFFF;
  --gray-light: #F7F7F8;
  --gray-mid: #ECECEC;
  --gray-dark: #23232D;
  --shadow: 0 4px 16px rgba(24,25,31,0.09);
  --shadow-card: 0 6px 18px 0 rgba(24,25,31,0.08);
  --radius: 16px;
}

/* =======================
   GEOMETRIC STRUCTURED LAYOUTS
   ======================= */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  background: var(--accent);
  border-radius: calc(var(--radius) * 1.1);
  box-shadow: var(--shadow);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
  position: relative;
}
.text-section {
  background: var(--gray-light);
  border-left: 6px solid var(--secondary);
  border-radius: var(--radius) 0 0 var(--radius);
  padding: 40px 30px;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.map-embed {
  border: 2.5px solid var(--secondary);
  border-radius: 12px;
  background: var(--gray-light);
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  width: 100%;
}
/* Flex Spacing Patterns */
.card-container,
.card-grid,
.feature-grid,
.content-grid,
.faq-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  background: var(--accent);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: 30px 28px;
  min-width: 260px;
  flex: 1 1 320px;
  position: relative;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}
.content-grid {
  gap: 20px;
  justify-content: space-between;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 26px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 6px 18px 0 rgba(24,25,31,0.09);
  margin-bottom: 24px;
  border-left: 5px solid var(--secondary);
  position: relative;
  max-width: 570px;
}
.testimonial-rating {
  display: flex;
  align-items: center;
  gap: 5px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.feature-grid > div {
  flex: 1 1 265px;
  min-width: 250px;
  max-width: 365px;
  background: var(--gray-light);
  border-radius: var(--radius);
  border: 2px solid #f6f6f0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 28px 22px;
  margin-bottom: 18px;
  box-shadow: 0 2px 8px rgba(35,35,45,0.02);
  transition: box-shadow 0.17s;
}
.feature-grid > div:hover {
  box-shadow: 0 8px 28px rgba(24,25,31,0.08);
  border-color: var(--secondary);
  z-index: 2;
}
.faq-list > div {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(24,25,31, 0.06);
  padding: 20px 22px;
  flex: 1 1 320px;
  margin-bottom: 18px;
  min-width: 220px;
  max-width: 480px;
  border-left: 4px solid var(--secondary);
}

/* =============
   HEADER
   ============= */
header {
  background: var(--primary);
  color: var(--accent);
  width: 100%;
  padding: 0;
}
header .container {
  flex-direction: row;
  align-items: center;
  gap: 30px;
  min-height: 88px;
}
header img {
  height: 42px;
  width: auto;
  margin-right: 32px;
  margin-left: 5px;
}
header nav {
  display: flex;
  flex-direction: row;
  gap: 19px;
  align-items: center;
}
header nav a {
  color: var(--accent);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 17px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 8px 4px;
  border-radius: 3.2px;
  position: relative;
  transition: color 0.18s;
}
header nav a:hover, header nav a:focus {
  color: var(--secondary);
  background: rgba(242,201,76,0.10);
}
.btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 32px;
  border-radius: 32px;
  background: var(--secondary);
  color: var(--primary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.07rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: none;
  box-shadow: 0 3px 14px rgba(242,201,76,0.09);
  cursor: pointer;
  transition: box-shadow 0.23s, transform 0.16s, background 0.18s;
  margin-left: auto;
  margin-right: 12px;
  margin-top: 0;
}
.btn-cta:hover, .btn-cta:focus {
  background: #ffd54c;
  box-shadow: 0 5px 26px rgba(242,201,76,0.17);
  transform: translateY(-2px) scale(1.03);
}

.mobile-menu-toggle {
  display: none;
}

/* ================
   FOOTER
   ================ */
footer {
  background: var(--primary);
  color: var(--accent);
  padding: 0;
  border-top: 2.5px solid var(--secondary);
}
footer .container {
  align-items: flex-start;
  padding: 30px 20px 20px 20px;
  gap: 40px;
  flex-direction: row;
}
footer nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1 1 190px;
}
footer nav a {
  color: var(--accent);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 15px;
  margin-bottom: 2px;
  letter-spacing: 0.01em;
  opacity: 0.93;
  transition: color 0.13s;
}
footer nav a:hover, footer nav a:focus {
  color: var(--secondary);
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 3px;
  font-size: 15px;
  color: #e6e6e6;
}
footer a {
  color: var(--secondary);
}

/* =======================
   BUTTONS & INTERACTIONS
   ======================= */
button, [role=button] {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  border: none;
  cursor: pointer;
  outline: none;
  background: transparent;
  transition: background 0.16s, color 0.16s, box-shadow 0.16s;
}

/* =======================
   MOBILE MENU
   ======================= */
.mobile-menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-left: 16px;
  background: var(--secondary);
  border-radius: 50%;
  color: var(--primary);
  font-size: 2em;
  border: none;
  z-index: 1080;
  box-shadow: 0px 2px 9px 0 rgba(34,34,44,0.07);
  transition: background 0.17s, color 0.16s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #FFD44F;
  color: var(--primary);
}
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 92vw;
  max-width: 375px;
  background: var(--primary);
  box-shadow: -3px 0 48px 0 rgba(24,25,31,0.32);
  z-index: 1100;
  transform: translateX(105%);
  transition: transform 0.30s cubic-bezier(.69,.11,.4,.91);
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  transition: transform 0.32s cubic-bezier(.69,.11,.4,.91);
}
.mobile-menu-close {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  font-size: 2.1em;
  color: var(--secondary);
  background: none;
  border: none;
  margin: 18px 14px 0 0;
  width: 54px;
  height: 52px;
  align-self: flex-end;
  cursor: pointer;
  transition: background 0.14s, color 0.15s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: rgba(242,201,76,0.07);
  color: #ffd44f;
  border-radius: 32px;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  padding: 18px 38px 18px 26px;
  margin-top: 10px;
}
.mobile-nav a {
  width: 100%;
  color: var(--accent);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 19px;
  padding: 18px 6px 18px 0;
  border-bottom: 1px solid rgba(242, 201, 76, 0.09);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  transition: color 0.14s, background 0.15s;
  margin-bottom: 0;
}
.mobile-nav a:last-child {
  border-bottom: none;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--secondary);
  background: rgba(242,201,76,0.06);
}

@media (max-width: 991px) {
  header .container {
    gap: 10px;
  }
  header nav {
    display: none;
  }
  .btn-cta {
    margin-left: 0;
  }
  .mobile-menu-toggle {
    display: inline-flex;
  }
}
@media (max-width: 991px) {
  .mobile-menu {
    width: 99vw;
    min-width: 240px;
    max-width: 420px;
  }
  .mobile-nav {
    padding-right: 10px;
    padding-left: 10px;
  }
}
@media (min-width: 992px) {
  .mobile-menu,
  .mobile-menu-toggle {
    display: none !important;
  }
  header nav {
    display: flex !important;
  }
}

/* ==============
   CARDS & CTAs
   ============== */
.card-container, .card-grid {
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  box-shadow: var(--shadow-card);
  padding: 32px 28px;
  background: var(--accent);
  border-radius: var(--radius);
}
.card:hover {
  box-shadow: 0 10px 40px rgba(24,25,31,0.12);
  transform: translateY(-2px) scale(1.01);
}

.btn-cta:active {
  background: #F2C94C;
  box-shadow: 0 1px 3px rgba(242,201,76,0.15);
  transform: scale(0.98);
}

/* =============
   SPACINGS
   ============= */
main {
  padding-top: 22px;
  padding-bottom: 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container, .content-grid, .faq-list {
  gap: 20px;
}
.card {
  margin-bottom: 20px;
}
.text-image-section {
  gap: 30px;
}
.testimonial-card {
  gap: 20px;
  padding: 20px;
}
.feature-item {
  gap: 15px;
}

/* Section-specific spacing */
section + section {
  margin-top: 20px;
}

/* ==================
   TESTIMONIALS
   ================== */
.testimonial-card {
  color: #18191F;
  background: #FFF;
  border-left: 5px solid #F2C94C;
  box-shadow: 0 4px 22px 0 rgba(242, 201, 76, 0.06);
  font-size: 1.07rem;
}
.testimonial-rating img {
  width: 28px;
  height: 28px;
  margin-right: 1px;
  filter: drop-shadow(0 1px 2px rgba(242,201,76,0.14));
}
.testimonial-card strong {
  color: var(--primary);
  font-size: 1em;
}

/* ==============
   ALERTS ETC.
   ============== */
.alert, .warning, .message {
  background: #fffbe7;
  color: #664e00;
  border-left: 7px solid #f2c94c;
  padding: 18px 18px 18px 28px;
  border-radius: 9px;
  margin-bottom: 18px;
  font-size: 1em;
}

/* =================
   FORMS (just base)
   ================= */
input, textarea, select {
  background: #f7f7f8;
  border: 2px solid #e3e3e8;
  border-radius: 9px;
  padding: 10px 15px;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  color: #23232d;
  margin-bottom: 18px;
  width: 100%;
  transition: border 0.17s;
  outline: none;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--secondary);
  background: #FFFDE6;
}
label {
  display: block;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  margin-bottom: 8px;
}

button:active {
  opacity: 0.89;
}

/* =================
   COOKIE CONSENT
   ================= */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  background: #18191F;
  color: #fff;
  width: 100vw;
  padding: 22px 24px 20px 24px;
  box-shadow: 0 -4px 28px rgba(24,25,31,0.18);
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 30px;
  font-size: 1em;
  transition: transform 0.36s cubic-bezier(.69,.11,.4,.91);
}
.cookie-banner.hide {
  transform: translateY(120%);
  pointer-events: none;
}
.cookie-banner .cookie-text {
  flex: 1 1 240px;
  min-width: 100px;
  max-width: 570px;
  color: #fff;
}
.cookie-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
}
.cookie-btn {
  background: var(--secondary);
  color: var(--primary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  border-radius: 19px;
  padding: 12px 23px;
  margin-right: 2px;
  border: none;
  box-shadow: 0 2px 12px 0 rgba(242,201,76,0.06);
  margin-bottom: 0;
  transition: background 0.17s, color 0.17s, box-shadow 0.14s, transform 0.12s;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #ffd54c;
  color: #1a1a1a;
  transform: translateY(-1px) scale(1.04);
}
.cookie-btn.reject {
  background: transparent;
  color: #fff;
  border: 1.5px solid #f2c94c;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #f2c94c;
  color: #1a1a1a;
}
.cookie-btn.settings {
  background: #fff;
  color: #23232D;
  border: 1.1px solid #F2C94C;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #ffe;
  color: #18191f;
}

/* ===============
   COOKIE MODAL
   =============== */
.cookie-modal {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 140%);
  z-index: 10111;
  background: #fff;
  color: #18191F;
  border-radius: 32px 32px 0 0;
  box-shadow: 0 -10px 48px 0 rgba(24,25,31,0.13);
  width: 96vw;
  max-width: 425px;
  padding: 34px 30px 28px 30px;
  display: flex;
  flex-direction: column;
  gap: 13px;
  transition: transform 0.36s cubic-bezier(.69,.11,.4,.91);
  pointer-events: none;
}
.cookie-modal.open {
  transform: translate(-50%, 0);
  pointer-events: auto;
}
.cookie-modal h3 {
  font-size: 1.26rem;
  margin-bottom: 12px;
}
.cookie-modal .category {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 16px;
  border-bottom: 1px solid #ececec;
  padding-bottom: 12px;
}
.cookie-modal .essential {
  font-weight: bold;
  color: #666;
}
.cookie-modal .cookie-switch {
  display: flex;
  align-items: center;
  gap: 10px;
}
.cookie-switch input[type=checkbox] {
  width: 38px;
  height: 20px;
  border-radius: 16px;
  accent-color: var(--secondary);
}
.cookie-toggle {
  appearance: none;
  width: 42px;
  height: 24px;
  background: #ececec;
  border-radius: 13px;
  position: relative;
  outline: none;
  cursor: pointer;
  transition: background .19s;
}
.cookie-toggle:checked {
  background: var(--secondary);
}
.cookie-toggle:before {
  content: '';
  position: absolute;
  top: 3px;
  left: 4px;
  background: #fff;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  transition: left 0.22s;
}
.cookie-toggle:checked:before {
  left: 21px;
}
.cookie-modal .modal-actions {
  display: flex;
  gap: 14px;
  justify-content: flex-end;
  margin-top: 15px;
}
.cookie-modal .modal-close {
  color: #999;
  font-size: 1.7em;
  background: none;
  border: none;
  position: absolute;
  top: 14px;
  right: 24px;
}
.cookie-modal .modal-close:hover, .cookie-modal .modal-close:focus {
  color: #18191F;
}

/* =============
   RESPONSIVE
   ============= */
@media (max-width: 991px) {
  .container {
    max-width: 98vw;
    padding: 0 8px;
  }
  .content-wrapper, .card, .faq-list > div, .testimonial-card, .feature-grid > div {
    padding: 22px 14px;
  }
  .text-section {
    padding: 24px 12px;
    border-radius: var(--radius);
    border-left: 4px solid var(--secondary);
  }
  .footer-contact {
     margin-top: 18px;
  }
  footer .container {
    flex-direction: column;
    gap: 20px;
  }
}
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.4rem; }
  h3 { font-size: 1.11rem; }
  .container {
    max-width: 97vw;
    padding: 0 5px;
  }
  .section {
    padding: 18px 7px;
    margin-bottom: 35px;
  }
  .content-wrapper {
    padding: 14px 7px 18px 7px;
    margin-bottom: 14px;
  }
  .feature-grid, .card-container, .faq-list {
    flex-direction: column;
    gap: 13px;
  }
  .content-grid, .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .testimonial-card {
    padding: 13px 7px;
    max-width: 98vw;
  }
  .feature-grid > div {
    max-width: 100vw;
    min-width: 160px;
  }
  .faq-list > div {
    max-width: 100vw;
    min-width: 160px;
  }
  .footer-contact {
    font-size: 14.4px;
  }
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 13px;
    font-size: 0.99em;
    padding: 16px 9px;
  }
  .cookie-actions {
    justify-content: flex-start;
    gap: 8px;
  }
  .cookie-modal {
    max-width: 99vw;
    padding: 14px 5px 12px 10px;
    font-size: 0.98em;
  }
}

/* ===============
   GEOMETRIC ACCENTS
   =============== */
section {
  position: relative;
}
section:before {
  content: "";
  position: absolute;
  top: -12px;
  left: 0;
  width: 64px;
  height: 7px;
  background: linear-gradient(90deg, var(--secondary) 73%, transparent 100%);
  border-radius: 4px 2px 2px 0;
  z-index: 0;
  display: block;
  opacity: 0.7;
}
section:nth-child(even):before {
  left: unset; right: 0;
  background: linear-gradient(270deg, var(--secondary) 73%, transparent 100%);
}
@media (max-width: 500px) {
  section:before {
    width: 32px;
    height: 4px;
  }
}

/* ===============
   MISC
   =============== */
::-webkit-scrollbar { width:9px; background:#F2C94C; }
::-webkit-scrollbar-thumb { background: #18191F; border-radius: 8px; }

/* Animations for micro-interactions */
.card, .feature-grid > div, .testimonial-card, .faq-list > div, .btn-cta, .cookie-btn, .mobile-menu, .mobile-menu-toggle {
  transition: box-shadow 0.17s, transform 0.13s, background 0.13s, border-color 0.14s;
}

/* Hide visually */
.visually-hidden {
  position: absolute !important;
  height: 1px; width: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px); 
  white-space: nowrap;
}
