/* =============================================================
   CSS RESET & BASE NORMALIZATION (MOBILE-FIRST)
   ============================================================= */
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 {
  height: 100%;
  background: #F8FAFB;
  scroll-behavior: smooth;
}
body {
  min-height: 100vh;
  line-height: 1.6;
  font-family: 'Roboto', Arial, sans-serif;
  background: #F8FAFB;
  color: #234B63;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 16px;
}
img, svg {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: #234B63;
  text-decoration: none;
  transition: color .2s;
}
a:hover, a:focus {
  color: #F5A623;
  outline: none;
}
ul, ol, dl {
  margin: 0 0 16px 0;
  padding-left: 20px;
}
li {
  margin-bottom: 12px;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  line-height: 1.22;
  color: #234B63;
  margin-bottom: 16px;
}
h1 {
  font-size: 2.4rem;
  letter-spacing: -1px;
  margin-bottom: 20px;
}
h2 {
  font-size: 1.75rem;
  margin-bottom: 18px;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 14px;
}
h4, h5, h6 {
  font-size: 1rem;
}
p {
  margin-bottom: 14px;
  max-width: 700px;
}
blockquote {
  background: rgba(245, 166, 35, 0.07);
  color: #234B63;
  border-left: 4px solid #F5A623;
  padding: 16px 20px;
  border-radius: 16px;
  font-style: italic;
  margin-bottom: 8px;
}
cite {
  display: block;
  margin-top: 4px;
  font-size: 0.98em;
  color: #888FA7;
  font-family: 'Montserrat', Arial, sans-serif;
  font-style: normal;
}
table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
  border-radius: 16px;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(50, 90, 120, 0.04);
}
th, td {
  text-align: left;
  padding: 12px 16px;
  border-bottom: 1px solid #E2EAF1;
}
th {
  background: #F0F8FD;
  color: #234B63;
  font-weight: 600;
}
tr:last-child td { border-bottom: none; }

/* =============================================================
   BASIC LAYOUT
   ============================================================= */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
}

.card-container,
.service-list,
.description-grid,
.card-grid,
.testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.card, .service-list > div, .description-grid > div, .testimonial-list > div {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 12px rgba(80, 120, 150, 0.09);
  margin-bottom: 20px;
  position: relative;
  padding: 24px 20px;
  min-width: 0;
  transition: box-shadow .22s;
  border: 1px solid #F0F8FD;
}
.card:hover, .service-list > div:hover, .description-grid > div:hover {
  box-shadow: 0 6px 32px rgba(80, 120, 150, 0.18);
  transform: translateY(-3px);
}

.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  background: #fff7ec;
  border-radius: 22px;
  padding: 20px;
  box-shadow: 0 2px 14px rgba(245, 166, 35, 0.10);
  color: #1d3144;
  margin-bottom: 20px;
  border: 1.5px solid #ffe4ba;
  min-width: 0;
  transition: box-shadow .16s;
}
.testimonial-card:hover {
  box-shadow: 0 6px 28px rgba(245, 166, 35, 0.18);
}

.star-rating {
  font-size: 1.1em;
  color: #F5A623;
  letter-spacing: 2px;
  margin-top: -4px;
}

.feature-item, .service-list > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

.feature-item img, .service-list img, .description-grid img, .testimonial-card img {
  width: 36px;
  height: 36px;
  margin-bottom: 8px;
}

/* ================================
   HEADER & NAVIGATION
   ================================ */
header {
  background: linear-gradient(90deg, #fffbe5 0%, #f0f4fd 100%);
  box-shadow: 0 2px 22px rgba(202,227,255,0.06);
  position: relative;
  z-index: 30;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 86px;
  gap: 12px;
}
header nav {
  display: flex;
  gap: 22px;
  align-items: center;
}
header nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  color: #234B63;
  font-size: 1.04rem;
  border-radius: 10px;
  padding: 8px 12px;
  letter-spacing: 0.02em;
  transition: background .15s, color .20s;
}
header nav a:hover,
header nav a:focus {
  background: #f6e9ff;
  color: #F5A623;
}
.cta-btn {
  background: linear-gradient(90deg,#fad3b0 0%,#ffdcea 100%);
  color: #234B63;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  padding: 12px 26px;
  margin-left: 10px;
  border-radius: 18px;
  box-shadow: 0 1px 10px rgba(245, 166, 35, 0.08);
  border: none;
  cursor: pointer;
  transition: box-shadow .18s, background .16s, color .2s;
  outline: none;
  display: inline-block;
}
.cta-btn:hover,
.cta-btn:focus {
  background: linear-gradient(90deg,#ffdcea 0%,#fad3b0 100%);
  color: #F5A623;
  box-shadow: 0 4px 28px rgba(245,166,35,0.19);
}

header .mobile-menu-toggle {
  background: none;
  border: none;
  font-size: 2.2rem;
  color: #234B63;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  margin-left: 10px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  transition: background .14s;
  z-index: 1101;
}
header .mobile-menu-toggle:hover {
  background: #FAEDFF;
}

header .mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 90vw;
  max-width: 360px;
  height: 100vh;
  background: linear-gradient(120deg,#FFFFFF 80%, #fbf2ff 100%);
  box-shadow: -5px 0 22px rgba(173,140,255,0.15);
  z-index: 1100;
  transform: translateX(100%);
  transition: transform .33s cubic-bezier(0.86,0,0.07,1);
  display: flex;
  flex-direction: column;
  padding: 32px 28px 28px 28px;
  gap: 34px;
}
header .mobile-menu.open {
  transform: translateX(0);
}
header .mobile-menu-close {
  background: none;
  border: none;
  font-size: 2rem;
  color: #234B63;
  align-self: flex-end;
  padding: 6px;
  cursor: pointer;
  border-radius: 6px;
  transition: background .15s;
}
header .mobile-menu-close:hover {
  background: #FFF4E2;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 16px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1.05rem;
  color: #234B63;
  line-height: 1.6;
  padding: 12px 8px;
  border-radius: 10px;
  transition: background .12s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #ffe2e7;
  color: #F5A623;
}

@media (min-width: 1051px) {
  .mobile-menu, .mobile-menu-toggle { display: none !important; }
}
@media (max-width: 1050px) {
  header nav, header .cta-btn {
    display: none !important;
  }
  header .mobile-menu-toggle {
    display: flex !important;
  }
}

/* ================================
   HERO SECTIONS & SECTION CARDS
   ================================ */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
section .container {
  width: 100%;
  max-width: 950px;
  margin: 0 auto;
  padding-left: 0;
  padding-right: 0;
}

section .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.service-list > div {
  flex: 1 1 270px;
  min-width: 230px;
  max-width: 340px;
}
.service-list h3 {
  margin-top: 8px;
  margin-bottom: 12px;
}
.service-list a {
  color: #F5A623;
  text-decoration: underline;
  font-weight: 500;
  margin-top: 10px;
  transition: color .18s;
}
.service-list a:hover { color: #234B63; }
.price {
  display: inline-block;
  background: #FFD9A2;
  color: #234B63;
  border-radius: 12px;
  padding: 4px 14px;
  margin-top: 8px;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
}

/* ================================
   TESTIMONIALS & REVIEWS
   ================================ */
.testimonial-list {
  gap: 24px;
  flex-wrap: wrap;
}
.testimonial-card {
  min-width: 250px;
  max-width: 400px;
  font-size: 1.07em;
  background: #fff7ec;
  color: #222E3A;
}
.testimonial-card blockquote {
  padding: 0;
  background: transparent;
  border: none;
  color: #234B63;
}
.testimonial-card cite {
  color: #988b72;
  margin-top: 2px;
}
/* Contrast for additional review text */
p, dl, dd {
  color: #234B63;
}

/* ================================
   DESCRIPTION GRID & FEATURES
   ================================ */
.description-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.description-grid > div {
  flex: 1 1 270px;
  min-width: 220px;
  max-width: 350px;
}
.description-grid h3 {
  font-size: 1.12rem;
  margin-bottom: 7px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ================================
   ABOUT, STATS, VALUES SECTIONS
   ================================ */
.content-wrapper ul {
  padding-left: 20px;
}
.content-wrapper li {
  background: rgba(213, 239, 250, 0.1);
  border-radius: 8px;
  margin-bottom: 10px;
  padding: 8px 12px;
  color: #234B63;
}

/* ================================
   FOOTER
   ================================ */
footer {
  background: #F5F7FA;
  color: #234B63;
  padding-top: 22px;
  padding-bottom: 0;
  font-size: 1rem;
}
footer .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 28px 36px;
  align-items: flex-start;
  padding-bottom: 26px;
  border-top: 2px solid #F0F3F9;
  margin-top: 0;
}
footer nav {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
footer nav a {
  font-size: 0.96rem;
  color: #234B63;
  margin-bottom: 0;
  transition: color .18s;
}
footer nav a:hover, footer nav a:focus {
  color: #F5A623;
}
footer .social-media-icons {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 8px;
}
footer p {
  font-size: 0.94em;
  color: #617488;
  margin-top: 16px;
}
.contact-snippet address {
  font-style: normal;
  margin-bottom: 2px;
}
.contact-snippet a {
  color: #F5A623;
  transition: color .14s;
}
.contact-snippet a:hover, .contact-snippet a:focus { color: #234B63; }

/* ================================
   MAPS & SPECIAL IMAGES
   ================================ */
.map img {
  border-radius: 14px;
  box-shadow: 0 2px 16px rgba(120, 140, 180, 0.06);
  margin-top: 16px;
  width: 100%;
}

/* ================================
   RESPONSIVE LAYOUT
   (MOBILE-FIRST, ADJUST FOR WIDER)
   ================================ */
@media (max-width: 900px) {
  .container {
    max-width: 96vw;
    padding-left: 4vw;
    padding-right: 4vw;
  }
  section .container {
    max-width: 100vw;
    padding-left: 0;
    padding-right: 0;
  }
  .service-list, .description-grid, .testimonial-list, .card-container { flex-direction: column; gap: 20px; }
  .card, .service-list > div, .description-grid > div, .testimonial-card { max-width: 100%; min-width: 0; }
  footer .content-wrapper { gap: 18px 24px; }
}
@media (max-width: 768px) {
  header .container { height: 64px; gap: 8px; }
  section, .section { padding: 24px 6vw; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.35rem; }
  h3 { font-size: 1rem; }
  .testimonial-list, .service-list, .description-grid, .card-container { gap: 16px; }
  .testimonial-card, .service-list > div, .description-grid > div, .card { padding: 18px 12px; font-size: 1em; }
  .text-image-section { flex-direction: column; gap: 20px; }
  .content-wrapper { gap: 14px; }
}

/* ================================
   ADAPTIVE SPACING & SECTION HEADINGS
   ================================ */
@media (max-width: 500px) {
  section, .section { padding: 13vw 1vw; }
  h1 { font-size: 1.3rem; }
  h2 { font-size: 1.02rem; }
}

/* ================================
   WHITE SPACE & SHADOWS
   ================================ */
.card, .service-list > div, .description-grid > div, .testimonial-card {
  margin-bottom: 20px;
  box-shadow: 0 2px 12px rgba(80, 120, 150, 0.09);
}

/* ================================
   BUTTONS, MICRO-INTERACTIONS
   ================================ */
button, .cta-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  border: none;
  cursor: pointer;
  transition: background .16s, box-shadow .16s, color .14s;
}
button:focus { outline: 2px solid #F5A623; outline-offset: 1px; }

/* ================================
   COOKIE CONSENT BANNER
   ================================ */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  background: linear-gradient(90deg,#fffbe5 0%, #f0f4fd 100%);
  box-shadow: 0 -2px 22px rgba(202,227,255,0.13);
  z-index: 1500;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 18px 6vw;
  gap: 20px;
  font-size: 1rem;
  border-top: 2px solid #fee0d1;
  animation: cookiebannerfadein .6s;
}
@keyframes cookiebannerfadein {
  from { opacity: 0; transform: translateY(60px); }
  to { opacity: 1; transform: translateY(0); }
}
.cookie-banner__text {
  color: #234B63;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1.04rem;
  margin-right: 18px;
  flex: 1;
  min-width: 0;
}
.cookie-banner__btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.cookie-btn {
  padding: 9px 20px;
  border-radius: 14px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  background: #fff7ec;
  color: #234B63;
  transition: background .15s, color .18s, border .12s;
  border: 1.5px solid #ffd9a0;
  margin: 0;
}
.cookie-btn.accept {
  background: #fad3b0;
  color: #234B63;
  border-color: #ffd49a;
}
.cookie-btn.accept:hover {
  background: #ffe2e7;
  color: #F5A623;
}
.cookie-btn.reject {
  background: #f0f6ff;
  color: #888FA7;
  border-color: #dee8f9;
}
.cookie-btn.reject:hover {
  background: #ffe2e7;
  color: #F5A623;
}
.cookie-btn.settings {
  background: #fff7ec;
  color: #234B63;
  border-color: #ffd49a;
}
.cookie-btn.settings:hover {
  background: #ffe2e7;
  color: #F5A623;
}

/* COOKIE PREFERENCES MODAL */
.cookie-modal {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(70,90,120,0.17);
  backdrop-filter: blur(2px);
  z-index: 1600;
  display: none;
  align-items: center;
  justify-content: center;
  animation: cookiemodalfadein .4s;
}
.cookie-modal.open { display: flex; }
@keyframes cookiemodalfadein {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal__content {
  background: linear-gradient(120deg,#FFFFFF 80%, #fbf2ff 100%);
  border-radius: 26px;
  box-shadow: 0 6px 44px rgba(80, 120, 150, 0.17);
  padding: 44px 32px 30px 32px;
  min-width: 320px;
  max-width: 98vw;
}
.cookie-modal__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}
.cookie-modal__header h3 {
  margin-bottom: 0;
}
.cookie-modal__close {
  background: none;
  border: none;
  font-size: 1.9rem;
  color: #F5A623;
  cursor: pointer;
  padding: 4px 6px;
  border-radius: 8px;
  transition: background .16s;
}
.cookie-modal__close:hover { background: #ffe2e7; }
.cookie-modal__categories {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 16px;
}
.cookie-modal__category {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #f0f4ff;
  border-radius: 16px;
  padding: 14px 16px;
  font-size: 1.03em;
  font-family: 'Montserrat', Arial, sans-serif;
}
.cookie-modal__category .toggle {
  margin-left: 14px;
  width: 42px;
}
.cookie-modal__category.essential {
  opacity: 0.7;
  pointer-events: none;
}
.cookie-modal__actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}

/* Toggle switches */
.toggle {
  width: 42px;
  height: 26px;
  background: #ffe6c7;
  border-radius: 100px;
  position: relative;
  box-shadow: 0 1px 5px rgba(245,166,35,0.08);
  cursor: pointer;
}
.toggle input { display: none; }
.toggle-switch {
  position: absolute;
  top: 2px; left: 2px;
  width: 22px; height: 22px;
  background: #fff;
  border-radius: 50%;
  transition: left .21s, background .16s;
  box-shadow: 0 1px 2px rgba(120, 120, 120, 0.09);
  border: 1px solid #ffd49a;
}
.toggle input:checked + .toggle-switch {
  left: 18px;
  background: #fad3b0;
}

/* ================================
   Visually-hidden for accessibility
   ================================ */
.visually-hidden {
  border: 0 !important;
  clip: rect(0 0 0 0) !important;
  height: 1px !important;
  margin: -1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  width: 1px !important;
  white-space: nowrap !important;
}

/* ================================
   COLOURS – SOFT PASTELS PALETTE
   ================================ */
:root {
  --pm-blue: #234B63;
  --pm-light-blue: #E8F2FE;
  --pm-secondary: #EDEDED;
  --pm-accent: #F5A623;
  --pm-peach: #FFF7EC;
  --pm-dust-lilac: #F5F0FF;
  --pm-powder-pink: #FFDCEA;
  --pm-mint: #D7F7F0;
  --pm-yellow: #FFE2A5;
  --pm-soft-violet: #F6E9FF;
}

section {
  background: linear-gradient(120deg, #FFF7EC 80%, #F6E9FF 100%);
  border-radius: 32px;
  box-shadow: 0 2px 24px rgba(119,122,190,0.04);
  margin-bottom: 60px;
}

/* ================================
   MICRO-ANIMATIONS & TRANSITIONS
   ================================ */
.card, .service-list>div, .description-grid>div, .cta-btn, .testimonial-card {
  transition: box-shadow .18s, transform .15s, color .19s, background .19s;
}
.cta-btn, .cookie-btn, .cookie-modal__close {
  transition: box-shadow .15s, color .13s, background .12s;
}
.card:hover, .service-list>div:hover, .testimonial-card:hover {
  box-shadow: 0 6px 44px rgba(119,122,190,0.14);
  z-index: 3;
}

/* ================================
   UTILITIES
   ================================ */
.text-center { text-align: center; }
.flex-row { display: flex; flex-direction: row; }
.flex-col { display: flex; flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.align-center { align-items: center; }
.align-start { align-items: flex-start; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-20 { gap: 20px; }
.gap-24 { gap: 24px; }
.mb-20 { margin-bottom: 20px; }


/* ================================
   FONTS IMPORT (only if not loaded by HTML already)
   ================================ */
@import url('https://fonts.googleapis.com/css?family=Montserrat:400,500,700&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap');

/* END CSS */
