/* ====================================================================
   RESET & BASELINE NORMALIZATION
==================================================================== */
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 {
  scroll-behavior: smooth;
}
body {
  line-height: 1.6;
  font-family: 'Open Sans', Arial, sans-serif;
  background: #F2F1EC;
  color: #183042;
  min-height: 100vh;
}
*, *:before, *:after {
  box-sizing: inherit;
}
ol, ul {
  list-style: none;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}
button {
  font-family: inherit;
  background: none;
  border: none;
  cursor: pointer;
}

/* ====================================================================
   BRAND FONTS (Google Fonts) — you must load in HTML head for full effect
==================================================================== */
body, html {
  font-family: 'Open Sans', Arial, sans-serif;
}
h1, h2, h3, .cta-btn, .main-nav a, .mobile-nav a, .service-price {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  letter-spacing: 0.01em;
}

/* ====================================================================
   COLOR REFERENCE
==================================================================== */
:root {
  /* Brand colors */
  --primary: #183042;
  --secondary: #F2F1EC;
  --accent: #F29849;
  --bright: #FFF9E3;
  --info: #54ADC7;
  --danger: #F56B7E;
  --success: #3BB866;
  --text-dark: #183042;
  --text-light: #ffffff;
  --border: #e7e3db;
}

/* ====================================================================
   CONTAINER & GENERIC LAYOUTS
==================================================================== */
.container {
  width: 100%;
  max-width: 1200px;
  padding: 0 18px;
  margin: 0 auto;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--secondary);
  border-radius: 32px;
}
@media (min-width: 992px) {
  .section {
    padding: 60px 40px;
  }
}

/* ====================================================================
   HEADER, NAVIGATION, BURGER MENU
==================================================================== */
header {
  background: var(--bright);
  box-shadow: 0 4px 16px rgba(24, 48, 66, .04);
  position: sticky;
  top: 0;
  z-index: 40;
}
.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  position: relative;
  gap: 24px;
}
.main-nav > a img {
  height: 44px;
  margin-right: 20px;
}
.main-nav ul {
  display: flex;
  align-items: center;
  gap: 28px;
}
.main-nav ul li a {
  font-size: 18px;
  color: var(--primary);
  font-weight: 500;
  padding: 8px 8px 6px 8px;
  border-radius: 8px;
  transition: background .18s, color .18s, box-shadow .18s;
}
.main-nav ul li a:hover, .main-nav ul li a:focus {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 3px 12px 0 rgba(242,152,73,0.09);
}
.cta-btn {
  background: var(--accent);
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 12px 32px;
  border-radius: 24px 20px 28px 20px;
  box-shadow: 0 5px 24px 0 rgba(242,152,73,0.17);
  transition: background .18s, transform .12s, box-shadow .2s;
  letter-spacing: 0.02em;
  display: inline-block;
  cursor: pointer;
  margin-left: 16px;
}
.cta-btn:hover, .cta-btn:focus {
  background: #ffac65;
  color: var(--text-dark);
  transform: translateY(-2px) scale(1.06) rotate(-1.5deg);
  box-shadow: 0 8px 36px 0 rgba(242,152,73,0.24);
}

/* Mobile menu burger and overlay */
.mobile-menu-toggle {
  display: none;
  background: var(--accent);
  border-radius: 12px;
  padding: 8px 16px;
  font-size: 32px;
  color: #fff;
  z-index: 120;
  margin-left: 16px;
  transition: background .16s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #ffac65;
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(24,48,66,0.93);
  transform: translateX(-100vw);
  transition: transform 0.35s cubic-bezier(.68,-0.4,0.32,1.4);
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 0;
  box-shadow: 2px 0 38px 0 rgba(24,48,66,0.24);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  background: var(--accent);
  color: #fff;
  font-size: 32px;
  margin: 22px 22px 0 0;
  border-radius: 12px;
  padding: 10px 18px;
  transition: background .16s;
  z-index: 210;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #ffac65;
}
.mobile-nav {
  padding: 22px 32px 0 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.mobile-nav a {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-size: 24px;
  color: #fff;
  background: transparent;
  border-radius: 14px;
  padding: 10px 8px 10px 4px;
  font-weight: 600;
  transition: background .18s, color .18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--accent);
  color: var(--primary);
}

@media (max-width: 1100px) {
  .main-nav ul {
    gap: 16px;
  }
}
@media (max-width: 980px) {
  .main-nav ul {
    gap: 10px;
  }
  .cta-btn {
    font-size: 16px;
    padding: 10px 22px;
  }
  .main-nav > a img {
    height: 38px;
  }
}
@media (max-width: 768px) {
  .main-nav ul, .main-nav .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .main-nav {
    padding: 10px 0;
  }
}

/* ====================================================================
   HERO & SECTION TYPOGRAPHY — PLAYFUL—DYNAMIC
==================================================================== */
h1 {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-weight: 800;
  font-size: 2.3rem;
  color: var(--primary);
  margin-bottom: 8px;
  line-height: 1.16;
  text-shadow: 1px 2px 0 #fce5cc, 0 4px 16px #fff8eef2;
}
@media (min-width: 600px) {
  h1 { font-size: 3.3rem; }
}
h2 {
  font-weight: 700;
  font-size: 2rem;
  margin-bottom: 8px;
  line-height: 1.2;
  color: var(--accent);
  text-shadow: 0 3px 12px #fbeee5b6;
}
h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 6px;
}
h4, h5, h6 {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  color: var(--primary);
}
p, li {
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-dark);
}

/* Fun/Playful display tweaks */
h1, h2, .cta-btn {
  letter-spacing: 0.01em;
  line-height: 1.10;
}

/* Category & Accent tokens */
.category-tag {
  background: var(--info);
  color: #fff;
  border-radius: 12px 10px 20px 13px;
  padding: 4px 12px;
  font-size: 14px;
  display: inline-block;
  margin: 0 0 12px 0;
  box-shadow: 0 1px 8px 0 rgba(84,173,199,0.13);
  font-family: 'Montserrat', Arial, sans-serif;
}
.service-price {
  display: inline-block;
  margin-top: 14px;
  background: var(--success);
  color: #fff;
  font-weight: 700;
  font-size: 17px;
  border-radius: 18px 18px 18px 6px;
  padding: 5px 18px 6px 14px;
  letter-spacing: 0.02em;
  box-shadow: 0 1px 12px 0 rgba(37,211,102,0.13);
}

/* ====================================================================
   FLEX-LAYOUT CARD & SECTION SPACING PATTERNS
==================================================================== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  box-shadow: 0 2.5px 13px 0 rgba(24,48,66,0.06), 0 8px 30px 0 rgba(242,152,73,0.06);
  border-radius: 20px 14px 24px 16px;
  padding: 26px 24px;
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 260px;
  flex: 1 1 280px;
  /* For playful hover pop */
  transition: box-shadow .15s, transform .16s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 10px 34px 0 rgba(242,152,73,0.07), 0 4px 36px 0 rgba(24,48,66,0.18);
  transform: translateY(-7px) scale(1.04) rotate(-1.2deg);
  z-index: 12;
}
.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;
    gap: 20px;
    align-items: flex-start;
  }
}

.testimonial-card {
  /* Card here for testimonials/reviews */
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  margin-bottom: 20px;
  background: #fff;
  border-radius: 22px 14px 22px 14px;
  box-shadow: 0 2px 14px 0 rgba(24,48,66,0.07), 0 7px 25px 0 rgba(242,152,73,0.05);
  position: relative;
  z-index: 2;
  transition: box-shadow .16s, transform .14s;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  box-shadow: 0 10px 34px 0 rgba(242,152,73,.12), 0 4px 36px 0 rgba(24,48,66,0.16);
  transform: translateY(-5px) scale(1.02) rotate(0.7deg);
}
.testimonial-card .text-section p {
  font-size: 1.07rem;
  color: #242424;
  line-height: 1.55;
  margin-bottom: 8px;
}
.testimonial-author {
  color: var(--accent);
  font-weight: 700;
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  margin-top: 4px;
  display: inline-block;
}
.client-rating {
  font-size: 1.25rem;
  color: var(--accent);
  font-family: 'Montserrat',Arial,sans-serif;
  background: var(--bright);
  border-radius: 12px 16px 18px 12px;
  padding: 6px 16px;
  margin: 18px 0 0 0;
  display: inline-block;
  font-weight: 600;
  box-shadow: 0 1px 8px 0 rgba(242,152,73,0.09);
}

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

.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.service-list li {
  background: #fff;
  border-radius: 24px 12px 16px 20px;
  box-shadow: 0 2px 12px 0 rgba(24,48,66,0.04);
  padding: 22px 22px 22px 22px;
  min-width: 220px;
  flex: 1 1 290px;
  margin-bottom: 20px;
  transition: box-shadow .14s, background .13s, transform .13s;
  position: relative;
}
.service-list li:hover, .service-list li:focus-within {
  background: #FFF9E3;
  box-shadow: 0 8px 34px 0 rgba(242,152,73,0.16);
  transform: translateY(-4px) scale(1.025);
  z-index: 5;
}

.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-top: 22px;
  margin-bottom: 12px;
}
.feature-grid li {
  flex: 1 1 260px;
  background: #fff;
  border-radius: 22px 14px 26px 12px;
  box-shadow: 0 2px 13px 0 rgba(24,48,66,0.05);
  padding: 24px 18px 22px 18px;
  text-align: left;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  transition: box-shadow .14s, background .13s, transform .12s;
  position: relative;
}
.feature-grid li:hover, .feature-grid li:focus-within {
  background: var(--bright);
  box-shadow: 0 8px 34px 0 rgba(242,152,73,0.13);
  transform: translateY(-5px) scale(1.033);
  z-index: 3;
}
.feature-grid img {
  width: 44px;
  height: 44px;
  margin-bottom: 8px;
}

.text-section {
  margin-top: 8px;
  margin-bottom: 16px;
  padding-right: 12px;
}
.address-details {
  font-size: 1.04rem;
  color: var(--primary);
  background: #fff;
  border-radius: 10px 23px 12px 18px;
  box-shadow: 0 1px 10px 0 rgba(24,48,66, 0.06);
  padding: 16px 20px 16px 17px;
  margin-bottom: 16px;
  margin-top: 4px;
}

/* Responsive stacking for features/services/cards */
@media (max-width: 900px) {
  .service-list, .feature-grid, .card-container, .content-grid {
    flex-direction: column;
    gap: 20px;
  }
  .service-list li, .feature-grid li, .card {
    min-width: 0;
    width: 100%;
  }
}

/* Confirmation Section */
.confirmation-section .text-section {
  background: #fff;
  border-radius: 16px 18px 18px 16px;
  padding: 28px 32px;
  margin: 12px 0 0 0;
  box-shadow: 0 2px 14px 0 rgba(24,48,66,0.06);
  max-width: 680px;
}

/* Legal Section */
.legal-section .text-section {
  background: #fff;
  border-radius: 19px 14px 22px 16px;
  padding: 28px 32px;
  margin: 8px 0 0 0;
  box-shadow: 0 2px 14px 0 rgba(24,48,66,0.07);
}

/* ====================================================================
   HERO SECTION
==================================================================== */
.hero-section {
  background: linear-gradient(95deg, #FFF9E3 70%, #F29849 200%);
  border-radius: 0 0 44px 44px;
  box-shadow: 0 5px 44px 0 rgba(242,152,73,0.15);
  padding: 56px 0 32px 0;
  margin-bottom: 48px;
  animation: hero-bob 3.8s infinite cubic-bezier(.33,1.18,.72,0.98) alternate;
  position: relative;
  z-index: 10;
}
@keyframes hero-bob {
  0%   { transform: translateY(0px) }
  80%  { transform: translateY(0px) }
  90%  { transform: translateY(-6px) }
  100% { transform: translateY(0px) }
}
.hero-section h1 {
  color: var(--primary);
  font-size: 2.35rem;
  line-height: 1.13;
  margin-bottom: 12px;
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-weight: 900;
}
.hero-section p {
  color: var(--primary);
  font-size: 1.22rem;
  margin-bottom: 18px;
  line-height: 1.52;
  font-weight: 400;
}
@media (min-width: 600px) {
  .hero-section h1 { font-size: 3.3rem; }
}
@media (max-width: 768px) {
  .hero-section {
    border-radius: 0 0 28px 28px;
    padding: 32px 0 22px 0;
  }
  .hero-section h1 { font-size: 2rem; }
}

/* ====================================================================
   FOOTER
==================================================================== */
footer {
  background: var(--primary);
  padding: 36px 0 0 0;
  color: #fff;
  min-height: 122px;
}
.footer-wrapper {
  max-width: 1200px;
  padding: 0 18px 22px 18px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}
.footer-wrapper img {
  height: 52px;
  margin-bottom: 5px;
}
.footer-wrapper ul {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  gap: 18px;
  margin-bottom: 8px;
}
.footer-wrapper ul li a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.02rem;
  font-weight: 600;
  text-decoration: underline dotted #fff9e3 2px;
  text-underline-position: under;
  transition: color .14s, background .14s;
  border-radius: 8px;
  padding: 4px 8px;
}
.footer-wrapper ul li a:hover, .footer-wrapper ul li a:focus {
  color: var(--accent);
  background: #FFF9E3;
}
.footer-wrapper p {
  color: #fff;
  font-size: 0.96rem;
}
@media (max-width: 700px) {
  .footer-wrapper ul {
    flex-direction: column;
    gap: 10px;
    align-items: center;
  }
}

/* ====================================================================
   FORM ELEMENTS
==================================================================== */
input, textarea, select {
  font-family: inherit;
  border: 2px solid var(--border);
  margin-bottom: 22px;
  border-radius: 12px;
  padding: 12px 16px;
  width: 100%;
  font-size: 1rem;
  background: #fff;
  transition: border-color .13s;
}
input:focus, textarea:focus, select:focus {
  outline: 0;
  border-color: var(--accent);
  background: #FFF9E3;
}
label {
  display: block;
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 7px;
}

/* ====================================================================
   BUTTONS & INTERACTIONS
==================================================================== */
button, .cta-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  transition: background .14s, box-shadow .14s, color .14s, transform .14s;
  cursor: pointer;
  border: none;
  outline: none;
}

/* Playful microanim for focus */
:focus-visible {
  outline: 3px dashed var(--accent);
  outline-offset: 3px;
}

/* ====================================================================
   COOKIE CONSENT BANNER + POPUP
==================================================================== */
.cookie-banner {
  position: fixed;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  background: #fff;
  color: var(--primary);
  box-shadow: 0 3px 16px 0 rgba(24,48,66,0.15), 0 1.5px 14px 0 rgba(242,152,73,0.10);
  border-radius: 17px 21px 19px 15px;
  padding: 24px 30px 19px 30px;
  min-width: 280px;
  max-width: 96vw;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 16px;
  z-index: 2500;
  animation: cookie-slidein .45s cubic-bezier(.39,1.4,.5,1) 1;
}
@keyframes cookie-slidein {
  0% { transform: translateX(-50%) translateY(110px); opacity: 0; }
  100% { transform: translateX(-50%) translateY(0); opacity: 1; }
}
.cookie-banner button {
  margin-right: 17px;
  margin-top: 8px;
}
.cookie-banner .cookie-btn {
  font-size: 1rem;
  color: #fff;
  background: var(--accent);
  border-radius: 12px 9px 13px 11px;
  padding: 8px 25px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  margin-left: 0;
}
.cookie-banner .cookie-btn:hover, .cookie-banner .cookie-btn:focus {
  background: #ffac65;
  color: var(--primary);
}
.cookie-banner .cookie-link {
  color: var(--accent);
  text-decoration: underline;
  background: none;
  border: none;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  margin-left: 8px;
  padding: 0;
}

.cookie-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  min-width: 310px;
  max-width: 92vw;
  width: 400px;
  background: #fff;
  box-shadow: 0 7px 34px 0 rgba(24,48,66,0.29), 0 11px 38px 0 rgba(242,152,73,0.12);
  border-radius: 27px 13px 27px 13px;
  padding: 34px 34px 22px 34px;
  z-index: 3000;
  transform: translate(-50%,-50%) scale(0.89);
  opacity: 0;
  pointer-events: none;
  transition: opacity .27s, transform .27s;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cookie-modal.open {
  opacity: 1;
  pointer-events: all;
  transform: translate(-50%,-50%) scale(1);
}
.cookie-modal .modal-close {
  position: absolute;
  top: 19px;
  right: 14px;
  background: var(--danger);
  color: #fff;
  font-size: 24px;
  border-radius: 9px;
  padding: 7px 14px;
  border: none;
  cursor: pointer;
}
.cookie-modal .modal-close:hover,
.cookie-modal .modal-close:focus {
  background: #fc768d;
}
.cookie-modal h3 {
  font-size: 1.17rem;
  color: var(--accent);
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  background: #f6ede2;
  padding: 8px 18px;
  border-radius: 11px 8px 11px 8px;
  margin-bottom: 7px;
  min-width: 210px;
}
.cookie-modal input[type="checkbox"] {
  accent-color: var(--accent);
  width: 24px;
  height: 24px;
  border-radius: 5px;
}
.cookie-modal label {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0;
  color: var(--primary);
}
.cookie-modal .cookie-category.essential {
  background: #FFF9E3;
  color: var(--text-dark);
}
.cookie-modal .cookie-btn {
  margin-top: 16px;
  min-width: 128px;
}

/* Overlay when popup/modal is open */
.cookie-modal-overlay {
  position: fixed;
  left: 0; top: 0; width: 100%; height: 100%;
  background: rgba(24,48,66,.25);
  z-index: 2700;
  opacity: 0;
  pointer-events: none;
  transition: opacity .19s;
}
.cookie-modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}

@media (max-width: 540px) {
  .cookie-banner, .cookie-modal {
    padding: 19px 11px 8px 11px;
    font-size: 0.96rem;
    min-width: 0;
  }
  .cookie-modal { width: 98vw; max-width: 99vw; }
}

/* ====================================================================
   ANIMATION CLASSES
==================================================================== */
.animated {
  animation-duration: 1.55s;
  animation-fill-mode: both;
}
.fade-in {
  animation-name: fade-in-anim;
}
@keyframes fade-in-anim {
  from { opacity: 0; transform: translateY(24px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.bounce {
  animation-name: bounce-anim;
  animation-duration: 0.8s;
}
@keyframes bounce-anim {
  0% { transform: scale(1) translateY(0); }
  40% { transform: scale(1.1) translateY(-10px); }
  65% { transform: scale(0.95) translateY(6px); }
  100% { transform: scale(1) translateY(0); }
}

/* ====================================================================
   MISC FIXES & UTILITIES
==================================================================== */
.mt-24 { margin-top: 24px !important; }
.mb-24 { margin-bottom: 24px !important; }
.mt-32 { margin-top: 32px !important; }
.text-center { text-align: center !important; }
.bold { font-weight: 700 !important; }

/* ====================================================================
   RESPONSIVE SPACING & ADAPTIVE SCALES
==================================================================== */
@media (max-width: 992px) {
  .section {
    padding: 38px 7px;
    margin-bottom: 38px;
  }
  .footer-wrapper {
    padding-bottom: 19px;
  }
}
@media (max-width: 600px) {
  .section {
    padding: 26px 0;
    margin-bottom: 24px;
    border-radius: 17px;
  }
  .footer-wrapper {
    padding-bottom: 11px;
  }
  h1 { font-size: 1.43rem; }
  h2 { font-size: 1.16rem; }
  .hero-section { padding: 18px 0 8px 0; border-radius: 0 0 15px 15px; }
}

/* ====================================================================
   SCROLLBAR STYLING (for dynamic/playful feel)
==================================================================== */
::-webkit-scrollbar {
  width: 10px;
  background: #fff9e3;
}
::-webkit-scrollbar-thumb {
  background: #fbd5aa;
  border-radius: 9px;
}

/* ====================================================================
   ACCESSIBLE FOCUS
==================================================================== */
a:focus-visible, button:focus-visible, .cta-btn:focus-visible {
  outline: 3px dashed var(--accent);
  outline-offset: 2px;
}

/* ====================================================================
   PLAYFUL DECORATIVE DOTS — (Optional)
   You can add <span class="dot"></span> in HTML for decoration.
==================================================================== */
.dot {
  display: inline-block;
  width: 14px;
  height: 14px;
  background: var(--accent);
  border-radius: 50%;
  margin-right: 8px;
  animation: bounce-anim 1.2s infinite alternate;
}

/* ====================================================================
   END OF CSS FILE
==================================================================== */
