/* --- 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;
}
*, *:before, *:after {
  box-sizing: inherit;
}

body {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  background: #FDF7EF; /* warm, soft background */
  color: #22304A;
  font-size: 16px;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  line-height: 1.7;
}

img {
  max-width: 100%;
  display: block;
}

ul, ol {
  margin-left: 24px;
  margin-bottom: 16px;
}

li + li {
  margin-top: 8px;
}

a {
  color: #F7B32B;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #CE8D11;
}

/* --- FONT FACE --- */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap');

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #22304A;
  font-weight: 700;
}
h1 {
  font-size: 2.25rem;
  margin-bottom: 16px;
  line-height: 1.15;
}
h2 {
  font-size: 1.5rem;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.125rem;
  margin-bottom: 10px;
}
h4, h5, h6 {
  font-size: 1rem;
}
p {
  margin-bottom: 14px;
  color: #22304A;
}

strong {
  color: #22304A;
  font-weight: 700;
}

/* --- CONTAINER --- */
.container {
  width: 100%;
  max-width: 1170px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

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

/* --- HEADER & NAVIGATON --- */
header {
  background: #fff;
  box-shadow: 0 2px 16px rgba(34, 48, 74, 0.05);
  border-bottom: 2px solid #F7B32B;
  position: sticky;
  top: 0;
  z-index: 80;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  gap: 0;
}
header img {
  height: 44px;
  border-radius: 10px;
}
nav {
  display: flex;
  gap: 24px;
  align-items: center;
}
nav a {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: #22304A;
  padding: 8px 12px;
  border-radius: 20px;
  transition: background 0.15s, color 0.15s;
}
nav a:hover,
nav a:focus {
  background: #fbe7bd;
  color: #22304A;
}
nav .btn-primary {
  font-family: 'Montserrat', Arial, sans-serif;
  background: #F7B32B;
  color: #22304A;
  border-radius: 28px;
  font-weight: 700;
  padding: 10px 28px;
  box-shadow: 0 2px 8px rgba(247,179,43,0.08);
  border: none;
  margin-left: 12px;
  transition: background 0.18s, box-shadow 0.18s;
}
nav .btn-primary:hover,
nav .btn-primary:focus {
  background: #FFD276;
  color: #22304A;
  box-shadow: 0 4px 12px rgba(247,179,43,0.15);
}
/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  background: #F7B32B;
  color: #22304A;
  font-size: 2rem;
  border: none;
  border-radius: 10px;
  padding: 7px 17px;
  margin-left: 15px;
  cursor: pointer;
  transition: background 0.15s, box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(34,48,74, 0.07);
}
.mobile-menu-toggle:active {
  background: #FFD276;
}
/* Hide nav on mobile, burger visible */
@media (max-width: 1020px) {
  header .container {
    flex-wrap: wrap;
  }
  nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
/* --- MOBILE MENU --- */
.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(34,48,74,0.93);
  z-index: 200;
  transform: translateX(-100vw);
  transition: transform 0.36s cubic-bezier(.68,-0.55,.27,1.55);
  opacity: 0.98;
  box-shadow: 0 4px 48px 0 rgba(34,48,74,0.25);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: transparent;
  color: #F7B32B;
  font-size: 2.3rem;
  border: none;
  align-self: flex-end;
  margin: 22px 28px 0 0;
  cursor: pointer;
  transition: color 0.15s;
  z-index: 206;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: #FFD276;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  margin-top: 44px;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.25rem;
  padding: 13px 38px;
  border-radius: 30px;
  text-align: center;
  letter-spacing: 0.02em;
  background: none;
  transition: background 0.14s, color 0.15s;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  color: #F7B32B;
  background: rgba(255,255,255,0.08);
}

/* --- MAIN SECTION LAYOUTS --- */
main {
  flex: 1 1 auto;
}
section {
  background: #fff;
  border-radius: 32px;
  box-shadow: 0 4px 32px rgba(247,179,43,0.05), 0 1.5px 12px rgba(34,48,74,0.04);
  margin-bottom: 60px;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

@media (max-width: 768px) {
  section {
    border-radius: 18px;
    margin-bottom: 36px;
    padding: 28px 8px;
  }
}

.content-grid,
.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}
.features-grid > div,
.content-grid > div {
  flex: 1 1 220px;
  min-width: 220px;
  background: #FCF5E6;
  border-radius: 18px;
  padding: 26px 20px;
  box-shadow: 0 1.5px 8px 0 rgba(247,179,43, 0.10);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  transition: box-shadow 0.21s, transform 0.14s;
}
.features-grid > div:hover {
  box-shadow: 0 6px 36px 0 rgba(34,48,74, 0.13);
  transform: translateY(-2px) scale(1.02);
}
@media (max-width: 1020px) {
  .features-grid, .content-grid {
    flex-direction: column;
    gap: 20px;
  }
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff8e9;
  border-radius: 22px;
  box-shadow: 0 2.5px 12px rgba(34,48,74, 0.12), 0 0.5px 2px rgba(247,179,43,0.08);
  margin-bottom: 20px;
  position: relative;
  padding: 28px 22px;
  min-width: 240px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: box-shadow 0.15s, transform 0.1s;
}
.card:hover {
  box-shadow: 0 8px 30px 0 rgba(34,48,74, 0.12);
  transform: translateY(-2px) scale(1.017);
}

.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
}

.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: 20px;
  background: #fff9ef;
  border-radius: 24px;
  box-shadow: 0 2.5px 14px rgba(34,48,74,0.07);
  padding: 26px 22px;
  margin-bottom: 20px;
  color: #22304A;
  transition: box-shadow 0.14s, transform 0.09s;
  min-width: 230px;
}
.testimonial-card p {
  color: #22304A;
  font-size: 1.03rem;
  margin-bottom: 6px;
}
.testimonial-card span {
  color: #4C5A70;
  font-size: 0.99rem;
  font-style: italic;
}
.testimonial-card .stars {
  color: #F7B32B;
  font-size: 1.2rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  margin-bottom: 8px;
}
.testimonial-card:hover {
  box-shadow: 0 6px 32px 0 rgba(247,179,43,0.17);
  transform: translateY(-2px) scale(1.013);
}
/* Ensure contrast */
@media (max-width: 600px) {
  .testimonial-card {
    padding: 20px 10px;
  }
}

/* --- FAQ-LIST --- */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.faq-list > div {
  background: #FCF5E6;
  border-radius: 18px;
  padding: 22px 20px;
  box-shadow: 0 1.5px 8px 0 rgba(247,179,43, 0.08);
}
.faq-list h3 {
  color: #22304A;
  margin-bottom: 7px;
}

/* --- BUTTONS --- */
.btn-primary,
.button-primary {
  display: inline-block;
  background: #F7B32B;
  color: #22304A;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  padding: 12px 34px;
  border: none;
  border-radius: 28px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(247,179,43,0.09);
  margin-top: 10px;
  transition: background 0.16s, box-shadow 0.18s, transform 0.10s;
}
.btn-primary:hover, .btn-primary:focus,
.button-primary:hover, .button-primary:focus {
  background: #FFD276;
  box-shadow: 0 5px 18px rgba(247,179,43,0.15);
  color: #22304A;
  transform: translateY(-2px) scale(1.01);
}

.button-secondary {
  display: inline-block;
  background: #22304A;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  padding: 11px 30px;
  border: none;
  border-radius: 28px;
  font-weight: 700;
  cursor: pointer;
  margin-top: 10px;
  box-shadow: 0 2px 10px rgba(34,48,74,0.09);
  transition: background 0.16s, color 0.18s, transform 0.10s;
}
.button-secondary:hover, .button-secondary:focus {
  background: #4C5A70;
  color: #FFD276;
  transform: translateY(-2px) scale(1.02);
}

.button-accent {
  background: #F7B32B;
  color: #22304A;
  border-radius: 22px;
  padding: 10px 22px;
  font-size: 1rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  border: none;
  transition: background 0.15s;
}
.button-accent:hover { background: #FFD276; color: #22304A; }

/* --- USP/INFO HIGHLIGHTS --- */
.usp-highlights, .text-section > strong {
  background: #F7B32B;
  color: #22304A;
  border-radius: 16px;
  display: inline-block;
  padding: 10px 22px;
  box-shadow: 0 2px 9px 0 rgba(247,179,43,0.08);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  margin-top: 14px;
  margin-bottom: 4px;
}

.text-section {
  background: #FCF5E6;
  border-radius: 14px;
  padding: 18px 18px 16px 18px;
}

/* --- CONTACT & MAP --- */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin: 14px 0 10px 0;
}
.contact-info img {
  height: 19px;
  vertical-align: middle;
  margin-right: 9px;
}
.map-embed {
  margin: 22px 0 0 0;
  border-radius: 18px;
  overflow: hidden;
  background: #eef;
  min-height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* --- FOOTER --- */
footer {
  background: #fff;
  border-top: 2px solid #F7B32B;
  padding: 38px 0 16px 0;
  box-shadow: 0 -2px 18px rgba(247,179,43,0.045);
  margin-top: 0;
}
footer .container {
  flex-direction: column;
  gap: 20px;
}
.footer-brand img {
  height: 44px;
  border-radius: 14px;
}
footer nav {
  display: flex;
  flex-direction: row;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}
footer nav a {
  color: #4C5A70;
  font-size: 1rem;
  border-radius: 14px;
  padding: 7px 18px;
  font-weight: 500;
  transition: color 0.13s, background 0.12s;
}
footer nav a:hover {
  color: #F7B32B;
  background: #fcf5e6;
}
.footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 1rem;
  align-items: center;
  justify-content: center;
  color: #4C5A70;
}
.footer-contact img {
  margin-right: 3px;
  height: 17px;
  vertical-align: middle;
}
.footer-copyright {
  font-size: 0.97rem;
  text-align: center;
  color: #4C5A70;
  margin-top: 8px;
}

@media (max-width: 768px) {
  footer .container,
  footer nav,
  .footer-contact{
    flex-direction: column;
    gap: 11px;
  }
  .footer-brand img {
    margin-bottom: 6px;
  }
}

/* --- COOKIE CONSENT BANNER --- */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #FFF9EF;
  color: #22304A;
  box-shadow: 0 -2px 22px rgba(34,48,74,0.10);
  padding: 22px 12px 20px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  z-index: 4000;
  border-radius: 12px 12px 0 0;
  animation: bannerIn .35s cubic-bezier(.69,-0.49,.18,1.45);
}
@keyframes bannerIn {
  from { opacity: 0; transform: translateY(100%); }
  to   { opacity: 1; transform: translateY(0); }
}
.cookie-banner p {
  font-size: 1rem;
  color: #22304A;
  margin: 0 0 4px 0;
  text-align: center;
}
.cookie-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}
.cookie-banner .button-primary, .cookie-banner .button-secondary, .cookie-banner .button-accent {
  font-size: 0.96rem;
  min-width: 135px;
  padding: 9px 16px;
}

/* --- COOKIE PREFERENCES MODAL --- */
.cookie-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  min-width: 330px;
  max-width: 95vw;
  background: #fff9ef;
  color: #22304A;
  z-index: 4100;
  padding: 32px 20px 28px 20px;
  box-shadow: 0 14px 50px 0 rgba(34,48,74,0.18);
  border-radius: 32px;
  transform: translate(-50%, -50%) scale(0.99);
  opacity: 1;
  animation: modalIn .32s cubic-bezier(.68,-0.55,.27,1.55);
}
@keyframes modalIn {
  from { opacity: 0; transform: translate(-50%, 30%) scale(0.95); }
  to   { opacity: 1; transform: translate(-50%,-50%) scale(0.99); }
}
.cookie-modal h3 {
  font-size: 1.22rem;
  margin-bottom: 13px;
  font-family: 'Montserrat', Arial, sans-serif;
}
.cookie-modal label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  margin-bottom: 13px;
  color: #22304A;
  border-radius: 10px;
  padding: 6px 8px;
}
.cookie-modal label[disabled], .cookie-modal label input[disabled]{
  opacity: 0.6;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cookie-modal-actions {
  display: flex;
  gap: 14px;
  margin-top: 18px;
  justify-content: flex-end;
}
.cookie-modal .button-primary,
.cookie-modal .button-secondary,
.cookie-modal .button-accent {
  font-size: 0.99rem;
  min-width: 120px;
}
.cookie-modal-close {
  position: absolute;
  right: 16px;
  top: 12px;
  background: transparent;
  border: none;
  font-size: 2rem;
  color: #F7B32B;
  cursor: pointer;
  z-index: 4200;
}
.cookie-modal-close:hover { color: #FFD276; }

/* --- RESPONSIVE / MOBILE ADJUSTMENTS --- */
@media (max-width: 600px) {
  .container {
    padding: 0 7px;
  }
  .features-grid > div,
  .card,
  section,
  .testimonial-card,
  .faq-list > div {
    padding: 18px 8px;
    min-width: 0;
  }
  h1 {
    font-size: 1.32rem;
  }
  h2 {
    font-size: 1.14rem;
  }
  nav .btn-primary {
    padding: 8px 14px;
    font-size: 1rem;
  }
}

/* --- SCROLLBAR --- */
::-webkit-scrollbar {
  width: 9px;
  background: #fcf5e6;
  border-radius: 10px;
}
::-webkit-scrollbar-thumb {
  background: #F7B32B;
  border-radius: 10px;
}

/* --- TRANSITIONS & MICRO-INTERACTIONS --- */
section, .card, .testimonial-card, .features-grid > div, .faq-list > div,
.btn-primary, .button-primary, .button-accent, .button-secondary {
  transition: box-shadow 0.18s, background 0.17s, transform 0.12s, color 0.15s;
}

/* --- UTILS / COMMON CLASSES --- */
.d-none {
  display: none!important;
}
.flex-row {
  display: flex;
  flex-direction: row;
}
.flex-col {
  display: flex;
  flex-direction: column;
}
.align-center {
  align-items: center;
}
.align-start {
  align-items: flex-start;
}
.gap-20 { gap: 20px; }
.gap-24 { gap: 24px; }
.mb-20 { margin-bottom: 20px; }
.mb-40 { margin-bottom: 40px; }

/* --- OVERLAY BACKDROP for modal --- */
.cookie-backdrop {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(34,48,74, 0.19);
  z-index: 4090;
  animation: fadeInBg .25s;
}
@keyframes fadeInBg {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* --- ACCESSIBILITY FOCUS STYLES --- */
:focus {
  outline: 2px solid #F7B32B;
  outline-offset: 2px;
}

/* --- END CSS --- */
