/* ========================================================
   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 {
  height: 100%;
  font-size: 16px;
  scroll-behavior: smooth;
}
body {
  min-height: 100vh;
  line-height: 1.5;
  background: #F8F7FB;
  color: #273143;
  font-family: 'Open Sans', Arial, sans-serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
a {
  background: transparent;
  color: #8a90a8;
  text-decoration: none;
  transition: color 0.15s cubic-bezier(.4,0,.2,1);
}
a:hover, a:focus {
  color: #B99E5B;
}
ul, ol {
  list-style: disc inside;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #273143;
  line-height: 1.2;
  font-weight: 600;
  margin-bottom: 16px;
}
h1 { font-size: 2.5rem; margin-bottom: 28px; }
h2 { font-size: 2rem; margin-bottom: 22px; }
h3 { font-size: 1.38rem; margin-bottom: 13px; }
h4 { font-size: 1.12rem; margin-bottom: 13px; }

p, ul, li, label {
  font-size: 1rem;
  color: #44525f;
}
ul, ol {
  margin-bottom: 16px;
}
strong, b { color: #273143; font-weight: 600; }
small { font-size: 0.94em; color: #8a90a8; }

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

input, button, select, textarea {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  outline: none;
  border-radius: 6px;
  box-sizing: border-box;
}
button { cursor: pointer; border: none; background: none; }

/* -----------------------------
   ROOT COLOR PALETTE (soft pastel style, brand tuned)
----------------------------- */
:root {
  --primary: #273143;
  --secondary: #B99E5B;
  --accent: #F8F5F0;
  --bg: #F8F7FB;
  --pastel-blue: #DDE6F3;
  --pastel-lilac: #E6DEFF;
  --pastel-pink: #FCE4EC;
  --pastel-yellow: #FFFAE3;
  --pastel-mint: #E6FAEE;
  --border-color: #EBE6F5;
  --shadow: 0 6px 24px 0 rgba(61,79,86,0.07);
  --shadow-xs: 0 1px 3px 0 rgba(61,79,86,0.08);
  --shadow-lg: 0 12px 40px 0 rgba(120,91,183,0.07);
}

/* -----------------------------
   LAYOUT COMMONS
----------------------------- */
.container {
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
@media (max-width: 900px) {
  .container {
    padding-left: 12px;
    padding-right: 12px;
  }
  .section {
    padding: 32px 6px;
    margin-bottom: 38px;
  }
}

.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
  justify-content: flex-start;
}
.text-section {
  background: var(--pastel-lilac);
  border-radius: 14px;
  box-shadow: var(--shadow-xs);
  padding: 36px 30px;
  margin-bottom: 28px;
}
@media (max-width: 700px) {
  .text-section {
    padding: 20px 8px;
  }
}

/* -------------------------------------------------
   HEADER
---------------------------------------------------*/
header {
  width: 100%;
  background: linear-gradient(90deg, var(--pastel-blue) 78%, var(--pastel-pink) 100%);
  min-height: 75px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  position: relative;
  z-index: 50;
  box-shadow: 0 3px 25px 0 rgba(180,180,200,0.09);
}
header > a > img {
  height: 48px;
  margin-right: 20px;
  vertical-align: bottom;
}

header nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
header nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  letter-spacing: 0.01em;
  font-size: 1.02rem;
  color: var(--primary);
  padding: 7px 10px;
  border-radius: 6px;
  font-weight: 500;
  transition: background 0.2s, color 0.19s;
}
header nav a:hover, header nav a:focus {
  background: var(--secondary);
  color: #FFF;
}

.cta-button {
  display: inline-block;
  padding: 11px 28px;
  background: linear-gradient(90deg, var(--pastel-pink) 0%, var(--pastel-yellow) 85%);
  color: var(--primary);
  border-radius: 24px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.06rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  box-shadow: var(--shadow-xs);
  outline: none;
  text-shadow: 0 1px 2px rgba(255,255,255,0.13);
  border: none;
  margin-left: 18px;
  transition: box-shadow 0.18s, background 0.22s, color 0.15s;
}
.cta-button:hover, .cta-button:focus {
  background: linear-gradient(91deg, var(--secondary) 4%, var(--pastel-yellow) 96%);
  color: #fff;
  box-shadow: var(--shadow-lg);
}

.mobile-menu-toggle {
  display: none;
  font-size: 2.3rem;
  padding: 5px 12px;
  background: transparent;
  border: none;
  color: var(--primary);
  border-radius: 6px;
  margin-left: 20px;
  transition: background 0.16s;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: var(--pastel-blue);
}

@media (max-width: 950px) {
  header {
    padding: 0 10px;
    height: 64px;
  }
  .cta-button {
    margin-left: 0;
    padding: 9px 14px;
    font-size: 1rem;
  }
}
@media (max-width: 850px) {
  header nav,
  .cta-button {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
}

/* ===================
   MOBILE MENU
   =================== */
.mobile-menu {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  position: fixed;
  top: 0; left: 0; right:0; bottom: 0;
  width: 100vw;
  height: 100vh;
  background: linear-gradient(120deg, var(--pastel-lilac) 67%, var(--pastel-mint) 100%);
  z-index: 200;
  transform: translateX(-100vw);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.45s cubic-bezier(.77,.2,.21,.99), opacity 0.21s;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  font-size: 2.1rem;
  background: transparent;
  border: none;
  color: var(--primary);
  align-self: flex-end;
  margin: 28px 22px 16px 0;
  padding: 6px 16px;
  border-radius: 6px;
  transition: background 0.18s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: var(--pastel-pink);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  width: 100%;
  margin-left: 32px;
  margin-top: 15px;
}
.mobile-nav a {
  font-size: 1.15rem;
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--primary);
  padding: 12px 0;
  border-radius: 8px;
  transition: color 0.16s, background 0.18s;
  width: 100%;
}
.mobile-nav a:active,
.mobile-nav a:focus,
.mobile-nav a:hover {
  background: var(--pastel-blue);
  color: var(--secondary);
}
@media (min-width:851px) {
  .mobile-menu {
    display: none !important;
  }
}

/* =====================================
   HERO SECTIONS
======================================= */
.hero {
  background: linear-gradient(120deg, var(--pastel-yellow) 47%, var(--pastel-mint) 97%);
  min-height: 300px;
  padding-bottom: 0;
  box-shadow: 0 4px 40px 0 rgba(190,210,243,0.13);
  display: flex;
  align-items: center;
  position: relative;
  margin-bottom: 60px;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  height: 100%;
  min-height: 250px;
}
.hero .content-wrapper {
  gap: 8px;
}
.hero h1 {
  color: var(--primary);
  font-size: 2.5rem;
  margin-bottom: 14px;
  text-shadow: 0 1px 5px #fff3;
}
.hero p {
  font-size: 1.17rem;
  color: #58617a;
  margin-bottom: 22px;
}
@media (max-width: 700px) {
  .hero {
    min-height: unset;
    padding-top: 18px;
    margin-bottom: 34px;
  }
  .hero h1 {
    font-size: 1.57rem;
    margin-bottom: 8px;
  }
  .hero p {
    font-size: 1rem;
    margin-bottom: 13px;
  }
}

/* =============================================
   FEATURES & CARDS & FLEX LAYOUTS
=============================================== */
.feature-grid, .service-teasers, .service-list, .property-list, .guide-preview, .team-bios {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin: 30px 0 14px 0;
  align-items: stretch;
  justify-content: flex-start;
}
.feature {
  flex: 1 1 220px;
  min-width: 220px;
  background: var(--pastel-lilac);
  border-radius: 13px;
  box-shadow: var(--shadow);
  padding: 32px 20px 30px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  transition: box-shadow 0.18s, transform 0.14s;
  border: 1px solid var(--border-color);
}
.feature img {
  width: 43px;
  height: 43px;
  margin-bottom: 6px;
}
.feature h3 {
  font-size: 1.21rem;
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--secondary);
  margin-bottom: 4px;
}
.feature p {
  color: #535664;
  font-size: 1.01rem;
}
.feature:hover, .feature:focus-within {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px) scale(1.023);
}

.service-teasers, .service-list {
  gap: 24px;
}
.service-card {
  flex: 1 1 236px;
  min-width: 238px;
  background: var(--pastel-blue);
  border-radius: 13px;
  box-shadow: var(--shadow-xs);
  padding: 28px 18px 22px 18px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border: 1px solid var(--border-color);
  position: relative;
  transition: box-shadow 0.16s, transform 0.15s;
}
.service-card img {
  width: 41px;
  height: 41px;
  margin-bottom: 4px;
}
.service-card h3 {
  color: var(--primary);
}
.service-card .preis {
  display: inline-block;
  margin-top: 7px;
  padding: 6px 17px;
  border-radius: 18px;
  background: var(--pastel-lilac);
  color: var(--secondary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.02rem;
  letter-spacing: 0.02em;
  box-shadow: 0 1px 3px 0 #decfd74a;
}
.service-card:hover, .service-card:focus-within {
  box-shadow: var(--shadow-lg);
  transform: translateY(-7px) scale(1.022);
}

.team-bios {
  gap: 28px;
}
.team-member {
  flex: 1 1 220px;
  min-width: 210px;
  background: var(--pastel-mint);
  border-radius: 13px;
  box-shadow: var(--shadow-xs);
  padding: 24px 19px 16px 19px;
  display: flex;
  flex-direction: column;
  gap: 9px;
  align-items: center;
  text-align: center;
  border: 1px solid var(--border-color);
}
.team-member img {
  width: 46px; height: 46px;
  margin-bottom: 5px;
}
.team-member h3 {
  color: var(--primary);
  margin-bottom: 2px;
  font-size: 1.13rem;
}
.team-member p {
  font-size: 0.99rem;
}
@media (max-width: 700px) {
  .feature-grid, .service-teasers, .service-list, .property-list, .guide-preview, .team-bios {
    flex-direction: column;
    gap: 16px;
  }
}

/* ===================================
   PROPERTIES
==================================== */
.property-search-form {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  margin-bottom: 20px;
  background: var(--pastel-mint);
  padding: 17px 18px;
  border-radius: 11px;
  box-shadow: var(--shadow-xs);
}
.property-search-form label {
  min-width: 68px;
  color: var(--secondary);
  font-weight: 600;
}
.property-search-form input, .property-search-form select {
  padding: 8px 13px;
  border: 1px solid var(--border-color);
  border-radius: 7px;
  background: #fff;
  font-size: 1rem;
  outline: none;
  transition: border 0.17s;
}
.property-search-form input:focus, .property-search-form select:focus {
  border-color: var(--secondary);
}
.property-search-form button {
  padding: 8px 22px;
  border-radius: 19px;
  background: linear-gradient(86deg, var(--pastel-pink) 0%, var(--pastel-blue) 96%);
  color: var(--primary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  outline: none;
  border: none;
  transition: background 0.16s, color 0.13s;
  box-shadow: var(--shadow-xs);
}
.property-search-form button:hover, .property-search-form button:focus {
  background: var(--secondary);
  color: #fff;
}
@media (max-width: 700px) {
  .property-search-form {
    flex-direction: column;
    gap: 7px;
    padding: 12px 7px;
  }
}
.property-list {
  gap: 24px;
}
.property-card {
  flex: 1 1 262px;
  min-width: 250px;
  background: var(--pastel-yellow);
  border-radius: 13px;
  box-shadow: var(--shadow-xs);
  padding: 24px 21px 18px 21px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border: 1px solid var(--border-color);
  position: relative;
  transition: box-shadow 0.14s, transform 0.14s;
}
.property-card .property-header {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 6px;
}
.property-card h3 {
  color: var(--primary);
  margin-bottom: 0;
  font-size: 1.08rem;
}
.property-card span {
  color: var(--secondary);
  font-size: 1.01rem;
  font-weight: 600;
}
.property-card:hover,
.property-card:focus-within {
  box-shadow: var(--shadow-lg);
  transform: scale(1.018);
}
.pagination {
  display: flex;
  gap: 9px;
  margin: 16px 0 2px 0;
  justify-content: flex-start;
}
.pagination a, .pagination span {
  padding: 6px 14px;
  border-radius: 7px;
  background: var(--pastel-lilac);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 0.97rem;
  color: var(--primary);
  transition: background 0.13s, color 0.13s;
}
.pagination span { background: var(--secondary); color: #fff; }
.pagination a:hover, .pagination a:focus { background: var(--pastel-blue); color: var(--secondary); }

/* ==============================
   GUIDE CARDS
============================== */
.guide-categories ul {
  margin-bottom: 21px;
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
}
.guide-categories li {
  display: inline-block;
  background: var(--pastel-mint);
  color: var(--secondary);
  border-radius: 18px;
  padding: 7px 18px;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-bottom: 3px;
}
.guide-preview {
  gap: 24px;
}
.guide-card {
  flex: 1 1 224px;
  min-width: 210px;
  background: var(--pastel-pink);
  border-radius: 13px;
  box-shadow: var(--shadow-xs);
  padding: 23px 16px 19px 16px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border: 1px solid var(--border-color);
  color: var(--primary);
  transition: box-shadow 0.16s;
  position: relative;
}
.guide-card h3 { margin-bottom: 7px; color: var(--secondary); font-size: 1.05rem; }
.guide-card p { color: #44525f; font-size: 0.99rem; }
.guide-card:hover, .guide-card:focus-within {
  box-shadow: var(--shadow-lg);
  z-index: 2;
}

/* =========================
   TESTIMONIALS
========================== */
.testimonials {
  background: var(--pastel-blue);
  border-radius: 15px;
  padding: 40px 0 50px 0;
}
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin: 28px 0 20px 0;
  justify-content: flex-start;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 17px;
  padding: 20px 26px 24px 24px;
  min-width: 230px;
  background: #fff;
  border-radius: 13px;
  box-shadow: var(--shadow-xs);
  margin-bottom: 20px;
  border: 1.5px solid var(--border-color);
  transition: box-shadow 0.15s, transform 0.11s;
  color: var(--primary);
}
.testimonial-card p {
  font-size: 1.08rem;
  color: #273143;
}
.testimonial-author {
  color: var(--secondary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-style: italic;
  letter-spacing: 0.01em;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  box-shadow: var(--shadow-lg);
  transform: scale(1.017);
}
@media (max-width: 700px) {
  .testimonial-slider { flex-direction: column; gap: 14px; margin: 18px 0 0 0; }
}
.rating-summary {
  margin-top: 13px;
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--primary);
  font-size: 1.13rem;
  background: var(--pastel-yellow);
  border-radius: 11px;
  padding: 9px 18px;
  box-shadow: var(--shadow-xs);
  font-weight: 600;
  display: inline-block;
}

/* =============================
 CTA Section
============================= */
section.cta, .contact-cta {
  background: linear-gradient(100deg, var(--pastel-yellow) 58%, var(--pastel-mint));
  border-radius: 16px;
  margin-bottom: 58px;
  box-shadow: 0 4px 35px 0 rgba(198, 222, 233, 0.12);
  padding: 40px 0 35px 0;
}
section.cta .content-wrapper,
.contact-cta .content-wrapper { align-items: center; text-align: center; gap: 10px; }
section.cta h2, .contact-cta h2 { margin-bottom: 11px; }
@media (max-width: 700px) {
  section.cta, .contact-cta {
    padding: 18px 3px 15px 3px;
    border-radius: 13px;
    margin-bottom: 32px;
  }
  section.cta .content-wrapper,
  .contact-cta .content-wrapper { gap: 7px; }
}

/* ===============
   Address & Contact blocks
   ================ */
.address-block, .email-block, .opening-hours, .phone-block {
  margin-bottom: 16px;
  background: var(--pastel-lilac);
  padding: 15px 22px;
  border-radius: 8px;
  box-shadow: var(--shadow-xs);
  font-size: 1.01rem;
  color: var(--primary);
}
.info { margin-top: 16px; }

/* =================================
   FOOTER
================================== */
footer {
  background: linear-gradient(91deg, var(--pastel-blue) 65%, var(--pastel-pink) 100%);
  padding: 40px 0 10px 0;
  border-top: 1.5px solid var(--border-color);
  margin-top: 54px;
}
.footer-container {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.footer-container img {
  width: 56px;
  height: auto;
  margin-right: 13px;
}
.footer-contact > div {
  margin-bottom: 7px;
}
.footer-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  justify-content: flex-start;
  margin: 7px 0 11px 0;
}
.footer-menu a {
  color: var(--primary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  padding: 3px 13px;
  border-radius: 8px;
  transition: background 0.13s;
}
.footer-menu a:hover,
.footer-menu a:focus {
  background: var(--pastel-mint);
  color: var(--secondary);
}
.footer-socials {
  display: flex;
  gap: 17px;
  margin-top: 14px;
}
.footer-legal {
  text-align: left;
  margin-top: 10px;
}
@media (max-width: 600px) {
  .footer-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 13px;
  }
}

/* =============================
   LISTS FORMATTING
============================== */
ul, ol {
  margin-left: 21px;
  margin-bottom: 12px;
}
li {
  margin-bottom: 7px;
}
ul li:last-child, ol li:last-child {
  margin-bottom: 0;
}

/* =============================
   MODAL OVERLAY
============================== */
.modal {
  display: none;
  position: fixed;
  z-index: 9100;
  left: 0; top: 0; width: 100vw; height: 100vh;
  background: rgba(39,49,67,0.23);
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.modal.open {
  display: flex;
  pointer-events: auto;
}
.modal-content {
  background: #fff;
  max-width: 445px;
  width: 95vw;
  border-radius: 15px;
  padding: 32px 20px 27px 20px;
  box-shadow: 0 10px 70px rgba(39,49,67,.16);
  color: #273143;
  border: 1.5px solid var(--border-color);
}
.modal-content h3 { margin-bottom: 13px; color: var(--secondary); }
.modal-content .cookie-category {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 10px;
}
.modal-content .cookie-toggle {
  display: inline-block;
  appearance: none;
  width: 38px;
  height: 22px;
  background: var(--pastel-lilac);
  border-radius: 12px;
  position: relative;
  vertical-align: middle;
  transition: background 0.13s;
  outline: none;
  border: 1px solid var(--border-color);
}
.modal-content .cookie-toggle:checked {
  background: var(--secondary);
}
.modal-content .cookie-toggle::before {
  content: '';
  position: absolute;
  top: 3px; left: 3px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: #fff;
  transition: left 0.17s;
}
.modal-content .cookie-toggle:checked::before {
  left: 19px;
}

.modal-close {
  position: absolute;
  top: 9px; right: 14px;
  font-size: 1.53rem;
  color: var(--primary);
  background: none;
  border: none;
  cursor: pointer;
}

/* =======================
   COOKIE CONSENT BANNER
========================*/
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: linear-gradient(91deg, var(--pastel-pink) 55%, var(--pastel-mint) 100%);
  color: var(--primary);
  box-shadow: 0 -3px 40px rgba(200,170,245,0.12);
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  padding: 25px 30px;
  opacity: 1;
  transition: opacity 0.32s, transform 0.32s;
  font-size: 1.03rem;
  border-top: 1.5px solid var(--border-color);
}
.cookie-banner.hide {
  opacity: 0;
  transform: translateY(90px);
  pointer-events: none;
}
.cookie-banner .cookie-buttons {
  display: flex;
  gap: 17px;
  flex-wrap: wrap;
}
.cookie-banner .cookie-btn {
  padding: 8px 24px;
  border-radius: 20px;
  background: var(--pastel-lilac);
  color: var(--primary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  margin-left: 0;
  box-shadow: var(--shadow-xs);
  transition: background 0.13s, color 0.15s;
}
.cookie-banner .cookie-btn.accept {
  background: var(--secondary);
  color: #fff;
}
.cookie-banner .cookie-btn.accept:hover { background: #88733b; }
.cookie-banner .cookie-btn.reject {
  background: var(--pastel-yellow);
  color: var(--secondary);
}
.cookie-banner .cookie-btn.reject:hover { background: #ffefb8; color: #273143; }
.cookie-banner .cookie-btn.settings,
.cookie-banner .cookie-btn.settings:hover {
  background: var(--pastel-blue);
  color: var(--primary);
}
@media (max-width: 700px) {
  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
    gap: 13px;
    padding: 13px 6px;
    font-size: 0.97rem;
  }
  .cookie-banner .cookie-buttons {
    flex-direction: column;
    gap: 10px;
  }
}

/* =======================
   ANIMATIONS
========================*/
@keyframes modalIn {
  0% { opacity: 0; transform: scale(0.92); }
  80% { transform: scale(1.04); }
  100% { opacity: 1; transform: scale(1); }
}
.modal.open .modal-content {
  animation: modalIn 0.33s cubic-bezier(.29,.6,.58,1.13);
}

/* ================================
   FORMS
================================== */
input[type="text"],
input[type="email"],
input[type="number"],
select, textarea {
  padding: 8px 14px;
  border: 1.2px solid var(--border-color);
  border-radius: 8px;
  background: #fff;
  font-size: 1rem;
  color: var(--primary);
  margin-bottom: 11px;
  transition: border 0.18s;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--secondary);
}
textarea {
  min-height: 78px;
  resize: vertical;
}

button, input[type="submit"] {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.05rem;
  transition: background 0.15s, box-shadow 0.18s, color 0.13s;
  outline: none;
}

/* ========================================
   SPACING UTILS & MISC
========================================== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
}
.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;
  padding: 20px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ========================
  RESPONSIVE TYPOGRAPHY & LAYOUT
==========================*/
@media (max-width: 1000px) {
  h1 { font-size: 2.05rem; }
  h2 { font-size: 1.38rem; }
  .section { padding: 30px 6px; }
}
@media (max-width: 550px) {
  .container { padding-left: 3px; padding-right: 3px; }
  .section { padding: 16px 3px; margin-bottom: 28px; }
}

/* ========================
  MISC
==========================*/
::-webkit-scrollbar { width: 10px; background: var(--pastel-blue); }
::-webkit-scrollbar-thumb { background: var(--pastel-lilac); border-radius: 10px; }

::-moz-selection { background: var(--pastel-yellow); color: var(--primary); }
::selection { background: var(--pastel-yellow); color: var(--primary); }

/* End of style.css */
