/* 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;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, main, menu, nav, section {
  display: block;
}
body {
  line-height: 1.6;
  background: #FBF8FF;
  color: #29406E;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
  box-shadow: none;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}

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

body {
  font-family: 'Open Sans', Arial, sans-serif;
  background: #FBF8FF;
  color: #2C3454;
  font-size: 16px;
  font-weight: 400;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #1B396A;
  font-weight: 700;
  line-height: 1.18;
  margin-bottom: 16px;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2rem;
  margin-bottom: 16px;
}
h2 {
  font-size: 1.5rem;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

p, li {
  font-size: 1rem;
  color: #4A5070;
}

strong {
  color: #1B396A;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #FFFFFFBB;
  border-radius: 20px;
  box-shadow: 0 2px 20px 0 rgba(180,180,230,0.08);
}

.container {
  width: 100%;
  max-width: 1060px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 16px;
}

.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/********************************
   HEADER & NAVIGATION
*********************************/
header {
  background: #F5F6FB;
  box-shadow: 0 2px 12px 0 rgba(40, 80, 120, 0.04);
}
.header-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1140px;
  margin: 0 auto;
  padding: 18px 16px;
  gap: 20px;
}
.header-wrapper img {
  height: 48px;
}
.main-nav {
  display: flex;
  gap: 22px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  color: #475381;
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 8px 6px;
  border-radius: 7px;
  transition: background 0.18s, color 0.18s;
}
.main-nav a:hover,
.main-nav a:focus {
  background: #E3E5F7;
  color: #1B396A;
}
.cta-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  background: #E0C31D;
  color: #1B396A;
  border-radius: 22px;
  padding: 12px 32px;
  font-size: 1rem;
  letter-spacing: 0.02em;
  box-shadow: 0 5px 24px rgba(224,195,29,0.10);
  transition: background 0.18s, color 0.18s, box-shadow 0.23s;
  cursor: pointer;
  border: none;
  outline: none;
  display: inline-block;
  margin-left: 10px;
}
.cta-btn:hover, .cta-btn:focus {
  background: #FFEB90;
  color: #343862;
  box-shadow: 0 7px 28px rgba(224,195,29,0.15);
}

/********************************
   MOBILE NAVIGATION
*********************************/
.mobile-menu-toggle {
  display: none;
  background: #E0C31D;
  color: #1B396A;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  font-size: 2rem;
  box-shadow: 0 2px 16px 0 rgba(224,193,29,0.07);
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  transition: background 0.19s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #FFE572;
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  z-index: 2000;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #EFF2FAEE;
  transform: translateX(100%);
  transition: transform 0.38s cubic-bezier(.66,.03,.29,.95);
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0%);
  pointer-events: all;
  opacity: 1;
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 28px 24px 10px 0;
  font-size: 2.1rem;
  background: #F7EAF7;
  color: #AB6A95;
  border-radius: 50%;
  border: none;
  width: 48px;
  height: 48px;
  cursor: pointer;
  transition: background 0.18s, color 0.18s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #EAD5FF;
  color: #653D57;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
  margin: 20px 32px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.15rem;
  color: #1B396A;
  font-weight: 600;
  padding: 10px 4px;
  border-radius: 6px;
  width: 100%;
  transition: background 0.18s, color 0.18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #E0C31D22;
  color: #895EB3;
}
@media (max-width: 1110px) {
  .header-wrapper {
    max-width: 98vw;
  }
}
@media (max-width: 900px) {
  .main-nav {
    display: none;
  }
  .cta-btn {
    margin-left: 6px;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
@media (max-width: 700px) {
  .header-wrapper {
    flex-direction: row;
    gap: 8px;
    padding: 10px 8px;
  }
  .header-wrapper img {
    height: 38px;
  }
  .mobile-menu-close {
    margin-top: 8px;
    margin-bottom: 8px;
  }
  .cta-btn {
    padding: 10px 18px;
    font-size: 0.98rem;
  }
}

/********************************
   HERO & COMMON SECTIONS
*********************************/
.hero {
  margin-bottom: 60px;
  padding: 40px 0 30px 0;
  background: linear-gradient(180deg, #F9FBFF 0%, #FAF0FF 100%);
  display: flex;
  align-items: center;
  min-height: 350px;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.hero .content-wrapper {
  gap: 18px;
  max-width: 620px;
  background: #FFFFFFF9;
  border-radius: 22px;
  padding: 38px 28px;
  box-shadow: 0 3px 24px 0 rgba(180,180,230,0.13);
}
.hero h1 {
  font-size: 2.1rem;
  background: linear-gradient(90deg, #895EB3 20%, #1B396A 80%);
  background-clip: text;
  color: transparent;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero p {
  font-size: 1.13rem;
  color: #605A81;
}
.hero .cta-btn {
  margin-top: 10px;
  font-size: 1.06rem;
}

/********************************
   FEATURES & CARDS
*********************************/
.features {
  margin-bottom: 60px;
  padding: 40px 0 10px 0;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 10px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #F5F3FF;
  padding: 28px 22px 22px 22px;
  border-radius: 18px;
  min-width: 180px;
  max-width: 240px;
  flex: 1 1 200px;
  box-shadow: 0 1.5px 8px 0 rgba(183, 171, 202, 0.08);
  transition: box-shadow 0.23s, transform 0.2s;
  margin-bottom: 20px;
  position: relative;
}
.feature-item img {
  height: 44px;
  width: 44px;
  margin-bottom: 8px;
}
.feature-item h3 {
  font-size: 1.10rem;
  color: #895EB3;
  margin-bottom: 4px;
  margin-top: 0;
}
.feature-item p {
  font-size: 0.98rem;
}
.feature-item:hover,
.feature-item:focus-within {
  box-shadow: 0 5px 18px rgba(183,171,202,0.15);
  transform: translateY(-4px) scale(1.02);
}
.feature-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 8px;
}
.feature-list li {
  padding-left: 8px;
  font-size: 1rem;
}

/********************************
   SERVICE LISTS
*********************************/
.services {
  margin-bottom: 60px;
  padding: 40px 0 10px 0;
}
.service-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 14px;
}
.service-list li {
  font-size: 1rem;
}

/********************************
   TESTIMONIAL CARDS
*********************************/
.testimonials {
  margin-bottom: 60px;
  padding: 40px 0 10px 0;
}
.testimonials h2 {
  margin-bottom: 24px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  background: #FFF7F9;
  border-radius: 18px;
  padding: 20px 28px;
  margin-bottom: 20px;
  box-shadow: 0 2px 18px 0 rgba(160,125,162,0.07);
  border-left: 5px solid #E0C31D;
  position: relative;
  color: #232242;
  max-width: 600px;
}
.testimonial-card p {
  color: #39234d;
  font-size: 1.02rem;
  margin-bottom: 7px;
}
.testimonial-card span {
  color: #584385;
  opacity: 0.95;
  font-size: 0.98rem;
  font-style: italic;
}
.testimonial-card::before {
  content: '“';
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 3.1rem;
  color: #E8C7E8;
  position: absolute;
  left: 10px;
  top: 10px;
  line-height: 1;
  opacity: 0.23;
  pointer-events: none;
}

/************************************
   CONTACT / LOCATION / MAP SECTIONS
*************************************/
.contact {
  margin-bottom: 60px;
  padding: 40px 0 10px 0;
}
.contact-info {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-bottom: 18px;
  align-items: center;
}
.contact-info > div {
  display: flex;
  align-items: center;
  gap: 11px;
}
.contact-info img {
  width: 28px;
  height: 28px;
  opacity: 0.82;
}
.opening-hours {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 16px;
}
.opening-hours img {
  width: 28px;
}
.cta-area {
  margin-top: 18px;
  display: flex;
  align-items: center;
}
.address-block {
  margin: 16px 0 16px 0;
  font-size: 1.02rem;
}
.map-placeholder {
  background: #F8F0FA;
  border-radius: 14px;
  padding: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.map-placeholder img {
  width: 90px;
  height: auto;
  opacity: 0.75;
}

/************************************
   FOOTER
*************************************/
footer {
  background: #F2EAFE;
  box-shadow: 0 -1px 12px 0 rgba(169,120,180,0.08);
  padding-top: 32px;
  padding-bottom: 30px;
}
.footer-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 38px;
  justify-content: space-between;
  max-width: 1060px;
  margin: 0 auto;
  padding: 0 16px;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  max-width: 220px;
}
.footer-brand img {
  height: 48px;
  margin-bottom: 6px;
}
.footer-brand p {
  font-size: 1rem;
  color: #826282;
  opacity: 0.86;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 9px;
  min-width: 160px;
}
.footer-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  color: #6B509A;
  font-weight: 600;
  transition: color 0.22s;
  border-radius: 4px;
  padding: 4px 0;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #E0C31D;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 190px;
  font-size: 0.98rem;
  color: #58657A;
}
.footer-contact strong { color: #1B396A; }
.footer-contact a { color: #895EB3; }
.footer-contact a:hover, .footer-contact a:focus { color: #E0C31D; }

/***********************************
   MISCELLANEOUS
************************************/
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #FDF7F3;
  border-radius: 13px;
  padding: 24px;
  box-shadow: 0 2px 14px 0 rgba(242,200,170,0.06);
}
.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;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/************************************
   LEGAL SECTION
*************************************/
.legal {
  margin-bottom: 60px;
  padding: 40px 0 10px 0;
}
.legal ul {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 10px;
}
.legal li {
  font-size: 1rem;
}

/************************************
   ABOUT SECTION
*************************************/
.about {
  margin-bottom: 60px;
  padding: 40px 0 20px 0;
}

/***************************************
   THANK YOU PAGE
****************************************/
.thank-you .hero {
  margin-top: 40px;
}

/************************************
   COOKIE CONSENT BANNER & MODAL
*************************************/
#cookie-banner {
  position: fixed;
  z-index: 2500;
  left: 0; bottom: 0;
  width: 100vw;
  background: #fff5fb;
  border-top: 2px solid #E0C31D;
  box-shadow: 0 -2px 18px rgba(224,195,29,0.08);
  padding: 20px 16px 18px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 0.98rem;
  opacity: 1;
  transition: transform 0.27s cubic-bezier(.66,.03,.29,.95), opacity 0.19s;
  transform: translateY(0);
}
#cookie-banner.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(110%);
}
#cookie-banner .cookie-message {
  color: #653D57;
  flex: 1 1 180px;
  min-width: 120px;
  margin-right: 10px;
}
#cookie-banner .cookie-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  border-radius: 20px;
  padding: 8px 22px;
  font-size: 0.99rem;
  margin-right: 10px;
  border: none;
  cursor: pointer;
  background: #E0C31D;
  color: #1B396A;
  box-shadow: 0 2px 8px rgba(224,195,29,0.10);
  transition: background 0.16s, color 0.16s;
}
#cookie-banner .cookie-btn:last-child {
  margin-right: 0;
}
#cookie-banner .cookie-btn:hover, #cookie-banner .cookie-btn:focus {
  background: #FFE572;
  color: #895EB3;
}
#cookie-banner .cookie-btn.secondary {
  background: #F3EDFF;
  color: #895EB3;
}
#cookie-banner .cookie-btn.secondary:hover, #cookie-banner .cookie-btn.secondary:focus {
  background: #EAD5FF;
  color: #1B396A;
}

#cookie-modal-overlay {
  position: fixed;
  z-index: 3000;
  left: 0; top: 0;
  width: 100vw; height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  pointer-events: all;
  background: rgba(176, 138, 218, 0.14);
  transition: opacity 0.18s;
}
#cookie-modal-overlay.hide {
  opacity: 0;
  pointer-events: none;
}
#cookie-modal {
  background: #FFF7FB;
  border-radius: 18px;
  box-shadow: 0 4px 30px 0 rgba(198,175,232,0.23);
  padding: 34px 30px 30px 30px;
  max-width: 440px;
  width: 90%;
  font-family: 'Open Sans', Arial, sans-serif;
  color: #2C3454;
  display: flex;
  flex-direction: column;
  gap: 17px;
  position: relative;
}
#cookie-modal h2 {
  margin-bottom: 7px;
  color: #895EB3;
}
#cookie-modal-close {
  position: absolute; right: 18px; top: 12px;
  background: #E0C31D;
  color: #1B396A;
  border-radius: 50%;
  border: none;
  width: 36px; height: 36px;
  font-size: 1.32rem;
  cursor: pointer;
  transition: background 0.17s;
}
#cookie-modal-close:hover, #cookie-modal-close:focus {
  background: #FFD700;
  color: #895EB3;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin: 12px 0 16px 0;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 13px;
}
.cookie-category input[type='checkbox'] {
  accent-color: #E0C31D;
  width: 18px;
  height: 18px;
  border-radius: 5px;
  margin-right: 7px;
}
.cookie-category.essential label {
  font-weight: bold;
  color: #895EB3;
}
.cookie-category.essential input[type='checkbox'] {
  filter: grayscale(70%);
  pointer-events: none;
}
.cookie-modal-actions {
  display: flex;
  gap: 14px;
  margin-top: 10px;
  justify-content: flex-end;
}
.cookie-modal-actions .cookie-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  border-radius: 20px;
  padding: 8px 22px;
  font-size: 0.99rem;
  border: none;
  cursor: pointer;
  background: #E0C31D;
  color: #1B396A;
  box-shadow: 0 2px 8px rgba(224,195,29,0.10);
}
.cookie-modal-actions .cookie-btn.secondary {
  background: #F3EDFF;
  color: #895EB3;
}

/******************************
   FLEXBOX RESPONSIVE LAYOUTS
*******************************/
@media (max-width: 900px) {
  .feature-grid {
    flex-direction: column;
    gap: 18px;
  }
  .footer-wrapper {
    flex-direction: column;
    gap: 30px;
    align-items: flex-start;
  }
  .contact-info {
    flex-direction: column;
    gap: 19px;
  }
}
@media (max-width: 768px) {
  .container {
    max-width: 98vw;
  }
  .section, .hero, .features, .services, .legal, .about, .testimonials, .contact {
    margin-bottom: 40px;
    padding: 29px 5px 10px 5px;
    border-radius: 12px;
  }
  .hero .content-wrapper {
    padding: 22px 9px;
  }
  .feature-grid {
    flex-direction: column;
    flex-wrap: wrap;
    gap: 14px;
  }
  .feature-item {
    min-width: 0;
    max-width: 100%;
    width: 100%;
    padding: 18px 10px;
    border-radius: 13px;
  }
  .footer-wrapper {
    padding: 0 6px;
  }
  .content-grid, .card-container, .text-image-section, .testimonials {
    flex-direction: column;
    gap: 15px;
  }
  .testimonials .testimonial-card {
    max-width: 98vw;
    padding: 16px 7px;
    border-radius: 10px;
  }
  .about-location .map-placeholder {
    padding: 8px;
  }
}
@media (max-width: 500px) {
  h1 {
    font-size: 1.32rem;
  }
  h2 {
    font-size: 1.08rem;
  }
  .hero .content-wrapper {
    padding: 13px 2px;
  }
  .section, .hero, .features, .services, .legal, .about, .testimonials, .contact {
    padding-left: 0;
    padding-right: 0;
  }
}

/*******************************
   SOFT PASTEL DECORATIVE THEME
********************************/
body {
  background: linear-gradient(180deg, #FAF0FF 0%, #F6FBFF 100%);
}
.section, .content-wrapper, .feature-item, .testimonial-card, .card, .map-placeholder, .cookie-modal, .about, .services, .legal {
  transition: box-shadow 0.22s, transform 0.18s, background 0.21s;
}
.feature-item, .card {
  background: #F5F3FF;
}

/*********************************
   MICRO-INTERACTIONS
**********************************/
a, .cta-btn, .footer-nav a, .main-nav a, .feature-item, .testimonial-card {
  transition: color 0.18s, background 0.19s, box-shadow 0.21s, transform 0.2s;
}

.feature-item:hover, .feature-item:focus-within {
  transform: translateY(-3px) scale(1.01);
  box-shadow: 0 6px 22px 0 rgba(149,102,193,0.12);
  background: #F3EAFE;
}
.cta-btn:active {
  transform: scale(0.99);
}
.main-nav a:active, .footer-nav a:active {
  transform: scale(0.97);
}

/**************************************
   SCROLLBAR STYLE
***************************************/
::-webkit-scrollbar {
  width: 10px;
  background: #FBF7FA;
}
::-webkit-scrollbar-thumb {
  background: #E0C31D88;
  border-radius: 7px;
}

/**************************************
   FOCUS STATE FOR ACCESSIBILITY
***************************************/
:focus-visible {
  outline: 2px solid #E0C31D;
  outline-offset: 2px;
}

/***************************************
   PASTEL COLOR PALETTE UTILITIES
***************************************/
.pastel-pink { background: #FFD7F3; }
.pastel-yellow { background: #FFF5B7; }
.pastel-blue { background: #DFF5FF; }
.pastel-lavender { background: #F3EAFE; }
.pastel-mint { background: #D9FFF7; }

/***************************************
   HIDE UTILITIES
***************************************/
.hidden {
  display: none !important;
  visibility: hidden !important;
}

/***************************************
   PRINT OPTIMIZATION
***************************************/
@media print {
  header, footer, .main-nav, .mobile-menu, #cookie-banner, #cookie-modal-overlay { display: none !important; }
  body { background: white !important; color: #1B396A !important; }
  .section, .features, .services, .about, .legal, .testimonial-card, .feature-item, .card, .hero {  box-shadow: none !important; background: white !important;}
}
