/* ====================================================== */
/* CSS RESET & BASELINE                                   */
/* ====================================================== */
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; box-sizing: border-box;
}
html { box-sizing: border-box; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; scroll-behavior: smooth; }
body { line-height: 1.6; background: #FCF6F5; color: #263238; min-height: 100vh; font-family: 'Roboto', Arial, sans-serif; font-size: 16px; }
img { max-width: 100%; display: block; border: 0; }
a { color: #456990; text-decoration: none; transition: color 0.18s; }
a:hover, a:focus { color: #2364aa; text-decoration: underline; outline: none; }
ul, ol { margin-left: 1.3em; }
table { border-collapse: collapse; width: 100%; }
th, td { padding: 12px 8px; text-align: left; }
th { background: #EDE7F6; color: #263238; }
td { background: #FFF; color: #263238; }
button, input, select, textarea { font: inherit; border: none; background: none; outline: none; box-sizing: border-box; }
blockquote { border-left: 4px solid #CE93D8; margin: 16px 0; padding-left: 20px; color: #6D6D8F; font-style: italic; background: #f9f4fd; }
cite { display: block; margin-top: 8px; font-size: 0.92em; color: #8B7AA1; }

/* =========================== */
/* FONT IMPORTS                */
/* =========================== */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,600,500,400&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,300,500,700&display=swap');

/* =========================== */
/* BRAND COLOR PALETTE         */
/* =========================== */
:root {
  --primary: #263238;
  --secondary: #90CAF9;
  --accent: #FFD54F;
  --pastel-blue: #DBF4FF;
  --pastel-lilac: #F3E8FF;
  --pastel-yellow: #FFF9DE;
  --pastel-pink: #FFD6E0;
  --pastel-purple: #CE93D8;
  --pastel-mint: #E0F7FA;
  --pastel-green: #D0F5E8;
  --header-bg: #FFFFFFCC;
  --footer-bg: #F6F7FB;
  --card-bg: #FFF;
  --card-shadow: 0 4px 24px 0 rgba(145, 158, 171, 0.16);
  --border-radius: 18px;
  --input-bg: #F7F9FB;
  --input-border: #E0E0E0;
  --transition: 0.22s cubic-bezier(.62,.28,.23,.99);
}

/* =========================== */
/* TYPOGRAPHY                  */
/* =========================== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: var(--primary);
}
h1 { font-size: 2.5rem; margin-bottom: 16px; letter-spacing: -1px; }
h2 { font-size: 2rem; margin-bottom: 14px; letter-spacing: -1px; }
h3 { font-size: 1.25rem; margin-bottom: 10px; color: #4B4F62; }
h4, h5, h6 { font-size: 1rem; margin-bottom: 8px; }
p {
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 400;
  color: #37474F;
  margin-bottom: 14px;
  font-size: 1rem;
  line-height: 1.7;
}
strong { font-weight: 700; color: var(--primary); }

.text-section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}

/* =========================== */
/* LAYOUT CONTAINERS           */
/* =========================== */
.container {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  padding: 0 18px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--card-bg);
  box-shadow: var(--card-shadow);
  border-radius: var(--border-radius);
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow var(--transition), transform var(--transition);
}
.card:hover { box-shadow: 0 8px 32px 0 rgba(145, 158, 171, 0.23); transform: translateY(-3px) scale(1.014); }
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px 22px;
  gap: 8px;
}
.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: var(--pastel-lilac);
  border-radius: var(--border-radius);
  box-shadow: 0 2px 12px 0 rgba(190, 110, 210,.09);
  margin-bottom: 20px;
  flex-direction: column;
  justify-content: flex-start;
}
.testimonial-card p {
  color: #27303C;
  font-size: 1.08rem;
  font-style: italic;
  margin-bottom: 0px;
}
.testimonial-card span {
  color: #7B5DAA;
  margin-top: 5px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1em;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ========= FEATURES FLEX (GRID-LIKE) ========== */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.feature-grid > div {
  flex: 1 1 220px;
  min-width: 220px;
  max-width: 260px;
  background: var(--pastel-blue);
  border-radius: var(--border-radius);
  padding: 30px 22px 22px 22px;
  box-shadow: 0 2px 16px 0 rgba(145, 158, 171, 0.08);
  margin-bottom: 20px;
  text-align: center;
  transition: background var(--transition), box-shadow var(--transition);
}
.feature-grid > div:hover {
  background: var(--pastel-mint);
  box-shadow: 0 5px 20px 0 rgba(145, 158, 171, 0.16);
}
.feature-grid img {
  width: 44px;
  height: 44px;
  margin-bottom: 10px;
  margin-left: auto;
  margin-right: auto;
}

/* ========= TABLES ========== */
table {
  background: var(--card-bg);
  border-radius: var(--border-radius);
  box-shadow: var(--card-shadow);
  overflow: hidden;
  margin: 22px 0 10px 0;
}
thead { background: var(--pastel-blue); }
tbody tr { border-bottom: 1px solid #F3F5F7; }
td, th { font-family: 'Roboto', Arial, sans-serif; font-size: 1rem; border: none; }
tr:last-child td { border-bottom: none; }

/* =========================== */
/* HEADER & NAVIGATION         */
/* =========================== */
header {
  width: 100%;
  background: var(--header-bg);
  box-shadow: 0 1px 14px 0 rgba(126, 171, 222, 0.13);
  position: sticky;
  top: 0;
  z-index: 40;
}
header nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1140px;
  margin: 0 auto;
  padding: 12px 18px;
  flex-wrap: wrap;
}
header nav a img { height: 38px; margin-right: 12px; }
header nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  list-style: none;
}
header nav ul li a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  background: none;
  color: var(--primary);
  padding: 7px 17px;
  border-radius: 12px;
  transition: background var(--transition), color var(--transition);
  letter-spacing: .01em;
}
header nav ul li a[aria-current="page"] { color: #7B5DAA; background: var(--pastel-lilac); }
header nav ul li a:hover, header nav ul li a:focus {
  background: var(--pastel-blue);
  color: #3D4382;
  text-decoration: none;
}
.cta-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  padding: 9px 28px;
  background: linear-gradient(90deg, #FFD6E0 0%, #FFF9DE 100%);
  border-radius: 35px;
  color: var(--primary);
  font-size: 1.08rem;
  box-shadow: 0 2px 10px 0 rgba(255, 213, 79, 0.08);
  border: none;
  transition: background var(--transition), box-shadow var(--transition), color var(--transition);
  cursor: pointer;
}
.cta-btn:hover, .cta-btn:focus {
  background: linear-gradient(100deg, #FFF9DE 0%, #FFD6E0 100%);
  color: #674172;
  box-shadow: 0 4px 18px 0 rgba(197, 122, 166, 0.12);
  outline: none;
}

/* =========================== */
/* MOBILE NAVIGATION           */
/* =========================== */
.mobile-menu-toggle {
  display: none;
  background: var(--pastel-lilac);
  color: var(--primary);
  font-size: 2.2rem;
  border-radius: 100px;
  padding: 2px 15px;
  box-shadow: 0 2px 12px 0 rgba(126, 171, 222, 0.09);
  border: none;
  cursor: pointer;
  transition: background var(--transition), box-shadow var(--transition);
  margin-left: 12px;
  z-index: 101;
}
.mobile-menu-toggle:focus { outline: 2px solid #7B5DAA; background: var(--pastel-blue); }

.mobile-menu {
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: rgba(251,248,255,.85);
  backdrop-filter: blur(7px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  transform: translateX(-100vw);
  transition: transform .36s cubic-bezier(.68,-0.55,.27,1.55);
  z-index: 100;
  box-shadow: 0 12px 32px 0 rgba(197, 191, 255, 0.11);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  font-size: 2.1rem;
  margin: 18px 24px;
  color: #7B5DAA;
  background: none;
  border: none;
  cursor: pointer;
  border-radius: 100px;
  padding: 5px 15px;
  transition: background .15s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus { background: var(--pastel-lilac); outline: none; }
.mobile-nav {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-top: 20px;
  gap: 10px;
  align-items: flex-start;
  padding-left: 32px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.17rem;
  color: var(--primary);
  padding: 13px 0;
  width: 100%;
  border-radius: 10px;
  transition: background 0.14s, color 0.14s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--pastel-mint);
  color: #6C4895;
  outline: none;
}

/* Hide Desktop Navigation on mobile, Show Burger Button */
@media (max-width: 950px) {
  header nav ul, header nav .cta-btn { display: none; }
  .mobile-menu-toggle { display: block; }
}
@media (min-width: 951px) {
  .mobile-menu { display: none !important; }
}

/* =========================== */
/* MAIN SECTIONS SPACING       */
/* =========================== */
section { margin-bottom: 60px; padding: 40px 20px; }
@media (max-width: 640px) {
  section { margin-bottom: 34px; padding: 30px 12px; }
}

/* =========================== */
/* UNIQUE COMPONENTS           */
/* =========================== */
/* Cards for services, gallery, tips, etc. are covered by .card, .feature-grid > div, .testimonial-card. */

/* =========================== */
/* FORMS, DL, DT, DD           */
/* =========================== */
dl { margin-bottom: 18px; }
dt { font-family: 'Montserrat', Arial, sans-serif; color: #7167B1; font-weight: 600; margin-bottom: 2px; }
dd { font-size: 1.06em; color: #37474F; margin-bottom: 7px; margin-left: 0; }

/* ======================== */
/* LINK & BUTTON INTERACTIONS */
/* ======================== */
a, button {
  transition: background var(--transition), color var(--transition), box-shadow var(--transition), outline .12s;
}
button {
  cursor: pointer;
  border-radius: 14px;
}
button:focus-visible, input:focus-visible { outline: 2px solid #90CAF9; }

/* =========================== */
/* FOOTER                      */
/* =========================== */
footer {
  background: var(--footer-bg);
  padding: 30px 0 24px 0;
  border-top: 1px solid #E0E0E0;
  text-align: center;
  font-size: 1rem;
  margin-top: 40px;
}
footer nav {
  margin-bottom: 7px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  gap: 9px;
}
footer a {
  color: #7B5DAA;
  font-weight: 500;
  text-decoration: underline;
  font-size: 1em;
  transition: color .13s;
}
footer a:hover, footer a:focus { color: #263238; }
.footer-contact {
  color: #8881B8;
  font-size: .98em;
  margin-top: 10px;
  display: flex;
  flex-direction: row;
  gap: 7px;
  flex-wrap: wrap;
  justify-content: center;
}

/* ============================= */
/* COOKIE CONSENT BANNER + MODAL */
/* ============================= */
#cookie-banner {
  position: fixed;
  bottom: 0; left: 0;
  width: 100%;
  background: linear-gradient(90deg, #FFF9DE 0%, #FFD6E0 100%);
  box-shadow: 0 -2px 18px 0 rgba(197, 122, 166, 0.12);
  z-index: 150;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 18px 14px;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: #474250;
  transition: bottom .18s;
}
#cookie-banner.hide { bottom: -110px; pointer-events: none; opacity: 0; }
#cookie-banner .cookie-msg { flex: 1; max-width: 400px; }
.cookie-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  border: none;
  margin: 0 5px;
  border-radius: 26px;
  padding: 7px 21px;
  font-size: 1rem;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), box-shadow var(--transition);
}
.cookie-btn.accept {
  background: var(--pastel-mint);
  color: var(--primary);
}
.cookie-btn.reject {
  background: var(--pastel-pink);
  color: #bf275a;
}
.cookie-btn.settings {
  background: var(--pastel-blue);
  color: #456990;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: var(--pastel-lilac);
  color: #7B5DAA;
  box-shadow: 0 2px 8px rgba(140,123,179,0.08);
  outline: none;
}

/* Cookie Modal */
#cookie-modal {
  position: fixed;
  left: 50vw;
  top: 50vh;
  transform: translate(-50%, -50%) scale(0.9);
  background: #FFF;
  z-index: 160;
  box-shadow: 0 8px 44px 0 rgba(181, 120, 218, 0.19);
  border-radius: var(--border-radius);
  width: 92%;
  max-width: 410px;
  padding: 28px 22px 22px 22px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .22s, transform .18s;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
#cookie-modal.open {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
}
#cookie-modal h2 {
  font-size: 1.25rem;
  color: #7B5DAA;
  margin-bottom: 10px;
}
.cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 13px;
  margin-bottom: 11px;
}
.cookie-category label {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  color: #263238;
  font-weight: 500;
}
.cookie-switch {
  width: 39px;
  height: 22px;
  background: #EEE;
  border-radius: 14px;
  position: relative;
  cursor: pointer;
  margin-right: 3px;
  transition: background 0.13s;
  border: 1px solid #E6E0EF;
  flex-shrink: 0;
}
.cookie-switch input {
  display: none;
}
.cookie-switch .toggle {
  position: absolute;
  top: 2px; left: 2px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: #B19CD9;
  transition: left 0.16s, background 0.16s;
}
.cookie-switch input:checked + .toggle {
  left: 17px;
  background: #7B5DAA;
}
#cookie-modal .cookie-modal-actions {
  display: flex;
  gap: 12px;
  flex-direction: row;
  justify-content: flex-end;
}
#cookie-modal .cookie-modal-actions button {
  min-width: 80px;
  padding: 8px 20px;
}
#cookie-modal .close-modal {
  background: var(--pastel-pink);
  color: #bf275a;
}
@media (max-width: 520px) {
  #cookie-modal { padding: 20px 7px 10px 7px; }
}

/* ============================== */
/* RESPONSIVE DESIGN (Mobile First)*/
/* ============================== */
@media (max-width: 768px) {
  .container { padding: 0 9px; max-width: 100vw; }
  .content-wrapper, .card-container, .content-grid, .feature-grid, footer .footer-contact {
    flex-direction: column !important;
    gap: 18px;
    align-items: stretch;
  }
  .feature-grid > div, .card {
    min-width: unset;
    max-width: unset;
    width: 100%;
  }
  .text-image-section {
    flex-direction: column !important;
    gap: 22px;
    align-items: stretch;
  }
  header nav {
    flex-direction: row;
    gap: 6px;
    padding: 6px 7px;
  }
  .testimonial-card {
    gap: 12px;
    font-size: 1em;
    padding: 13px;
  }
  section { padding: 27px 6px; margin-bottom: 26px; }
  th, td { padding: 8px 4px; }
}

/* =========================== */
/* UTILITY: MARGINS/GAPS      */
/* =========================== */
.mb-20 { margin-bottom: 20px !important; }
.mb-24 { margin-bottom: 24px !important; }
.mt-16 { margin-top: 16px !important; }
.gap-16 { gap: 16px !important; }

/* =========================== */
/* SUBTLE ANIMATIONS          */
/* =========================== */
.cta-btn, .cookie-btn, .feature-grid > div, .card, .mobile-menu-toggle, .mobile-nav a, .testimonial-card {
  transition: background var(--transition), color var(--transition), box-shadow var(--transition), transform var(--transition), outline .08s;
}
.card, .feature-grid > div, .testimonial-card {
  transition: box-shadow var(--transition), background var(--transition), transform var(--transition);
}

/* =========================== */
/* COLORS FOR LIST PRICES ETC. */
/* =========================== */
ul li span, .services-list span, table td:last-child {
  font-weight: 600;
  color: #7B5DAA;
}
ul li strong, .services-list strong {
  color: #456990;
}

/* =========================== */
/* MISC: HR, BLOCKS, ETC      */
/* =========================== */
hr { border: none; border-top: 1px solid #EEE; margin: 30px 0; }

/* === END === */
