/* ===============================
   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;
}
html { box-sizing: border-box; }
*, *:before, *:after { box-sizing: inherit; }
body {
  line-height: 1.5;
  background: #F7F8FA;
  color: #174456;
  font-family: 'Open Sans', Arial, sans-serif;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }
a { color: inherit; text-decoration: none; transition: color 0.2s; }
button { background: none; border: none; font: inherit; cursor: pointer; }

/* ===============================
   BRAND COLORS & PALETTE
   =============================== */
:root {
  --primary: #174456;
  --secondary: #D7D9DC;
  --accent: #C9A94A;
  --white: #fff;
  --dark: #16232A;
  --text: #174456;

  --pastel-blue: #CCEBF6;
  --pastel-rose: #FFD7E0;
  --pastel-lavender: #E3D3F9;
  --pastel-mint: #D5F7EC;
  --pastel-yellow: #FFF7D4;
  --pastel-gray: #F7F8FA;
}

/* ===============================
   TYPOGRAPHY
   =============================== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  color: var(--primary);
  letter-spacing: 0.01em;
  line-height: 1.18;
  font-weight: 700;
}
h1 { font-size: 2.5rem; margin-bottom: 20px; }
h2 { font-size: 2rem; margin-bottom: 18px; }
h3 { font-size: 1.375rem; margin-bottom: 14px; }
h4, h5, h6 { font-size: 1.1rem; margin-bottom: 12px; }
p, li, span, label {
  font-size: 1.06rem;
  font-family: 'Open Sans', Arial, sans-serif;
  color: var(--text);
  font-weight: 400;
}
strong { font-weight: 700; }

@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.4rem; }
  p, li, span, label { font-size: 1rem; }
}

/* ===============================
   LAYOUT CONTAINERS
   =============================== */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  background: var(--pastel-gray);
  border-radius: 24px;
  box-shadow: 0 8px 32px 0 rgba(100,115,140,0.07);
  padding: 36px 28px 32px 28px;
  margin: 24px 0;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
@media (max-width: 600px) {
  .content-wrapper { padding: 22px 8px 18px 8px; border-radius: 12px; }
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--pastel-blue);
  border-radius: 18px;
  box-shadow: 0 5px 22px 0 rgba(100,115,140,0.10);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-width: 260px;
  max-width: 350px;
  transition: box-shadow 0.25s, transform 0.22s;
}
.card:hover {
  box-shadow: 0 12px 32px 0 rgba(50,60,95,0.16);
  transform: translateY(-4px) scale(1.01);
}
.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-lavender);
  border-radius: 20px;
  box-shadow: 0 3px 20px 0 rgba(146,136,255,0.08);
  margin-bottom: 20px;
  flex-direction: column;
  transition: box-shadow 0.2s, transform 0.18s;
}
.testimonial-card:hover {
  box-shadow: 0 8px 28px 0 rgba(147,144,185,0.22);
  transform: translateY(-2px) scale(1.01);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
@media (max-width: 768px) {
  .text-image-section { flex-direction: column; gap: 16px; }
  .container { padding: 0 8px; }
  .section { padding: 28px 6px; margin-bottom: 38px; }
  .content-grid, .card-container { gap: 12px; }
}
/* Utility, prevent overlap */
.mb-20 { margin-bottom: 20px; }
.mb-32 { margin-bottom: 32px; }
.mt-24 { margin-top: 24px; }

/* ===============================
   HEADER & NAVIGATION
   =============================== */
header {
  background: var(--white);
  box-shadow: 0 2px 20px 0 rgba(80,130,180,0.05);
  padding: 0;
  z-index: 102;
  position: sticky;
  top: 0;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
}
header img { max-height: 54px; margin-right: 24px; }
.main-nav {
  display: flex;
  gap: 28px;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 550;
  font-size: 1.09rem;
  color: var(--primary);
  padding: 7px 14px;
  border-radius: 7px;
  transition: background 0.18s, color 0.18s;
  letter-spacing: 0.01em;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--pastel-blue);
  color: var(--accent);
}
.cta-btn {
  background: var(--accent);
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  padding: 11px 28px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 1.08rem;
  box-shadow: 0 4px 18px 0 rgba(160,140,60,0.09);
  margin-left: 18px;
  transition: background 0.16s, transform 0.16s, box-shadow 0.18s;
  border: none;
  display: inline-block;
}
.cta-btn:hover, .cta-btn:focus {
  background: #b99027;
  color: var(--white);
  transform: translateY(-1px) scale(1.02);
  box-shadow: 0 9px 24px 0 rgba(190,165,80,0.14);
}
.mobile-menu-toggle {
  background: var(--pastel-rose);
  color: var(--primary);
  border: none;
  border-radius: 10px;
  padding: 7px 12px;
  font-size: 2rem;
  line-height: 1.1;
  cursor: pointer;
  display: none;
  margin-left: 22px;
  transition: background 0.13s, color 0.13s;
  z-index: 211;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--accent);
  color: var(--white);
}

@media (max-width: 1024px) {
  .main-nav { gap: 13px; }
  .cta-btn { padding: 10px 19px; margin-left: 8px; font-size: 1rem; }
}
@media (max-width: 830px) {
  header .container { padding: 12px 8px; }
}
@media (max-width: 768px) {
  .main-nav, .cta-btn { display: none; }
  .mobile-menu-toggle { display: block; }
}

/* ===============================
   MOBILE SLIDE MENU
   =============================== */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: rgba(255,255,255,0.94);
  box-shadow: 0 6px 36px 0 rgba(23,68,86,0.10);
  z-index: 300;
  transform: translateX(-110vw);
  transition: transform 0.35s cubic-bezier(0.63, 0.11, 0.28, 1.00);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding-top: 20px;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu-close {
  background: var(--pastel-rose);
  color: var(--primary);
  font-size: 2rem;
  border-radius: 8px;
  align-self: flex-end;
  margin: 14px 26px 10px 0;
  line-height: 1;
  border: none;
  padding: 5px 12px;
  cursor: pointer;
  z-index: 310;
  transition: background 0.13s, color 0.13s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--accent);
  color: var(--white);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 25px 36px 14px 36px;
}
.mobile-nav a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 550;
  font-size: 1.18rem;
  color: var(--primary);
  padding: 14px 8px;
  border-radius: 8px;
  transition: background 0.18s, color 0.18s;
  letter-spacing: 0.01em;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--pastel-blue);
  color: var(--accent);
}

@media (min-width: 769px) {
  .mobile-menu { display: none !important; }
}

/* ===============================
   MAIN SECTIONS & BUTTONS
   =============================== */
section {
  background: transparent;
  margin-bottom: 60px;
  padding: 40px 0 0 0;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
}
ul {
  margin-bottom: 14px;
}
ul li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  margin-bottom: 15px;
}
ul li img {
  width: 24px;
  height: 24px;
  margin-top: 2px;
}
.text-section {
  margin-bottom: 18px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.address-map {
  background: var(--pastel-yellow);
  border-radius: 11px;
  padding: 13px 16px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 450;
  font-size: 1.01rem;
  color: var(--primary);
  margin-top: 7px;
}

@media (max-width: 600px) {
  section { padding: 24px 0 0 0; margin-bottom: 38px; }
}

/* ===============================
   TESTIMONIAL CARDS & STAR RATING
   =============================== */
.testimonial-card p {
  color: var(--dark);
  font-size: 1.16rem;
  font-weight: 500;
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  margin-bottom: 10px;
  word-break: break-word;
}
.testimonial-card span {
  color: var(--primary);
  font-size: 1.05rem;
  font-family: 'Open Sans', Arial, sans-serif;
  font-weight: 600;
}
.star-rating {
  color: #FFD700;
  font-size: 1.2em;
  margin-left: 6px;
  margin-top: 5px;
  letter-spacing: 2px;
}

/* ===============================
   FOOTER
   =============================== */
footer {
  background: var(--pastel-blue);
  padding: 30px 0 24px 0;
  box-shadow: 0 -2px 18px 0 rgba(130,190,210,0.06);
  margin-top: 28px;
}
footer .container {
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 13px;
}
.footer-nav {
  display: flex;
  gap: 17px;
  margin-bottom: 10px;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-nav a {
  color: var(--primary);
  font-size: 1rem;
  padding: 5px 10px;
  border-radius: 7px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 550;
  transition: background 0.14s, color 0.14s;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: var(--pastel-lavender);
  color: var(--accent);
}
.brand-credits {
  color: var(--primary);
  font-size: 1rem;
  margin-bottom: 5px;
  opacity: 0.86;
}
.footer-contact {
  color: var(--primary);
  font-size: 1rem;
  font-family: 'Open Sans', Arial, sans-serif;
  opacity: 0.9;
}
.footer-contact img {
  width: 20px;
  height: 20px;
  margin: 0 7px 0 0;
  vertical-align: middle;
}
@media (max-width: 600px) {
  footer .container { padding: 0 6px; }
}

/* ===============================
   SOFT PASTEL / DREAMY VISUALS
   =============================== */
.content-wrapper {
  background: linear-gradient(120deg, var(--pastel-blue) 60%, var(--pastel-rose) 100%);
  box-shadow: 0 8px 32px 0 rgba(100,115,140,0.08);
}
.card {
  background: linear-gradient(135deg, var(--pastel-lavender) 85%, var(--pastel-blue) 120%);
  border: none;
}
.testimonial-card {
  background: linear-gradient(110deg, var(--pastel-lavender) 70%, var(--pastel-mint) 120%);
  border: none;
}
.address-map {
  background: linear-gradient(90deg, var(--pastel-yellow) 80%, var(--pastel-rose) 100%);
}
.section {
  background: linear-gradient(120deg, var(--pastel-gray) 85%, var(--pastel-mint) 100%);
}

/* ===============================
   BUTTONS & INTERACTIVES
   =============================== */
button {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 8px;
  transition: background 0.15s, color 0.15s;
}

/* ===============================
   FORMS (if any on pages)
   =============================== */
input, textarea, select {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1.09rem;
  padding: 10px 13px;
  border-radius: 8px;
  border: 1px solid #dedede;
  background: var(--pastel-gray);
  margin-bottom: 16px;
  transition: border 0.15s, background 0.15s;
}
input:focus, textarea:focus, select:focus {
  border: 1.5px solid var(--accent);
  background: var(--pastel-yellow);
}
label {
  font-size: 1rem;
  margin-bottom: 5px;
}

/* ===============================
   COOKIE CONSENT BANNER
   =============================== */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  z-index: 2000;
  background: linear-gradient(90deg, var(--pastel-yellow) 85%, var(--pastel-lavender) 100%);
  box-shadow: 0 -6px 38px 0 rgba(180,150,220,0.10);
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 18px;
  padding: 16px 30px;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  opacity: 1;
  transform: translateY(0);
  transition: transform 0.37s cubic-bezier(.67,.13,.32,1), opacity 0.18s;
}
.cookie-banner.hide {
  transform: translateY(110%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner__text {
  color: var(--primary);
  flex: 1 1 auto;
  min-width: 0;
  font-size: 1rem;
}
.cookie-banner__actions {
  display: flex;
  flex-direction: row;
  gap: 12px;
  align-items: center;
}
.cookie-btn {
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: 20px;
  font-size: 1rem;
  font-weight: 600;
  font-family: 'Montserrat', sans-serif;
  padding: 9px 22px;
  margin: 0 0 0 0;
  cursor: pointer;
  transition: background 0.19s, color 0.14s, box-shadow 0.13s;
  box-shadow: 0 2px 7px 0 rgba(30,80,90,0.09);
}
.cookie-btn:hover, .cookie-btn:focus {
  background: var(--accent);
  color: var(--primary);
}
.cookie-btn--secondary {
  background: var(--pastel-blue);
  color: var(--primary);
  border: 1px solid var(--primary);
}
.cookie-btn--secondary:hover, .cookie-btn--secondary:focus {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}
.cookie-btn--settings {
  background: var(--pastel-lavender);
  color: var(--primary);
  border: 1px solid var(--primary);
}
.cookie-btn--settings:hover, .cookie-btn--settings:focus {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}
@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 14px 13px 16px 13px;
    font-size: 0.93rem;
    gap: 8px;
  }
  .cookie-banner__actions { flex-wrap: wrap; gap: 9px; }
}

/* ===============================
   COOKIE PREFERENCES MODAL
   =============================== */
.cookie-modal {
  position: fixed;
  left: 0; top: 0;
  right: 0; bottom: 0;
  background: rgba(27,40,58, 0.35);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  pointer-events: auto;
  transition: opacity 0.23s;
}
.cookie-modal.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal__content {
  background: linear-gradient(120deg, var(--pastel-blue) 85%, var(--pastel-yellow) 100%);
  border-radius: 22px;
  box-shadow: 0 8px 36px 0 rgba(120,120,200,0.16);
  padding: 34px 26px 26px 26px;
  max-width: 390px;
  width: 95vw;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 16px;
  position: relative;
}
.cookie-modal__close {
  position: absolute;
  right: 18px; top: 10px;
  background: var(--pastel-rose);
  color: var(--primary);
  font-size: 1.8rem;
  border-radius: 8px;
  border: none;
  padding: 5px 12px;
  cursor: pointer;
  z-index: 3200;
  transition: background 0.13s, color 0.13s;
}
.cookie-modal__close:hover, .cookie-modal__close:focus {
  background: var(--accent);
  color: var(--white);
}
.cookie-modal__title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.27rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 3px;
}
.cookie-modal__category {
  margin-bottom: 12px;
  padding: 11px 8px;
  background: var(--pastel-mint);
  border-radius: 12px;
  font-size: 1.05rem;
  font-family: 'Open Sans', Arial, sans-serif;
  display: flex;
  align-items: center;
  gap: 9px;
}
.cookie-modal__category label {
  flex: 1;
  font-size: 1.05rem;
  font-weight: 500;
}
.cookie-modal__category input[type="checkbox"] {
  width: 20px;
  height: 20px;
  accent-color: var(--accent);
  margin-right: 7px;
}
.cookie-modal__footer {
  display: flex;
  flex-direction: row;
  gap: 12px;
  justify-content: flex-end;
}
@media (max-width: 600px) {
  .cookie-modal__content { padding: 24px 6vw 18px 6vw; min-width: 0; }
}

/* ===============================
   MICRO-ANIMATIONS
   =============================== */
a, .cta-btn, .card, .testimonial-card, .cookie-btn, .mobile-menu-toggle, .mobile-menu-close {
  transition: color 0.16s, background 0.19s, box-shadow 0.18s, transform 0.13s;
}

/* ===============================
   UTILITIES & MISC
   =============================== */
::-webkit-scrollbar {
  width: 10px;
  background: var(--pastel-gray);
}
::-webkit-scrollbar-thumb {
  background: var(--pastel-blue);
  border-radius: 6px;
}
::-webkit-input-placeholder { color: #95A8B6; opacity:0.88; }
::-moz-placeholder { color: #95A8B6; opacity:0.88; }
:-ms-input-placeholder { color: #95A8B6; opacity:0.88; }
::placeholder { color: #95A8B6; opacity:0.88; }

/* ========== ACCESSIBILITY & FOCUS STYLES ========== */
:focus {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* ===============================
   FLEXBOX ENFORCEMENT
   =============================== */
/* (No grid, columns, etc anywhere; flex for all layouts) */
/*
  SUMMARY: All layouts use only display: flex, flex-wrap, flex-direction, gap, align-items, justify-content. Elements are protected from overlap by gutters, margin, and gap.
  All content cards/sections always have min 20px vertical/horizontal spacing.
*/
