/* --- CSS RESET & NORMALIZATION --- */
html { box-sizing: border-box; }
*, *:before, *:after { box-sizing: inherit; margin: 0; padding: 0; }
body, html {
  height: 100%;
  background: #F1F2ED;
  color: #232933;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: #E89743; text-decoration: none; transition: color 0.2s; }
a:hover, a:focus { color: #232933; text-decoration: underline; }
ul, ol { padding-left: 1.4em; margin-bottom: 16px; }
li { margin-bottom: 10px; }
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 800;
  letter-spacing: 0.01em;
  margin-bottom: 12px;
  color: #232933;
}
h1 { font-size: 2.6rem; margin-bottom: 20px; }
h2 { font-size: 2rem; margin-bottom: 18px; }
h3 { font-size: 1.4rem; margin-bottom: 14px; }
button, input, select, textarea {
  font-family: inherit; font-size: inherit;
  outline: none;
}

/* --- BASE LAYOUT UTILITY CLASSES --- */
.container {
  width: 100%;
  max-width: 1200px;
  padding: 0 20px;
  margin: 0 auto;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
  margin-top: 16px;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 0 -12px;
}
.card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 16px rgba(232,151,67,0.08), 0 1.5px 6px rgba(35,41,51,0.05);
  margin-bottom: 20px;
  position: relative;
  padding: 24px;
  flex: 1 0 260px;
  min-width: 260px;
  transition: transform 0.18s cubic-bezier(.42,0,.58,1), box-shadow 0.18s;
}
.card:hover {
  transform: translateY(-3px) scale(1.03) rotate(-1deg);
  box-shadow: 0 8px 24px rgba(232,151,67,0.19), 0 4px 8px rgba(35,41,51,0.09);
}
.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;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 4px 18px rgba(35,41,51,0.11), 0 1px 4px rgba(232,151,67,0.10);
  padding: 20px;
  margin-bottom: 20px;
  min-width: 220px;
  max-width: 400px;
  font-size: 1.05rem;
  position: relative;
  z-index: 1;
  animation: testimonial-pop 1s cubic-bezier(.61,-0.07, 0.44, 1.2) 0s 1;
}
@keyframes testimonial-pop {
  0% { opacity: 0; transform: scale(0.82); }
  70% { opacity: 1; transform: scale(1.06); }
  100% { opacity: 1; transform: scale(1); }
}
.testimonial-card p { color: #232933; font-size: 1.08rem; font-weight: 500; }
.testimonial-card span { color: #E89743; font-size: 0.97rem; font-family: 'Montserrat', Arial, sans-serif; font-weight: 600; margin-top: 10px; }
.testimonials .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
  margin-top: 12px;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 16px;
}

/***** MAIN STRUCTURE *****/
header {
  width: 100%;
  background: #fff;
  box-shadow: 0 2px 8px rgba(35,41,51,0.07);
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  padding-bottom: 12px;
}
.main-nav {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  color: #232933;
  font-size: 1.04rem;
  padding: 7px 10px;
  border-radius: 8px;
  transition: background 0.16s, color 0.16s;
}
.main-nav a:hover,
.main-nav a:focus {
  background: #FFEEDB;
  color: #E89743;
}
.main-nav .btn-primary {
  margin-left: 12px;
}
.mobile-menu-toggle {
  display: none;
  font-size: 2.4rem;
  background: #E89743;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 48px; height: 48px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(35,41,51,0.10);
  transition: background 0.2s, color 0.2s;
}
.mobile-menu-toggle:active,
.mobile-menu-toggle:focus {
  background: #232933;
  color: #E89743;
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  position: fixed;
  top: 0; left: 100vw; /* hidden by default, slide in */
  width: 100vw; height: 100vh;
  background: #fff;
  z-index: 2001;
  transition: transform 0.36s cubic-bezier(.51,1.2,0.92,1) 0s;
  transform: translateX(0);
  box-shadow: 0 2px 36px rgba(35,41,51,0.17);
  visibility: hidden;
  pointer-events: none;
}
.mobile-menu.open {
  left: 0; transform: translateX(-100vw); /* slide in */
  visibility: visible;
  pointer-events: auto;
}
.mobile-menu-close {
  font-size: 2.0rem;
  background: none;
  border: none;
  color: #E89743;
  margin: 24px 18px 0 12px;
  align-self: flex-end;
  cursor: pointer;
  transition: color 0.18s;
}
.mobile-menu-close:hover { color: #232933; }
.mobile-nav {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 32px 28px;
  gap: 22px;
  margin-top: 12px;
}
.mobile-nav a {
  font-size: 1.2rem;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #232933;
  font-weight: 600;
  padding: 12px 5px;
  border-radius: 9px;
  background: #FFEEDB;
  margin-bottom: 4px;
  transition: background 0.15s, color 0.15s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #E89743;
  color: #fff;
}

/***** HERO & CTA SECTIONS *****/
.hero {
  background: #FFEEDB;
  border-radius: 0 0 32px 32px;
  box-shadow: 0 10px 44px #e897432c;
  padding: 52px 0 44px 0;
  margin-bottom: 44px;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 10px;
}
.hero h1 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2.8rem;
  color: #232933;
  margin-bottom: 5px;
  font-weight: 900;
  letter-spacing: -0.022em;
}
.hero p {
  color: #E89743;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1.22rem;
  margin-bottom: 18px;
  font-weight: 500;
}
.cta {
  margin-bottom: 0;
  background: #F1F2ED;
  border-radius: 30px;
  box-shadow: 0 8px 32px rgba(232,151,67,0.1);
}
.cta .content-wrapper {
  align-items: flex-start;
}
.cta h2 {
  color: #E89743;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  font-size: 2rem;
  margin-bottom: 13px;
  letter-spacing: -1px;
}
.cta .btn-primary {
  font-size: 1.12rem;
  padding: 14px 36px;
  border-radius: 20px;
  font-weight: 700;
  box-shadow: 0 2px 10px #e8974336;
}

/***** BUTTONS *****/
.btn {
  display: inline-block;
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 10px 28px;
  border: none;
  border-radius: 16px;
  background: #FFEEDB;
  color: #E89743;
  font-weight: 700;
  font-size: 1.03rem;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(232,151,67,0.16);
  transition: background 0.19s, color 0.19s, box-shadow 0.17s, transform 0.17s;
  margin-right: 10px;
}
.btn-primary {
  background: #E89743;
  color: #fff;
  box-shadow: 0 2px 15px #e8974388;
}
.btn-primary:hover, .btn-primary:focus {
  background: #232933;
  color: #E89743;
  transform: scale(1.06) rotate(-2deg);
}
.btn:hover, .btn:focus {
  box-shadow: 0 3px 17px #e8974344;
  background: #FFEEDB;
  color: #232933;
}

/***** FEATURES STYLE ******/
.features {
  margin-bottom: 60px;
}
.features h2 {
  color: #E89743;
  font-size: 1.9rem;
}
.features .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: flex-start;
}
.features ul {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin: 0;
}
.features li {
  display: flex;
  align-items: center;
  gap: 13px;
  background: #fff;
  border-radius: 15px;
  padding: 13px 19px;
  font-size: 1.07rem;
  font-family: 'Roboto', Arial, sans-serif;
  color: #232933;
  font-weight: 500;
  box-shadow: 0 1px 6px #e8974322;
  transition: box-shadow 0.15s, transform 0.14s;
}
.features li:hover {
  box-shadow: 0 6px 19px #e8974336; transform: scale(1.04);
}
.features li img {
  width: 32px; height: 32px; flex-shrink: 0;
  filter: drop-shadow(0 1px 0 #ffe3c9);
}
.category-list {
  background: #FFEEDB;
  border-radius: 16px;
  padding: 15px 20px;
  margin-bottom: 12px;
  font-family: 'Montserrat', Arial, sans-serif;
}

/***** FOOTER *****/
footer {
  background: #232933;
  color: #fff;
  border-radius: 32px 32px 0 0;
  padding: 38px 0 22px 0;
  font-size: 0.99rem;
  margin-top: 60px;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: flex-start;
}
.footer-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 10px;
}
.footer-menu a {
  color: #FFEEDB;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  transition: color 0.14s;
}
.footer-menu a:hover, .footer-menu a:focus {
  color: #E89743;
  text-decoration: underline;
}
.footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  color: #fff;
}
.footer-contact img {
  width: 20px; margin-right: 7px; vertical-align: middle;
}
.footer-logo {
  margin-top: 18px;
}
.footer-logo img { height: 34px; width: auto; }

/***** FORMS, MAP PLACEHOLDER *****/
input, textarea {
  border-radius: 9px;
  border: 1.5px solid #E89743;
  padding: 11px 14px;
  margin-bottom: 16px;
  color: #232933;
  font-family: inherit;
}
.map-placeholder {
  background: #FFEEDB;
  border-radius: 18px;
  padding: 22px 18px;
  color: #232933;
  margin-top: 16px;
  margin-bottom: 32px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.08rem;
  font-weight: 500;
}

/***** SPECIAL/INFO BLOCKS *****/
.privacy-policy, .rodo-info, .cookies-policy, .terms {
  background: #FFF;
  border-radius: 16px;
  box-shadow: 0 2px 10px #e897431a;
  margin-bottom: 44px;
  padding: 30px 15px;
}
.privacy-policy ul, .rodo-info ul, .cookies-policy ul, .terms ul {
  gap: 10px;
}

/***** PLAYFUL DYNAMIC DECORATIVE STYLES *****/
body, .section, .card, .testimonial-card, .features li, .cta, .category-list, .map-placeholder {
  /* fun shadow wiggle for playful look */
  box-shadow: 0 1.5px 7px #e8974320, 0 0.5px 1px #e8974335;
}
h1, h2, h3, h4, h5 {
  font-family: 'Montserrat', Arial, sans-serif;
  letter-spacing: -1px;
}
.hero, .cta, .features, .category-list {
  border-radius: 32px;
}
/***** Micro-animations *****/
.btn, .main-nav a, .footer-menu a, .features li {
  transition: background 0.14s, color 0.14s, box-shadow 0.17s, transform 0.13s;
}
.features li:hover {
  background: #FFEEDB;
  color: #E89743;
  cursor: pointer;
  box-shadow: 0 10px 30px #e8974340;
  transform: rotate(-2deg) scale(1.03);
}

/***** FUN FONTS *****/
h1, h2, h3, .nav, .btn, .category-list, .footer-menu a {
  font-family: 'Montserrat', Arial, sans-serif;
}

/***** RESPONSIVE DESIGN (MOBILE FIRST) *****/
@media (max-width: 1200px) {
  .container { max-width: 980px; }
}
@media (max-width: 900px) {
  .container { max-width: 740px; }
  .footer-contact { flex-direction: column; gap: 9px; }
  .footer-logo { align-self: flex-start; }
}
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.4rem; }
  h3 { font-size: 1.13rem; }
  .hero { padding: 32px 0 22px 0; }
  .container { padding: 0 8px; }
  .main-nav { display: none; }
  .mobile-menu-toggle { display: flex; }
  .section { padding: 28px 5px; margin-bottom: 29px; }
  .card-container, .features .content-wrapper, .testimonials .content-wrapper,
  .footer-contact, .footer-menu, .content-grid, .text-image-section {
    flex-direction: column;
    gap: 16px;
  }
  .testimonial-card { max-width: 100%; }
  .features ul { gap: 12px; }
  .category-list { padding: 10px 10px; }
  .footer-contact, .footer-menu { gap: 10px; }
  .hero, .cta { border-radius: 0 0 20px 20px; }
  .about .text-section { font-size: 0.96rem; }
  .footer-logo { margin-top: 7px; }
}
@media (max-width: 480px) {
  h1 { font-size: 1.42rem; }
  h2 { font-size: 1.14rem; }
  .btn, .btn-primary { font-size: 1rem; padding: 10px 11px; }
}

/***** COOKIE CONSENT BANNER + MODAL *****/
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; width: 100vw;
  background: #232933;
  color: #FFEEDB;
  font-family: 'Roboto', Arial, sans-serif;
  z-index: 2100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 30px;
  border-radius: 20px 20px 0 0;
  box-shadow: 0 -4px 22px #e8974388;
  gap: 20px;
  animation: appear-bounce 0.48s cubic-bezier(.41,1.7,.74,.86);
}
@keyframes appear-bounce {
  0% { transform: translateY(60px) scaleY(0.8); opacity:0; }
  60% { transform: translateY(-10px) scaleY(1.01); opacity:1; }
  100% { transform: translateY(0) scaleY(1); opacity: 1; }
}
.cookie-banner p {
  color: #FFEEDB;
  margin-bottom: 0;
  font-size: 1.03rem;
  max-width: 480px;
}
.cookie-banner .cookie-btn {
  margin-left: 12px;
  padding: 8px 18px;
  border-radius: 14px;
  background: #E89743;
  color: #fff;
  border: none;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.03rem;
  cursor: pointer;
  box-shadow: 0 2px 8px #e897434d;
  transition: background 0.19s, color 0.13s, transform 0.14s;
}
.cookie-banner .cookie-btn--settings {
  background: #fff;
  color: #E89743;
  border: 1px solid #E89743;
}
.cookie-banner .cookie-btn:hover, .cookie-banner .cookie-btn:focus {
  background: #232933;
  color: #FFEEDB;
  transform: scale(1.07) rotate(-2deg);
}
.cookie-banner .cookie-btn--settings:hover, .cookie-banner .cookie-btn--settings:focus {
  background: #FFEEDB;
  color: #E89743;
}
@media (max-width:700px) {
  .cookie-banner { flex-direction: column; align-items: flex-start; padding: 13px 10px; gap: 6px; }
}

.cookie-modal-overlay {
  position: fixed;
  z-index: 2105;
  background: rgba(35,41,51,0.57);
  top: 0;left: 0;width: 100vw; height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.24s;
}
.cookie-modal-overlay.open {
  visibility: visible;
  opacity: 1;
}
.cookie-modal {
  background: #fff;
  color: #232933;
  padding: 36px 24px 18px 24px;
  border-radius: 18px;
  width: 94vw; max-width: 410px;
  box-shadow: 0 4px 30px #e897434d;
  font-family: 'Roboto', Arial, sans-serif;
  position: relative;
  animation: appear-bounce 0.42s cubic-bezier(.41,1.7,.74,.86);
}
.cookie-modal h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #E89743;
  margin-bottom: 11px;
  font-size: 1.21rem;
}
.cookie-modal .cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.cookie-modal label {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
}
.cookie-modal input[type="checkbox"] {
  width: 18px; height: 18px;
  accent-color: #E89743;
  margin-right: 7px;
}
.cookie-modal .essential {
  color: #232933;
  font-size: 1rem;
  font-weight: 600;
}
.cookie-modal .cookie-modal-actions {
  margin-top: 22px;
  display: flex;
  gap: 15px;
}
.cookie-modal .cookie-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 8px 18px;
  border-radius: 13px;
  border: none;
  font-weight: 700;
  background: #E89743;
  color: #fff;
  cursor: pointer;
  transition: background 0.14s, color 0.12s, transform 0.11s;
}
.cookie-modal .cookie-btn--decline {
  background: #fff;
  color: #E89743;
  border: 1.2px solid #E89743;
}
.cookie-modal .cookie-btn:hover, .cookie-modal .cookie-btn:focus {
  background: #232933;
  color: #FFEEDB;
  transform: scale(1.06) rotate(-1.5deg);
}
.cookie-modal .cookie-btn--decline:hover, .cookie-modal .cookie-btn--decline:focus {
  background: #FFEEDB;
  color: #E89743;
  border: 1.2px solid #E89743;
}
.cookie-modal .cookie-modal-close {
  position: absolute;
  top: 11px;
  right: 19px;
  background: none;
  border: none;
  color: #E89743;
  font-size: 1.26rem;
  cursor: pointer;
  font-weight: bold;
  transition: color 0.12s;
}
.cookie-modal .cookie-modal-close:hover {
  color: #232933;
}

/***** CONTENT CARDS & INFO GRIDS *****/
.card-container, .content-grid {
  gap: 24px;
}
.card {
  box-shadow: 0 4px 16px #e8974317, 0 1.5px 6px #e8974342;
  border-radius: 20px;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}

/* --- UTILITIES --- */
.mt-20 { margin-top: 20px!important; }
.mt-24 { margin-top: 24px!important; }
.text-center { text-align: center!important; }
.align-center { display: flex; align-items: center; justify-content: center; }

/***** PLAYFUL DECORATIVE DOTS (DYNAMIC) *****/
.hero:after, .cta:before {
  content: '';
  position: absolute;
  z-index: 0;
  background: #E89743;
  opacity: 0.13;
  border-radius: 50%;
  width: 92px; height: 92px;
  left: 20px;
  top: 24px;
  filter: blur(6px);
  pointer-events: none;
  display: none;
}
@media (min-width:1000px) {
  .hero:after { display: block; left: 18vw; top: 10px; }
  .cta:before { display: block; right: 12vw; top: 24px; left: auto; }
}

/***** PRINT/ACCESSIBILITY *****/
@media print {
  header, footer, .cookie-banner, .mobile-menu { display: none !important; }
  body { background: #fff; color: #232933; }
}
