/* 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, menu, 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, 
main, 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 {
  /* Scroll behaviour for playful effect */
  scroll-behavior: smooth;
}
body {
  min-height: 100vh;
  font-family: 'Open Sans', Arial, sans-serif;
  background: #F7D6E0;
  color: #28527A;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #EF8354;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #D25A19;
  outline: none;
  text-decoration: underline;
}

input, button, textarea, select {
  font-family: inherit;
  font-size: 100%;
  margin: 0; 
}

button { 
  background: none; border: none; padding: 0; cursor: pointer; 
}

ul, ol {
  padding-left: 24px;
  margin-bottom: 16px;
}
li {
  margin-bottom: 10px;
}
table {
  border-collapse: collapse;
  width: 100%;
  margin-top: 16px;
  margin-bottom: 24px;
  background: #fff2f7;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 10px 0 rgba(40,82,122,0.05);
}
th, td {
  padding: 14px 16px;
  text-align: left;
}
th {
  background: #F7D6E0;
  font-size: 1.1em;
}
tr:not(:last-child) {
  border-bottom: 1px solid #fff1ea;
}

caption {
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 8px;
  font-family: 'Varela Round', cursive;
  color: #28527A;
  letter-spacing: 1px;
}

/* GLOBAL TYPOGRAPHY & BRAND STYLE */
@import url('https://fonts.googleapis.com/css?family=Varela+Round:400,700&display=swap');
@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,700&display=swap');

h1, h2, h3, h4, h5, h6 {
  font-family: 'Varela Round', cursive;
  color: #28527A;
  font-weight: 700;
  margin-bottom: 14px;
  letter-spacing: 0.04em;
  line-height: 1.12;
}
h1 { font-size: 2.5rem; margin-top: 16px; }
h2 { font-size: 2rem; margin-top: 24px; }
h3 { font-size: 1.3rem; }
h4,h5,h6 { font-size: 1.1rem; }

p, ul, ol, address, blockquote {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  margin-bottom: 15px;
  color: #28527A;
}
strong, b {
  font-weight: bold;
  color: #D25A19;
}
blockquote {
  font-size: 1.15rem;
  color: #28527A;
  background: #FFF8FB;
  border-left: 5px solid #EF8354;
  padding: 16px 24px; 
  border-radius: 0 16px 16px 0;
  margin-bottom: 12px;
  font-family: 'Varela Round', cursive;
}
address {
  font-style: normal;
}

/* LAYOUT: CONTAINER & FLEX WRAPPER */
.container {
  max-width: 1200px;
  width: 92%;
  margin: 0 auto;
  padding: 0;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: #fff;
  border-radius: 18px;
  margin-bottom: 32px;
  padding: 36px 22px;
  box-shadow: 0 4px 16px 0 rgba(40,82,122,0.07), 0 1.5px 8px 0 rgba(212,90,25,.03);
}
.text-section {
  background: #F7D6E0;
  border-radius: 20px;
  padding: 32px 18px;
  margin-bottom: 48px;
}

/* MANDATORY SPACING PATTERNS + FLEXBOX */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #FFF8FB;
  border-radius: 14px;
  box-shadow: 0 2px 12px 0 rgba(40,82,122,0.07);
  padding: 26px 16px;
  flex: 1 1 240px;
  min-width: 270px;
}
.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;
  background: #FFF8FB;
  border-radius: 18px;
  margin-bottom: 20px;
  box-shadow: 0 2px 16px 0 rgba(40,82,122,0.07);
  flex-wrap: wrap;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #F7D6E0;
  border-radius: 14px;
  padding: 18px 12px;
  box-shadow: 0 1.5px 6px 0 rgba(40,82,122,0.04);
}

/* PLAYFUL DYNAMIC: COLORS & ANIMATIONS */
.feature-grid, .service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.feature-grid > div, .service-grid > div {
  flex: 1 1 220px;
  min-width: 230px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 10px 0 rgba(212,90,25,0.05);
  padding: 24px 16px;
  text-align: center;
  transition: transform 0.18s, box-shadow 0.18s;
  position: relative;
  margin-bottom: 20px;
  outline: 2.5px solid #F7D6E0;
}
.feature-grid > div:hover, .service-grid > div:hover {
  transform: translateY(-6px) scale(1.04) rotate(-1deg);
  box-shadow: 0 8px 32px 0 rgba(40,82,122,0.18), 0 2px 8px rgba(212,90,25,0.12);
  z-index: 2;
}
.feature-grid img, .service-grid img {
  width: 48px; height: 48px; margin-bottom: 12px; display: block; margin-left: auto; margin-right: auto;
  filter: drop-shadow(0 3px 4px rgba(40,82,122,.10));
  transition: transform 0.22s;
}
.feature-grid > div:hover img, .service-grid > div:hover img {
  transform: rotate(12deg) scale(1.09);
}

/* CTA BUTTONS: PLAYFUL, ENERGETIC STYLE */
.cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: 'Varela Round', cursive;
  font-size: 1.15rem;
  border-radius: 25px 25px 21px 25px;
  cursor: pointer;
  border: 0;
  margin-top: 8px;
  margin-bottom: 8px;
  position: relative;
  text-shadow: 0 2px 6px rgba(212,90,25,0.08);
  transition: background 0.16s, color 0.14s, box-shadow 0.18s, transform 0.13s;
  box-shadow: 0 2px 14px 1px rgba(212,90,25,0.08);
}
.cta.primary {
  background: #EF8354;
  color: #fff;
  font-weight: bold;
}
.cta.secondary {
  background: #F7D6E0;
  color: #28527A;
  border: 2px solid #EF8354;
  font-weight: bold;
}
.cta.primary:hover, .cta.primary:focus {
  background: #D25A19;
  color: #fff;
  transform: scale(1.05) rotate(-2deg);
  box-shadow: 0 4px 22px 2px rgba(225, 80, 36, 0.14);
}
.cta.secondary:hover, .cta.secondary:focus {
  background: #fff;
  color: #D25A19;
  border-color: #D25A19;
  transform: scale(1.045) rotate(2deg);
  box-shadow: 0 3px 16px 1px rgba(40,82,122,0.09);
}

/* HEADER & NAVIGATION */
header {
  background: #fff;
  box-shadow: 0 3px 18px 0 rgba(40,82,122,0.07);
  position: relative;
  z-index: 40;
}
header nav {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 14px 0;
}
header nav a {
  font-family: 'Varela Round', cursive;
  color: #28527A;
  font-size: 1.13rem;
  padding: 6px 14px;
  border-radius: 18px;
  transition: background 0.14s, color 0.12s, transform 0.10s;
  font-weight: 500;
  position: relative;
}
header nav a.cta.primary {
  margin-left: auto;
  margin-right: 0;
  font-size: 1.1rem;
}
header nav a:hover, header nav a:focus {
  background: #F7D6E0;
  color: #D25A19;
  text-decoration: none;
  box-shadow: 0 1.5px 8px rgba(40,82,122,0.09);
}
header nav a img {
  height: 44px;
  width: auto;
  margin-bottom: 0;
  margin-right: 4px;
}

/* MOBILE MENU (BURGER) */
.mobile-menu-toggle {
  display: none;
  font-size: 2.3rem;
  color: #EF8354;
  background: #fff;
  border-radius: 50%;
  padding: 3px 12px 2px 12px;
  margin-left: 16px;
  box-shadow: 0 1px 8px 1px rgba(40,82,122,0.16);
  border: 2px solid #F7D6E0;
  transition: background 0.2s, color 0.15s, transform 0.15s;
  z-index: 1002;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #EF8354;
  color: #fff;
  border-color: #EF8354;
  transform: scale(1.13) rotate(3deg);
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: #fff;
  z-index: 1010;
  transform: translateX(-100%);
  transition: transform 0.34s cubic-bezier(0.7,0.05,0.4,1.0);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  box-shadow: 6px 0 32px 8px rgba(40,82,122,0.11);
  will-change: transform;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 16px 28px 0 0;
  font-size: 2rem;
  color: #EF8354;
  background: none;
  border: 0;
  border-radius: 50%;
  padding: 5px 10px 1px 10px;
  transition: background 0.2s, color 0.13s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #F7D6E0;
  color: #D25A19;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 48px;
  width: 100%;
  align-items: flex-start;
  padding-left: 38px;
}
.mobile-nav a {
  font-family: 'Varela Round', cursive;
  color: #28527A;
  font-size: 1.29rem;
  padding: 10px 0 10px 8px;
  border-radius: 12px;
  transition: background 0.18s, color 0.12s;
  min-width: 180px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #F7D6E0;
  color: #D25A19;
}

/* COOKIE CONSENT BANNER + MODAL */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100%;
  z-index: 1998;
  padding: 22px 0;
  background: #fff;
  border-top: 6px solid #EF8354;
  box-shadow: 0 -6px 32px 0 rgba(40,82,122,0.09);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 17px;
  transition: transform 0.44s;
}
.cookie-banner.hide {
  transform: translateY(120%);
}
.cookie-banner p {
  color: #28527A;
  margin-bottom: 0;
  max-width: 700px;
  text-align: center;
  font-size: 1.08rem;
}
.cookie-banner .cookie-btns {
  display: flex;
  gap: 18px;
}
.cookie-btn {
  padding: 9px 22px;
  background: #EF8354;
  color: #fff;
  font-family: 'Varela Round', cursive;
  border-radius: 21px;
  border: 0;
  font-size: 1rem;
  box-shadow: 0 2px 8px 0 rgba(212,90,25,0.10);
  transition: background 0.15s, color 0.13s, transform 0.16s;
  cursor: pointer;
}
.cookie-btn.secondary {
  background: #F7D6E0;
  color: #28527A;
  border: 2px solid #EF8354;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #D25A19;
  color: #fff;
  transform: scale(1.06) rotate(1deg);
}
.cookie-btn.secondary:hover, .cookie-btn.secondary:focus {
  background: #fff;
  color: #D25A19;
  border-color: #D25A19;
}
/* COOKIE PREFERENCES MODAL */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(40,82,122,0.11);
  z-index: 2001;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.22s;
}
.cookie-modal {
  background: #fff;
  border-radius: 25px;
  box-shadow: 0 6px 54px 8px rgba(212,90,25,0.15);
  padding: 36px 32px;
  min-width: 330px;
  max-width: 94vw;
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: modalIn 0.37s cubic-bezier(0.7,0.05,0.5,1.05);
}
@keyframes modalIn {
  from { opacity: 0; transform: scale(0.88) translateY(60px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}
.cookie-modal h3 {
  font-size: 1.29rem;
  text-align: center;
  margin-bottom: 10px;
}
.cookie-modal .cookie-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 12px;
}
.cookie-cat {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 1rem;
  color: #28527A;
  line-height: 1.5;
  border-radius: 14px;
  padding: 10px 10px;
}
.cookie-cat input[type="checkbox"] {
  width: 22px;
  height: 22px;
  accent-color: #EF8354;
}
.cookie-cat.essential {
  background: #F7D6E0;
  font-weight: bold;
}
.cookie-modal .modal-actions {
  display: flex;
  gap: 16px;
  justify-content: flex-end;
  margin-top: 14px;
}

/* TESTIMONIALS: HIGH CONTRAST, CARD STYLE */
.testimonial-card {
  background: #fff;
  border-left: 6px solid #EF8354;
  border-radius: 18px;
  color: #28527A;
  font-size: 1.1rem;
  box-shadow: 0 2px 16px 0 rgba(40,82,122,0.07);
}
.testimonial-card blockquote {
  background: none;
  box-shadow: none;
  border: 0;
  margin-bottom: 0;
  font-size: 1.10rem;
  color: #28527A;
}
.testimonial-card p {
  margin-bottom: 0;
  font-size: 1rem;
  color: #28527A;
  font-weight: bold;
  opacity: .98;
}
.testimonial-card strong {
  color: #D25A19;
}

/* FOOTER */
footer {
  background: #fff;
  box-shadow: 0 -2px 12px 0 rgba(40,82,122,0.06);
  padding: 10px 0 30px 0;
  font-size: 0.98rem;
  margin-top: 46px;
}
footer .container {
  max-width: 1100px;
}
footer .content-wrapper {
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  background: transparent;
  box-shadow: none;
  padding: 0;
  margin-bottom: 0;
}
footer nav {
  display: flex; flex-wrap: wrap; gap: 18px;
  margin-bottom: 9px;
}
footer nav a {
  color: #28527A;
  font-family: 'Varela Round', cursive;
  font-size: 1rem;
  padding: 5px 11px;
  border-radius: 10px;
  background: #F7D6E0;
  transition: background 0.19s, color 0.13s;
}
footer nav a:hover, footer nav a:focus {
  background: #EF8354;
  color: #fff;
}

footer p {
  color: #28527A;
  opacity: 0.70;
  font-size: .98rem;
  margin-bottom: 0;
}

/* OTHER FORMS & EMBEDS */
.map-embed {
  background: #F7D6E0;
  border-radius: 14px;
  padding: 20px 14px;
  box-shadow: 0 1px 8px rgba(212,90,25,0.05);
}

/* RESPONSIVE: MOBILE FIRST */
@media (max-width: 1024px) {
  .container {
    max-width: 98vw;
  }
  .content-wrapper {
    padding: 24px 8px;
    gap: 16px;
  }
  .feature-grid > div, .service-grid > div {
    min-width: 140px;
    padding: 18px 7px;
  }
}
@media (max-width: 768px) {
  body{ font-size: 0.99rem; }
  .container{ max-width: 99vw; }
  .section {
    padding: 28px 6px;
  }
  .content-wrapper, .text-section {
    padding: 19px 4px;
    gap: 13px;
    border-radius: 12px;
  }
  .feature-grid, .service-grid {
    flex-direction: column;
    gap: 17px;
  }
  header nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .testimonial-card {
    flex-direction: column;
    gap: 12px;
    padding: 12px 7px;
  }
  .content-grid, .card-container {
    flex-direction: column;
    gap: 15px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}
@media (max-width: 520px) {
  h1{ font-size: 1.5rem; }
  h2{ font-size: 1.15rem; }
  .feature-grid > div, .service-grid > div{ min-width: 100px; padding: 11px 2px; }
  .cta, .cookie-btn {
    padding: 10px 13px;
    font-size: .99rem;
  }
}

/* PLAYFUL MICRO-ANIMATIONS */
.cta, .cookie-btn {
  transition-property: background, color, transform, box-shadow;
  transition-timing-function: cubic-bezier(.38,1.46,.75,.96);
  transition-duration: .15s;
}
.cta:active, .cookie-btn:active {
  transform: scale(.96) rotate(-1.3deg);
  box-shadow: 0 2px 6px 0 rgba(212,90,25,0.11);
}
.feature-grid > div, .service-grid > div {
  will-change: transform, box-shadow;
}

/* SELECTION COLOR */
::selection {
  background: #F7D6E0;
  color: #28527A;
}

/* SCROLLBAR STYLES (for supported browsers) */
::-webkit-scrollbar {
  width: 8px;
  background: #FFF8FB;
  border-radius: 6px;
}
::-webkit-scrollbar-thumb {
  background: #F7D6E0;
  border-radius: 6px;
}

/* HELPER CLASSES - for spacing / non-standard cards  */
.mb-0{ margin-bottom: 0!important; }
.mb-20 { margin-bottom: 20px!important; }
.mt-16{ margin-top:16px!important; }
.mt-24{ margin-top:24px!important; }

/* ACCESSIBILITY: FOCUS STATES */
:focus-visible {
  outline: 2.5px dashed #EF8354;
  outline-offset: 2px;
}

/* HIDE DESKTOP NAV ON MOBILE, MOBILE MENU ONLY ON <= 768px */
@media (min-width: 769px){
  .mobile-menu, .mobile-menu-toggle{ display: none!important; }
  header nav { display: flex!important; }
}
