/* ------------------ 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;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.4;
  background: #FCFCFC;
  color: #0B2740;
}
ol, ul {
  list-style: none;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  border-style: none;
  max-width: 100%;
  display: block;
}
button {
  font: inherit;
  background: none;
  border: none;
  cursor: pointer;
}
input, textarea, select {
  font: inherit;
}
*, *:before, *:after {
  box-sizing: inherit;
}

/* ------------------ BRAND FONTS ------------------- */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@700&family=Montserrat:wght@400;700&display=swap');

:root {
  --primary: #0B2740;
  --secondary: #C8A46B;
  --accent: #EAEAEA;
  --white: #fff;
  --black: #181D27;
  --danger: #ff3860;
  --success: #20c997;
  --info: #4169e1;
  --brand-blue: #239BC3;
  --brand-teal: #69DED1;
  --brand-pink: #FE7E6D;
  --brand-yellow: #FFD86C;
}

body {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  background: var(--accent);
  font-size: 16px;
  color: var(--primary);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Cinzel', serif;
  color: var(--primary);
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 16px;
  line-height: 1.15;
}
h1 {
  font-size: 2.6rem;
  color: var(--brand-blue);
  margin-bottom: 20px;
  animation: popTitle 1s cubic-bezier(.45,1.8,.6,1) 0.2s both;
}
h2 {
  font-size: 2rem;
  color: var(--brand-pink);
  margin-bottom: 16px;
}
h3 {
  font-size: 1.3rem;
  color: var(--brand-teal);
}

@keyframes popTitle {
  0% { opacity: 0; transform: translateY(40px) scale(0.97); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

p, ul, li, span, blockquote {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  color: var(--primary);
  line-height: 1.6;
}

strong {
  color: var(--brand-blue);
  font-weight: 700;
}
em {
  color: var(--brand-teal);
  font-style: normal;
}

/* --------- LAYOUT & SPACING CONTAINERS (MANDATORY) --------- */

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--white);
  border-radius: 22px;
  box-shadow: 0 5px 22px rgba(11,39,64,0.10);
  padding: 32px 28px;
  transition: transform 0.17s, box-shadow 0.17s;
}
.card:hover {
  transform: translateY(-6px) scale(1.022) rotate(-1deg);
  box-shadow: 0 12px 28px rgba(35,155,195,0.2);
}
.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;
  background: var(--white);
  border-radius: 18px;
  padding: 20px;
  margin-bottom: 24px;
  box-shadow: 0 3px 10px rgba(69,206,238,0.09);
  position: relative;
  min-width: 0;
  flex: 1 1 280px;
  border-left: 8px solid var(--brand-yellow);
  transition: box-shadow 0.18s, transform 0.18s;
}
.testimonial-card:hover {
  box-shadow: 0 8px 24px rgba(11,39,64,0.13);
  transform: translateY(-4px) scale(1.025);
  border-left: 8px solid var(--brand-pink);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ---- PLAYFUL DYNAMIC HERO/SECTIONS ---- */
.hero, .thank-you, .cta {
  background-color: var(--brand-yellow);
  border-radius: 0 0 36px 36px;
  padding-top: 58px;
  padding-bottom: 48px;
  margin-bottom: 60px;
  animation: heroBounceIn 0.8s cubic-bezier(.45,.8,.62,1.35) 0.15s both;
}
@keyframes heroBounceIn {
  0%{transform:scaleY(0.98) translateY(48px);opacity:0}
  80%{transform:scaleY(1.05) translateY(-7px);opacity:.98}
  100%{transform:scaleY(1.0) translateY(0);opacity:1}
}
.cta {
  background: var(--brand-pink);
  color: var(--white);
  border-radius: 32px;
  margin-bottom: 60px;
  text-align: center;
  animation-delay: .2s;
}
.cta h2 { color: var(--primary); }
.thank-you {
  min-height: 360px;
  text-align: center;
  background: linear-gradient(92deg, var(--brand-blue) 65%, var(--brand-yellow) 100%);
  color: var(--white);
  border-radius: 24px;
  animation-delay: .2s;
}

.section {
  background: transparent;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.text-section {
  max-width: 750px;
}

/* ------------- NAVIGATION ----------- */
header {
  background: var(--brand-blue);
  padding: 0;
  border-radius: 0 0 28px 28px;
  box-shadow: 0 3px 16px rgba(35,155,195,0.09);
  margin-bottom: 28px;
  position: relative;
  z-index: 50;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 16px 20px;
}
.logo img {
  height: 56px;
  width: auto;
  filter: drop-shadow(3px 4px 0 var(--brand-yellow));
  transition: filter 0.15s;
}
.logo:hover img {
  filter: drop-shadow(0 0 0 var(--brand-yellow));
}
.main-nav {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-left: 24px;
}
.main-nav a {
  font-family: 'Cinzel', serif;
  font-size: 1.03rem;
  color: var(--white);
  padding: 11px 18px 9px 18px;
  border-radius: 14px;
  background: none;
  transition: background 0.2s, color 0.2s, box-shadow 0.16s;
  box-shadow: 0 1px 7px rgba(200,164,107,0.00);
  position: relative;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--brand-yellow);
  color: var(--primary);
  box-shadow: 0 2px 8px rgba(254,126,109,0.14);
}

.btn-primary {
  background: var(--brand-pink);
  color: var(--white)!important;
  font-family: 'Cinzel', serif;
  font-size: 1.05rem;
  border-radius: 16px;
  padding: 12px 30px;
  font-weight: 700;
  box-shadow: 0 2px 16px rgba(254,126,109,0.16);
  transition: background 0.16s, color 0.16s, transform 0.14s, box-shadow 0.21s;
  border: 2px solid transparent;
  letter-spacing: 0.01em;
  margin-left: 30px;
  display: inline-block;
  line-height: 1.2;
}
.btn-primary:hover, .btn-primary:focus{
  background: var(--brand-blue);
  color: var(--white);
  border: 2px solid var(--brand-yellow);
  transform: scale(1.04) rotate(-1deg);
  box-shadow: 0 3px 28px rgba(69,206,238,0.21);
}

/* Burger (Hamburger) button */
.mobile-menu-toggle {
  background: var(--brand-yellow);
  color: var(--brand-blue);
  font-size: 2rem;
  border-radius: 12px;
  padding: 8px 15px;
  margin-left: 16px;
  display: none;
  transition: background .18s, color 0.15s, transform 0.13s;
  z-index: 2000;
  border: 2px solid var(--brand-blue);
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--brand-pink);
  color: var(--white);
  transform: scale(1.08) rotate(-7deg);
}

/* ------------- MOBILE MENU --------------- */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--brand-blue);
  z-index: 4000;
  padding: 0 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  transform: translateX(-100vw);
  opacity: 0.0;
  transition: transform 0.35s cubic-bezier(.7,1.3,.4,1), opacity 0.18s;
  overflow-y: auto;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: all;
}
.mobile-menu-close {
  margin: 20px 0 24px 24px;
  color: var(--brand-yellow);
  background: var(--brand-pink);
  font-size: 2.2rem;
  padding: 2px 18px 2px 10px;
  border-radius: 50%;
  align-self: flex-end;
  border: 2px solid var(--brand-blue);
  box-shadow: 0 2px 14px rgba(254,126,109,0.12);
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--danger);
  color: var(--white);
  border: 2px solid var(--brand-yellow);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  width: 100%;
  align-items: flex-start;
  padding: 24px 32px;
}
.mobile-nav a {
  color: var(--white);
  font-size: 1.4rem;
  font-family: 'Cinzel', serif;
  padding: 14px 0;
  border-radius: 10px;
  transition: background 0.15s, color 0.17s;
  font-weight: 700;
  width: 100%;
  display: block;
  text-align: left;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--brand-yellow);
  color: var(--primary);
}

/* ------------------ PLAYFUL ELEMENTS DECORATION ------------------ */
.hero .container, .hero .content-wrapper, .cta .container, .cta .content-wrapper, .thank-you .container {
  position: relative;
  z-index: 1;
}
.hero .container:before, .cta .container:before, .thank-you .container:before {
  content: '';
  position: absolute;
  top: -35px; left: -46px;
  z-index: 0;
  width: 120px; height: 96px;
  background: var(--brand-pink);
  opacity: 0.16;
  border-radius: 40% 60% 60% 40% / 60% 40% 60% 40%;
  transform: rotate(-15deg);
  filter: blur(2px);
  animation: bgSquiggle 6s infinite linear;
}
@keyframes bgSquiggle {
  0% {transform: translateY(0) rotate(-15deg);}
  50% {transform: translateY(20px) rotate(12deg);}
  100% {transform: translateY(0) rotate(-15deg);}
}

/* ----------- FEATURES & SERVICES LIST ----------- */
.features ul, .services ul {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-left: 0;
  margin-top: 12px;
}
.features li, .services li {
  background: var(--white);
  border-radius: 16px;
  padding: 14px 22px;
  box-shadow: 0 1px 8px rgba(254,126,109,0.08);
  margin-bottom: 0;
  font-size: 1rem;
  font-family: 'Montserrat', sans-serif;
  color: var(--primary);
  transition: box-shadow .18s, transform .18s, background .16s;
  position: relative;
  border-left: 5px solid var(--brand-pink);
}
.features li:hover, .services li:hover {
  background: var(--brand-yellow);
  box-shadow: 0 6px 25px rgba(254,126,109,0.09);
  transform: scale(1.018) translateX(7px) rotate(-1deg);
  border-left: 5px solid var(--brand-blue);
}
.features strong, .services strong {
  font-family: 'Cinzel', serif;
  color: var(--primary);
  font-weight: 700;
}
.features em, .services em {
  background: var(--brand-teal);
  color: var(--primary);
  border-radius: 8px;
  padding: 2px 7px;
  font-size: 0.9em;
  font-style: normal;
}

/* ------------- TESTIMONIALS ----------------- */
.testimonials {
  background: var(--brand-blue);
  color: var(--white);
  border-radius: 28px;
  margin-bottom: 60px;
  padding-top: 26px;
  padding-bottom: 20px;
}
.testimonials h2 {
  color: var(--brand-yellow);
}
.testimonials .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 18px;
}
.testimonial-card {
  background: var(--white);
  color: var(--primary);
  box-shadow: 0 3px 18px rgba(35,155,195,0.13);
  margin-bottom: 0;
}
.testimonial-card blockquote {
  font-family: 'Cinzel', serif;
  font-size: 1.1rem;
  color: var(--brand-blue);
  margin: 0 0 8px 0;
  line-height: 1.5;
}
.testimonial-card span {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.98rem;
  color: var(--brand-pink);
  font-style: italic;
}

/* ----------- CONTACT PAGE, LEGAL PAGE, THANK YOU -------------- */
.legal .container, .contact .container, .thank-you .content-wrapper {
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0 3px 18px rgba(200,164,107,.11);
  padding: 36px 28px;
  margin-bottom: 36px;
}
.legal .content-wrapper, .contact .content-wrapper {
  gap: 18px;
}
.legal h1, .contact h1, .thank-you h1 {
  color: var(--brand-pink);
  font-size: 2.1rem;
}
.legal ul, .contact ul {
  margin-bottom: 14px;
  list-style: disc inside;
  padding-left: 8px;
  color: var(--primary);
  font-size: 1rem;
}
.legal li, .contact li {
  margin-bottom: 8px;
}

/* ---------------- FOOTER ------------------- */
footer {
  background: var(--primary);
  color: var(--white);
  border-radius: 26px 26px 0 0;
  padding: 34px 0 10px 0;
  margin-top: 46px;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  justify-content: center;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 0;
}
.footer-nav a {
  color: var(--brand-yellow);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.01em;
  padding: 7px 12px;
  border-radius: 8px;
  transition: background 0.13s, color 0.2s;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: var(--brand-pink);
  color: var(--white);
}
.footer-info {
  color: var(--brand-teal);
  font-size: 0.95rem;
  text-align: center;
}
.footer-branding {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
  font-size: 0.93rem;
}
.footer-info span {
  color: white;
}
.footer-branding img {
  height: 36px;
  width: auto;
}

/* ----------- COOKIE CONSENT BANNER -------------- */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--white);
  box-shadow: 0 -2px 12px rgba(11,39,64,.11);
  border-top: 4px solid var(--brand-yellow);
  z-index: 9999;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  padding: 24px 34px;
  min-height: 68px;
  font-size: 1.05rem;
  animation: cookieIn 0.44s cubic-bezier(.46,1.38,.62,1.12);
}
@keyframes cookieIn {
  0% { transform: translateY(60px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-banner-content { flex: 2 1 250px; }
.cookie-banner-actions {
  display: flex;
  gap: 12px;
  flex: 1 0 auto;
  align-items: center;
}
.cookie-btn {
  background: var(--brand-pink);
  color: var(--white);
  font-family: 'Cinzel', serif;
  font-size: 1rem;
  border-radius: 12px;
  padding: 8px 22px;
  font-weight: 700;
  border: none;
  margin-right: 0;
  transition: background 0.15s, color 0.12s, transform .12s;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: var(--brand-blue);
  color: var(--white);
  transform: scale(1.04);
}
.cookie-btn.settings {
  background: var(--brand-yellow);
  color: var(--primary);
  border: 2px solid var(--brand-blue);
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: var(--brand-blue);
  color: var(--white);
}

/* ------------ COOKIE MODAL --------------- */
.cookie-modal-overlay {
  position: fixed;
  z-index: 99999;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(11,39,64, 0.32);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s;
}
.cookie-modal-overlay.open { opacity: 1; pointer-events: all; }
.cookie-modal {
  background: var(--white);
  border-radius: 22px;
  padding: 36px 32px 28px 32px;
  min-width: 320px;
  max-width: 430px;
  box-shadow: 0 3px 32px rgba(11,39,64,0.15);
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  animation: cookieModalIn 0.55s cubic-bezier(.41,1.24,.45,1.13);
}
@keyframes cookieModalIn {
  0% { transform: scale(0.8) translateY(70px); opacity: 0; }
  90% {transform: scale(1.08) translateY(-6px); opacity:.95; }
  100% { transform: scale(1.0) translateY(0); opacity: 1; }
}
.cookie-modal .cookie-close {
  position: absolute;
  top: 17px; right: 24px;
  font-size: 2.1rem;
  color: var(--danger);
  background: transparent;
  border: none;
  border-radius: 18px;
  cursor: pointer;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 18px;
  background: var(--accent);
  border-radius: 9px;
  padding: 12px 11px;
  color: var(--primary);
  font-size: 1rem;
  font-family: 'Montserrat', sans-serif;
}
.cookie-category .cookie-toggle {
  accent-color: var(--brand-pink);
  width: 24px;
  height: 24px;
  margin-right: 11px;
}
.cookie-category.essential {
  background: var(--brand-teal);
  color: var(--primary);
  font-weight: 700;
  opacity: 0.82;
}
.cookie-modal-actions {
  display: flex;
  gap: 13px;
  margin-top: 12px;
}

/* -------- MICRO-INTERACTIONS/ANIMATIONS ---------- */
a, button {
  transition: color .13s, background .13s, box-shadow .13s, transform .11s;
}
ul li:before {
  content: '';
  display: inline-block;
  width: 9px; height: 9px;
  background: var(--brand-pink);
  border-radius: 100%;
  margin-right: 10px;
  vertical-align: middle;
}

/* Remove bullet for features/services for a playful dot effect only on text lists, not service cards */
.features ul li:before,
.services ul li:before {
  content: '' !important;
  margin-right: 0;
  background: none;
  width: 0;
}

/* --- Fun highlight effect for playful text focus --- */
.btn-primary:focus-visible,
.cookie-btn:focus-visible {
  outline: 3px solid var(--brand-yellow);
  outline-offset: 2px;
}

/* ------------------ RESPONSIVE - MOBILE FIRST ------------------- */
@media (max-width: 1000px) {
  h1 { font-size: 2.1rem; }
  h2 { font-size: 1.46rem; }
  .container { padding-left: 12px; padding-right: 12px; }
  .main-nav { gap: 9px; }
}
@media (max-width: 768px) {
  .container {
    padding-left: 5vw;
    padding-right: 5vw;
    max-width: 100vw;
  }
  .section, .hero, .cta, .thank-you {
    padding: 28px 0 26px 0;
    border-radius: 0 0 24px 24px;
    margin-bottom: 38px;
  }
  h1 { font-size: 1.46rem; }
  h2 { font-size: 1.13rem; }
  .main-nav, .btn-primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
    margin-left: 0;
  }
  header .container {
    flex-direction: row;
    justify-content: space-between;
    gap: 10px;
  }
  .testimonial-card {
    flex-direction: column;
    gap: 11px;
    min-width: 0;
    padding: 14px;
  }
  .testimonials .content-wrapper {
    gap: 13px;
  }
  .content-grid, .card-container {
    flex-direction: column !important;
    gap: 16px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  footer .container, .footer-nav {
    flex-direction: column;
    gap: 8px;
  }
  .thank-you, .legal .container, .contact .container {
    padding: 22px 0 16px 0;
    border-radius: 11px;
  }
  .cookie-banner {
    flex-direction: column;
    gap: 14px;
    padding: 16px 7vw 12px 7vw;
  }
  .cookie-banner-actions {
    width: 100%;
    justify-content: flex-end;
  }
}

/* Smallest screens */
@media (max-width: 440px) {
  h1 { font-size: 1.06rem; }
  .footer-branding span {
    font-size: 0.82rem;
  }
  .testimonial-card { font-size: .95em; }
  .faq-card, .card, .legal .container, .contact .container {
    padding: 15px 2vw;
  }
}

/* Hide scrollbar for overlay menus (for cleaner experience) */
.mobile-menu::-webkit-scrollbar, .cookie-modal-overlay::-webkit-scrollbar {
  display: none;
}

/* --------- UTILITY CLASSES --------- */
.hide { display: none !important; }
.no-scroll { overflow: hidden !important; height: 100vh; }

/* --- END OF STYLE.CSS --- */
