/* CSS RESET & BASE STYLES */
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,
main,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  box-sizing: border-box;
  font: inherit;
  vertical-align: baseline;
}
html {
  font-size: 16px;
  scroll-behavior: smooth;
}
body {
  font-family: 'Roboto', Arial, sans-serif;
  color: #25324C;
  background: #FAF9F6;
  line-height: 1.6;
  min-height: 100vh;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #4CA2A1;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover,
a:focus {
  color: #F8B400;
  outline: none;
}
ul, ol {
  margin-left: 22px;
  margin-bottom: 16px;
}
li {
  margin-bottom: 6px;
  line-height: 1.6;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #25324C;
}
h1 {
  font-size: 2.4rem;
  margin-bottom: 18px;
  letter-spacing: -1.4px;
}
h2 {
  font-size: 1.8rem;
  margin-bottom: 12px;
  color: #4CA2A1;
  position: relative;
  font-family: 'Montserrat', Arial, sans-serif;
}
h3 {
  font-size: 1.22rem;
  color: #F8B400;
  margin-bottom: 8px;
  letter-spacing: -0.5px;
}
h4 {
  font-size: 1rem;
  margin-bottom: 6px;
}
p, blockquote, .text-section {
  font-size: 1rem;
  color: #25324C;
}
blockquote {
  font-style: italic;
  background: #FFF8E7;
  border-left: 5px solid #F8B400;
  padding: 16px 20px;
  margin-bottom: 8px;
  border-radius: 14px;
}

/* CONTAINER & SECTIONS */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 18px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 26px;
  box-shadow: 0 3px 30px 0 #25324C11;
  transition: box-shadow 0.23s;
}
.section:hover {
  box-shadow: 0 6px 46px 0 #25324C19;
}
main > section:not(:last-child) {
  margin-bottom: 62px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (min-width: 850px) {
  .content-wrapper {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

/* PLAYFUL COLOR ACCENTS BACKGROUND BUBBLES */
.section {
  position: relative;
  overflow: hidden;
}
.section::before {
  content: '';
  display: block;
  position: absolute;
  top: -60px;
  right: -60px;
  width: 176px;
  height: 176px;
  background: #F8B40033;
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
  animation: float-bubble 6s infinite alternate ease-in-out;
}
@keyframes float-bubble {
  0% { transform: translateY(0); opacity: 0.8; }
  100% { transform: translateY(28px) scale(1.07); opacity: 0.6; }
}
.section > .container {
  position: relative;
  z-index: 1;
}

/* FLEXBOX PATTERNS - CARDS, GRIDS, WRAPPERS */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 10px;
}
.card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 3px 18px #4CA2A145;
  margin-bottom: 20px;
  padding: 24px;
  position: relative;
  transition: box-shadow 0.22s, transform 0.23s;
}
.card:hover {
  box-shadow: 0 6px 36px #25324C1A;
  transform: translateY(-3px) scale(1.02);
}
.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,
  .content-wrapper,
  .card-container,
  .content-grid {
    flex-direction: column;
    gap: 20px;
  }
}

/* FEATURE GRID AND ITEMS */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  width: 100%;
}
.feature-item {
  background: #F7FDFF;
  border-radius: 18px;
  padding: 26px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  min-width: 230px;
  max-width: 340px;
  box-shadow: 0 2px 12px #4CA2A113;
  transition: box-shadow 0.2s, transform 0.18s;
  margin-bottom: 10px;
}
.feature-item img {
  width: 54px;
  height: 54px;
  margin-bottom: 8px;
  filter: drop-shadow(0 5px 7px #F8B40022);
  transition: transform 0.23s;
}
.feature-item:hover img {
  transform: scale(1.12) rotate(-6deg);
}
.feature-item:hover {
  box-shadow: 0 4px 30px #4CA2A135;
  background: #e7fafb;
  transform: translateY(-3px) scale(1.025);
}

/* SERVICE CARDS & LISTS */
.service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}
.service-card {
  flex: 1 1 260px;
  margin-bottom: 20px;
  background: #FFF8E7;
  border-radius: 15px;
  box-shadow: 0 0px 10px #F8B40011;
  padding: 24px 18px;
  transition: transform 0.17s, box-shadow 0.18s, background 0.21s;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.service-card:hover {
  background: #FFFBF1;
  transform: scale(1.04) rotate(-1.5deg);
  box-shadow: 0 4px 22px #F8B40033;
}
.service-card h3 {
  color: #25324C;
  font-size: 1.19rem;
}
.service-card span {
  color: #F8B400;
  font-weight: 500;
  font-size: 1rem;
}
.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.service-item {
  flex: 1 1 270px;
  min-width: 200px;
  margin-bottom: 20px;
  background: #F7FDFF;
  border-radius: 14px;
  box-shadow: 0 1px 10px #4CA2A118;
  padding: 22px 15px;
  transition: box-shadow 0.15s, background 0.16s;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.service-item:hover {
  background: #e3f6f7;
  box-shadow: 0 3px 28px #4CA2A142;
}
.service-item h3 {
  color: #4CA2A1;
  font-size: 1.07rem;
}
.service-item span {
  color: #F8B400;
  font-weight: bold;
  font-size: 0.98rem;
}

/* CTA BUTTONS */
.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 30px;
  padding: 0.85em 2.7em;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.09rem;
  cursor: pointer;
  margin-top: 6px;
  margin-bottom: 8px;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 12px #4CA2A133;
  transition: background 0.16s, color 0.15s, box-shadow 0.18s, transform 0.15s;
  outline: none;
  text-shadow: 0 1px 2px #fff3;
}
.cta.primary {
  background: #F8B400;
  color: #25324C;
  border: 2.5px solid #F8B400;
}
.cta.primary:hover,
.cta.primary:focus {
  background: #FFD966;
  color: #25324C;
  border-color: #FFD966;
  transform: translateY(-2px) scale(1.04);
}
.cta.secondary {
  background: #fff;
  color: #4CA2A1;
  border: 2.5px solid #4CA2A1;
}
.cta.secondary:hover,
.cta.secondary:focus {
  background: #D2F4F6;
  color: #25324C;
  border-color: #F8B400;
  transform: translateY(-1px) scale(1.03);
}
.cta:active {
  box-shadow: 0 1px 6px #F8B40011;
}

/* TESTIMONIAL CARDS */
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #F7FDFF;
  border-radius: 14px;
  box-shadow: 0 1px 12px #4CA2A125;
  margin-bottom: 20px;
  transition: box-shadow 0.19s, transform 0.18s;
}
.testimonial-card blockquote {
  font-size: 1.09rem;
  color: #25324C;
  background: #fff;
  border-left: 5px solid #F8B400;
  margin-bottom: 0;
}
.testimonial-meta {
  font-size: 0.98rem;
  color: #4CA2A1;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  letter-spacing: 0.2px;
}
.testimonial-card:hover {
  box-shadow: 0 3px 24px #4CA2A130;
  transform: scale(1.02);
  background: #e7fafb;
}

/* FAQ ACCORDION */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 18px;
}
.faq-question {
  background: #4CA2A1;
  color: #fff;
  border-radius: 12px;
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 14px 20px;
  font-size: 1.1rem;
  cursor: pointer;
  box-shadow: 0 2px 8px #4CA2A133;
  transition: background 0.13s;
  margin-bottom: 5px;
}
.faq-question:hover,
.faq-question:focus {
  background: #F8B400;
  color: #25324C;
}
.faq-answer {
  background: #FFF8E7;
  color: #25324C;
  padding: 13px 20px;
  border-radius: 10px;
  font-size: 0.99rem;
  margin-bottom: 8px;
  box-shadow: 0 0px 7px #F8B40011;
  display: none;
}
.faq-answer.active {
  display: block;
  animation: fadeInFaq 0.29s;
}
@keyframes fadeInFaq {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

/* CATEGORY FILTERS */
.category-filters {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}
.filter {
  background: #FFD966;
  color: #25324C;
  border-radius: 18px;
  padding: 5px 14px;
  font-size: 0.97rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.12s, color 0.12s;
}
.filter:hover,
.filter.active {
  background: #F8B400;
  color: #fff;
}

/* TEXT SECTIONS */
.text-section {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 12px;
}
.text-section ul {
  margin-bottom: 8px;
}
.text-section strong {
  color: #25324C;
}

/* FOOTER */
footer {
  background: #25324C;
  color: #fff;
  padding: 32px 0 18px 0;
  margin-top: 16px;
  box-shadow: 0 -2px 18px #25324c19;
}
footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
footer img {
  width: 56px;
  margin-bottom: 2px;
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}
footer nav a {
  color: #FFD966;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  opacity: 0.92;
  transition: color 0.13s;
}
footer nav a:hover {
  color: #F8B400;
}
.footer-info {
  font-size: 0.93rem;
  color: #BFD3E6;
  margin-top: 5px;
}

/* HEADER & NAVIGATION */
header {
  background: #fff;
  box-shadow: 0 8px 32px #25324C12;
  position: sticky;
  top: 0;
  z-index: 9;
  border-bottom-left-radius: 24px;
  border-bottom-right-radius: 24px;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 15px;
  padding-bottom: 15px;
}
header img {
  height: 51px;
  transition: transform 0.18s;
}
header img:hover {
  transform: scale(1.04) rotate(-2deg);
}
header nav {
  display: flex;
  gap: 24px;
  align-items: center;
}
header nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #25324C;
  font-weight: 600;
  font-size: 1.04rem;
  border-radius: 17px;
  padding: 5px 15px;
  transition: background 0.13s, color 0.15s;
}
header nav a:hover,
header nav a:focus {
  background: #F7FDFF;
  color: #4CA2A1;
}
header .cta.primary {
  margin-left: 16px;
}

/* MOBILE MENU */
.mobile-menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #4CA2A1;
  color: #fff;
  border: none;
  font-size: 2rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  box-shadow: 0 2px 12px #4CA2A1AA;
  cursor: pointer;
  transition: background 0.13s, transform 0.13s;
  position: absolute;
  right: 20px;
  top: 22px;
  z-index: 101;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: #F8B400;
  color: #25324C;
  transform: scale(1.07);
}

@media (min-width: 920px) {
  .mobile-menu-toggle {
    display: none;
  }
}
@media (max-width: 919px) {
  header nav,
  header .cta.primary {
    display: none !important;
  }
}

/* Mobile menu overlay */
.mobile-menu {
  display: flex;
  flex-direction: column;
  background: #fff;
  position: fixed;
  top: 0;
  right: 0;
  width: 96vw;
  max-width: 410px;
  height: 100vh;
  z-index: 2000;
  box-shadow: -2px 0 36px #4CA2A144;
  transform: translateX(100%);
  transition: transform 0.31s cubic-bezier(.77,0,.18,1);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  border: none;
  background: #F8B400;
  color: #25324C;
  font-size: 2.2rem;
  align-self: flex-end;
  margin: 26px 22px 8px 0;
  padding: 2px 20px;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 2px 15px #FFD96688;
  transition: background 0.13s, color 0.13s, transform 0.15s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: #FFD966;
  color: #4CA2A1;
  transform: scale(1.07) rotate(4deg);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: 45px 35px 10px 35px;
  align-items: flex-start;
}
.mobile-nav a {
  font-size: 1.23rem;
  color: #25324C;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  background: #F7FDFF;
  border-radius: 20px;
  padding: 8px 24px;
  transition: background 0.13s, color 0.13s;
  width: 100%;
  box-sizing: border-box;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: #FFD966;
  color: #4CA2A1;
}

/* Disable background scroll when menu is open */
body.mobile-menu-open {
  overflow: hidden;
}

/* COOKIE CONSENT BANNER */
.cookie-consent-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #25324C;
  color: #fff;
  padding: 20px 14px;
  box-shadow: 0 -2px 32px #25324C44;
  border-top-left-radius: 14px;
  border-top-right-radius: 14px;
  display: flex;
  flex-direction: column;
  gap: 17px;
  align-items: flex-start;
  z-index: 3000;
  opacity: 0;
  transform: translateY(100%);
  pointer-events: none;
  transition: transform 0.34s cubic-bezier(.84,0,.28,1), opacity 0.21s;
}
.cookie-consent-banner.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}
.cookie-consent-banner p {
  color: #fff;
  font-size: 1.03rem;
  line-height: 1.4;
}
.cookie-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.cookie-btn {
  background: #F8B400;
  color: #25324C;
  border: none;
  border-radius: 24px;
  padding: 0.75em 2em;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  cursor: pointer;
  margin-right: 5px;
  box-shadow: 0 2px 12px #F8B40011;
  transition: background 0.13s, color 0.14s, transform 0.16s;
}
.cookie-btn.setting {
  background: #fff;
  color: #4CA2A1;
  border: 2px solid #4CA2A1;
}
.cookie-btn:hover,
.cookie-btn:focus {
  background: #FFD966;
  color: #25324C;
  transform: scale(1.07);
}
.cookie-btn.setting:hover,
.cookie-btn.setting:focus {
  background: #D2F4F6;
  color: #25324C;
}

/* COOKIE SETTINGS MODAL */
.cookie-modal-overlay {
  display: none;
  position: fixed;
  z-index: 3200;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(37,50,76,0.53);
  align-items: center;
  justify-content: center;
}
.cookie-modal-overlay.visible {
  display: flex;
  animation: fadeInModal 0.38s;
}
@keyframes fadeInModal {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  color: #25324C;
  padding: 30px 20px 20px 20px;
  border-radius: 18px;
  box-shadow: 0 6px 52px #25324C30;
  min-width: 310px;
  max-width: 95vw;
  max-height: 93vh;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.cookie-modal h2 {
  font-size: 1.3rem;
  color: #4CA2A1;
  margin-bottom: 8px;
}
.cookie-modal label {
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  cursor: pointer;
}
.cookie-category {
  padding: 12px 0 12px 10px;
  border-radius: 10px;
  background: #F7FDFF;
  margin-bottom: 8px;
}
.cookie-toggle {
  width: 38px;
  height: 21px;
  border-radius: 13px;
  background: #dedede;
  position: relative;
  margin-right: 10px;
  transition: background 0.17s;
  cursor: pointer;
  display: inline-block;
}
.cookie-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie-toggle:before {
  content: '';
  position: absolute;
  left: 2px; top: 2px;
  width: 17px; height: 17px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.17s;
  box-shadow: 0 1px 3px #25324C13;
}
.cookie-toggle input:checked + span {
  background: #4CA2A1;
}
.cookie-toggle input:checked + span:before {
  transform: translateX(16px);
  background: #4CA2A1;
}
.cookie-modal .cookie-btn {
  margin-top: 10px;
}

/* Toast for Cookie Saved (optional custom class for banner/modal feedback) */
.cookie-toast {
  position: fixed;
  left: 50%;
  bottom: 54px;
  background: #4CA2A1;
  color: #fff;
  padding: 14px 30px;
  border-radius: 13px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.04rem;
  transform: translateX(-50%) scale(0.95);
  opacity: 0;
  z-index: 4000;
  pointer-events: none;
  transition: opacity 0.3s, transform 0.22s;
}
.cookie-toast.visible {
  opacity: 1;
  transform: translateX(-50%) scale(1.05);
}

/* RESPONSIVE SETTINGS */
@media (max-width: 1199px) {
  .container {
    max-width: 980px;
  }
  .feature-grid,
  .service-cards {
    gap: 18px;
  }
  .service-card,
  .service-item {
    min-width: 180px;
    font-size: 0.99rem;
  }
}
@media (max-width: 850px) {
  .container {
    max-width: 730px;
  }
  .feature-grid,
  .service-cards {
    flex-direction: column;
    gap: 14px;
    align-items: stretch;
  }
  .service-card,
  .service-item {
    min-width: 140px;
    padding: 16px 8px;
  }
  .content-wrapper {
    padding: 0;
  }
}
@media (max-width: 600px) {
  .container {
    max-width: 100vw;
    padding: 0 6px;
  }
  .section {
    padding: 28px 5px;
    margin-bottom: 36px;
  }
  .service-card, .service-item {
    padding: 11px 5px;
    font-size: 0.96rem;
  }
  h1 {
    font-size: 1.5rem;
  }
  h2 {
    font-size: 1.14rem;
  }
}
@media (max-width: 439px) {
  .feature-grid, .service-cards, .card-container, .content-grid {
    gap: 7px;
  }
  .testimonial-card {
    padding: 12px;
    font-size: 0.97rem;
  }
}

/* ANIMATIONS & MICRO-INTERACTIONS */
a, .cta, .card, .feature-item, .service-card, .service-item, .testimonial-card, .faq-question,
.cookie-btn, .filter, .mobile-menu-toggle, .mobile-menu-close {
  transition: 
    background 0.12s,
    color 0.12s,
    box-shadow 0.17s,
    transform 0.15s;
}

/* SCROLL BAR (playful accent) */
::-webkit-scrollbar {
  height: 10px;
  width: 10px;
  background: #F7FDFF;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb {
  background: #FFD966;
  border-radius: 7px;
}
::-webkit-scrollbar-thumb:hover {
  background: #F8B400;
}

/* FOCUS STATES (ACCESSIBILITY) */
:focus {
  outline: 2px dashed #F8B40055;
}

/* Playful Decorative Small Accents */
h2::after {
  content: '';
  display: inline-block;
  width: 22px;
  height: 8px;
  background: #F8B400;
  border-radius: 8px;
  margin-left: 10px;
  vertical-align: middle;
}

/* UTILITY CLASSES FOR SPACING */
.mt-2 { margin-top: 16px !important; }
.mb-2 { margin-bottom: 16px !important; }
.mt-3 { margin-top: 24px !important; }
.mb-3 { margin-bottom: 24px !important; }
.mb-4 { margin-bottom: 32px !important; }
.mb-5 { margin-bottom: 40px !important; }

/* Hide visually (for modals or accessibility) */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}
