/* 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;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  line-height: 1.5;
  background: #FAFAFB;
  color: #1C2731;
  -webkit-font-smoothing: antialiased;
  font-family: 'Source Sans Pro', Arial, sans-serif;
  min-height: 100vh;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
ul, ol {
  margin-left: 1.5em;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
}

/* BRAND FONTS */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,800&display=swap');
@import url('https://fonts.googleapis.com/css?family=Source+Sans+Pro:400,600&display=swap');
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #114060;
  letter-spacing: 0.5px;
}
h1 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 16px;
}
h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 12px;
}
h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 8px;
}
h4, h5, h6 {
  font-weight: 600;
}
@media (min-width: 600px) {
  h1 { font-size: 2.6rem; }
  h2 { font-size: 2rem;  }
  h3 { font-size: 1.25rem; }
}

/* COLOR PALETTE - SOFT PASTEL */
:root {
  --primary: #114060;
  --secondary: #F2B134;
  --accent: #F2F2F2;
  --pastel-blue: #A1C6EA;
  --pastel-pink: #FFD5EC;
  --pastel-green: #C3E8BD;
  --pastel-purple: #E3D0E8;
  --pastel-yellow: #FFF3CC;
  --pastel-mint: #DBF4E5;
  --section-bg: #F9FBFF;
  --card-bg: #FFFFFF;
  --hr-dark: #DEDEE3;
  --shadow: 0 4px 24px 0 rgba(120, 137, 168, 0.05), 0 2px 8px 0 rgba(67, 98, 138, 0.09);
  --radius: 18px;
}

/* LAYOUT CONTAINERS */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}
.content-wrapper {
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* SECTION SPACING */
.section,
main > section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--section-bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
main > section:first-of-type {
  margin-top: 16px;
}

/* HEADER */
header {
  padding-top: 14px;
  padding-bottom: 14px;
  background: linear-gradient(90deg, #F2F2F2 0%, #E3D0E8 100%);
  box-shadow: 0 3px 10px 0 rgba(67,100,138, 0.05);
  z-index: 30;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 18px;
}
header img {
  height: 44px;
  width: auto;
}
header nav {
  display: flex;
  align-items: center;
  gap: 22px;
}
header nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: #114060;
  background: none;
  padding: 7px 13px;
  border-radius: 8px;
  transition: background 0.15s, color 0.2s;
}
header nav a:hover, header nav a:focus {
  background: var(--pastel-yellow);
  color: #213748;
}
header .btn.btn-primary {
  margin-left: 16px;
}
.mobile-menu-toggle {
  display: none;
  font-size: 2rem;
  background: none;
  border: none;
  color: #114060;
  cursor: pointer;
  border-radius: 7px;
  width: 45px;
  height: 45px;
  align-items: center;
  justify-content: center;
  transition: background 0.14s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: var(--pastel-blue);
  color: #114060;
}

/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: #fff9fd;
  background: linear-gradient(135deg, #F2F2F2 66%, #FFD5EC 95%);
  z-index: 1003;
  transform: translateX(-100vw);
  transition: transform 0.34s cubic-bezier(.7,.3,.2,1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 30px 34px 28px 26px;
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  font-size: 2.1rem;
  color: #114060;
  width: 40px;
  height: 40px;
  margin-bottom: 14px;
  align-self: flex-end;
  border-radius: 6px;
  transition: background 0.14s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #FFD5EC;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 10px;
  width: 100%;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.2rem;
  padding: 10px 8px;
  border-radius: 8px;
  color: #114060;
  transition: background 0.18s, color 0.2s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--pastel-yellow);
  color: #213748;
}
@media (max-width: 992px) {
  header nav {
    display: none;
  }
  header .mobile-menu-toggle {
    display: flex;
  }
}
@media (max-width: 700px) {
  header .container,
  footer .container {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }
  header img {
    margin-bottom: 7px;
  }
}

/* HERO SECTION */
.hero {
  background: linear-gradient(109deg, #DBF4E5 28%, #E3D0E8 97%);
  min-height: 340px;
  border-radius: var(--radius);
  margin-bottom: 48px;
  display: flex;
  align-items: center;
  box-shadow: 0 4px 24px 0 rgba(120, 137, 168, 0.08);
}
.hero .container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: 100%;
  min-height: 250px;
}
.hero .content-wrapper {
  flex-direction: column;
  gap: 16px;
}
.hero h1 {
  color: #114060;
  font-size: 2.25rem;
  font-weight: 800;
  text-shadow: 0 2px 10px #FFF3CC55;
}
.hero p {
  font-family: 'Source Sans Pro', Arial, sans-serif;
  font-size: 1.15rem;
  color: #3B4B5D;
}
.hero .btn {
  margin-top: 14px;
}

/* BUTTONS */
.btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  padding: 13px 26px;
  border-radius: 24px;
  font-weight: 700;
  text-align: center;
  cursor: pointer;
  border: none;
  box-shadow: 0 4px 16px 0 rgba(220,200,238,0.15);
  letter-spacing: 0.4px;
  display: inline-block;
  transition: background 0.16s, color 0.19s, box-shadow 0.25s;
  margin: 8px 0;
}
.btn-primary {
  background: #114060;
  color: #FFF;
}
.btn-primary:hover, .btn-primary:focus {
  background: #226e9a;
  color: #FFF;
  box-shadow: 0 6px 32px 0 rgba(20,65,98,0.11);
}
.btn-secondary {
  background: #F2B134;
  color: #114060;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: #FFD5EC;
  color: #114060;
  box-shadow: 0 8px 32px 0 rgba(220, 180, 44, 0.11);
}

/* FEATURES GRID & FLEX CARDS  */
.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 14px;
  margin-bottom: 4px;
  justify-content: space-between;
}
.features-grid > div {
  flex: 1 1 204px;
  background: #FFF;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 26px 22px 20px 22px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  min-width: 215px;
  transition: box-shadow 0.18s, transform 0.26s;
}
.features-grid > div:hover {
  box-shadow: 0 8px 36px 0 rgba(120, 130, 180, 0.13);
  transform: translateY(-3px) scale(1.018);
}
.features-grid img {
  height: 46px;
  width: 46px;
  margin-bottom: 5px;
}

/* TESTIMONIALS */
.testimonials-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 14px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: linear-gradient(97deg, #F9FBFF 84%, #FFD5EC 101%);
  border-radius: var(--radius);
  margin-bottom: 20px;
  box-shadow: var(--shadow);
  min-width: 240px;
  max-width: 430px;
  flex: 1 1 260px;
  z-index: 1;
  position: relative;
}
.testimonial-card p {
  font-size: 1rem;
  color: #213748;
}
.testimonial-meta {
  font-family: 'Source Sans Pro', Arial, sans-serif;
  font-size: 0.95rem;
  color: #114060;
  font-weight: 600;
}
.testimonial-rating {
  font-size: 1.15rem;
  color: #F2B134;
  margin-top: -4px;
}

/* CARD CONTAINER FLEX PATERNS */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--card-bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  padding: 22px 18px;
  position: relative;
}
.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;
}

/* LISTS */
ul.services-list {
  list-style: disc inside;
  margin-bottom: 18px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
ul.services-list li {
  background: #FFF;
  border-radius: 12px;
  box-shadow: 0 1px 10px 0 #E3D0E899;
  padding: 16px 22px 13px 18px;
  margin-bottom: 12px;
  transition: box-shadow 0.18s, transform 0.16s;
}
ul.services-list li:hover {
  box-shadow: 0 8px 36px 0 #E3D0E866;
  transform: scale(1.012);
}

/* TEXT SECTION */
.text-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: #fff;
  padding: 24px 18px;
  border-radius: 14px;
  box-shadow: 0 6px 24px 0 rgba(172, 182, 180, 0.06);
  color: #2B3443;
}

/* MAP PLACEHOLDER */
.google-map-placeholder {
  background: var(--pastel-blue);
  color: #114060;
  border-radius: 12px;
  padding: 24px 0 22px 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-style: italic;
}

/* FOOTER */
footer {
  margin-top: 60px;
  background: linear-gradient(99deg, #E3D0E8 22%, #DBF4E5 91%);
  border-radius: var(--radius) var(--radius) 0 0;
  box-shadow: 0 -2px 16px 0 rgba(130, 120, 140, 0.07);
  padding: 30px 0 8px 0;
}
footer .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
footer nav {
  display: flex;
  gap: 22px;
}
footer nav a {
  font-size: 1rem;
  color: #114060;
  background: none;
  padding: 5px 10px;
  border-radius: 6px;
  transition: background 0.13s, color 0.14s;
}
footer nav a:hover, footer nav a:focus {
  background: var(--pastel-blue);
  color: #226e9a;
}
.brand-footer {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand-footer img {
  height: 30px;
  width: auto;
}
.brand-footer span {
  color: #213748;
  font-size: 0.97rem;
  font-family: 'Source Sans Pro', Arial, sans-serif;
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: linear-gradient(90deg, #FFF3CC 70%, #FFD5EC 97%);
  color: #213748;
  z-index: 1100;
  padding: 20px 18px 16px 18px;
  box-shadow: 0 -2px 14px 0 rgba(190,175,190,0.09);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 1rem;
}
.cookie-banner p {
  flex: 1 1 190px;
  font-size: 1rem;
  line-height: 1.4;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.cookie-banner .btn {
  min-width: 110px;
  font-size: 0.98rem;
  box-shadow: none;
  border-radius: 18px;
  font-weight: 700;
  padding: 8px 19px;
  background: #DBF4E5;
  color: #114060;
}
.cookie-banner .btn.accept {
  background: #C3E8BD;
  color: #114060;
}
.cookie-banner .btn.reject {
  background: #FFD5EC;
  color: #114060;
}
.cookie-banner .btn.settings {
  background: #FFF3CC;
  color: #114060;
}
.cookie-banner .btn:hover, .cookie-banner .btn:focus {
  filter: brightness(0.97);
}

/* COOKIE MODAL */
.cookie-modal-backdrop {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(230, 218, 248, 0.37);
  z-index: 1150;
  display: none;
  align-items: center;
  justify-content: center;
  transition: opacity 0.19s;
}
.cookie-modal-backdrop.active {
  display: flex;
}
.cookie-modal {
  background: #fff;
  border-radius: 20px;
  max-width: 405px;
  min-width: 282px;
  padding: 31px 24px 20px 24px;
  box-shadow: 0 8px 40px 0 #E3D0E8DD;
  z-index: 1160;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.cookie-modal h2 {
  font-size: 1.25rem;
}
.cookie-modal .cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 1rem;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 11px;
}
.cookie-modal input[type=checkbox] {
  width: 20px;
  height: 20px;
  accent-color: #F2B134;
}
.cookie-modal .cookie-note {
  color: #5d5d5f;
  font-size: 0.95rem;
  margin-left: 33px;
}
.cookie-modal .modal-actions {
  display: flex;
  gap: 14px;
  margin-top: 10px;
}
.cookie-modal .btn {
  min-width: 90px;
  padding: 8px 18px;
  color: #114060;
  border-radius: 16px;
  background: #FFD5EC;
}
.cookie-modal .btn:hover {
  background: #FFF3CC;
  color: #213748;
}
.cookie-modal .btn.cancel {
  background: none;
  color: #AAA;
}
.cookie-modal .btn.cancel:hover {
  background: #F2F2F2;
}
.cookie-modal .cookie-close {
  position: absolute;
  right: 14px;
  top: 13px;
  background: none;
  color: #A9A2B7;
  border: none;
  font-size: 1.6rem;
  cursor: pointer;
  padding: 1px 8px;
  border-radius: 7px;
}
.cookie-modal .cookie-close:hover, .cookie-modal .cookie-close:focus {
  background: #FFD5EC;
}

/* ADDITIONAL COMPONENT STYLES */
.section ul {
  margin-top: 8px;
  margin-bottom: 8px;
}
.section ul li {
  margin-bottom: 8px;
  font-size: 1rem;
}

a:focus {
  outline: 2px solid var(--pastel-blue);
  outline-offset: 2px;
}
.btn:focus {
  outline: 2px solid var(--pastel-blue);
  outline-offset: 2px;
}
@media (max-width: 768px) {
  .section,
  main > section {
    margin-bottom: 42px;
    padding: 24px 7vw;
  }
  .container {
    padding-left: 9px;
    padding-right: 9px;
  }
  .features-grid {
    flex-direction: column;
    gap: 21px;
  }
  .features-grid > div {
    min-width: 80vw;
    max-width: 92vw;
  }
  .testimonials-slider {
    flex-direction: column;
    gap: 14px;
  }
  .testimonial-card {
    max-width: 97vw;
    min-width: 0;
  }
  .content-wrapper {
    gap: 14px;
  }
  .google-map-placeholder {
    padding: 15px 0 10px 0;
  }
}
@media (max-width: 520px) {
  h1 {
    font-size: 1.5rem;
  }
  h2 {
    font-size: 1.18rem;
  }
  .btn, .btn-primary, .btn-secondary {
    padding: 10px 12px;
    font-size: 0.96rem;
  }
  .features-grid > div {
    padding: 16px 7px 13px 10px;
  }
  .section, main > section {
    padding: 13px 0 16px 0;
  }
  .cookie-modal {
    min-width: 90vw;
    padding: 12px 7vw 12px 7vw;
  }
}

/* ANIMATIONS + TRANSITIONS */
.cookie-banner, .mobile-menu, .cookie-modal {
  transition: all 0.32s cubic-bezier(.68,.01,.47,0.99);
}

/* MICRO-INTERACTIONS */
.btn, .btn-primary, .btn-secondary, header nav a, .mobile-nav a {
  transition: background 0.2s, color 0.2s, box-shadow 0.33s;
}
.features-grid > div, ul.services-list li, .card {
  transition: box-shadow 0.21s, transform 0.19s;
}
.features-grid > div:hover, ul.services-list li:hover, .card:hover {
  box-shadow: 0 8px 32px 0 #A1C6EA66;
  transform: translateY(-3px) scale(1.012);
}

/* FORMS (for future/consent modal) */
input[type="text"], input[type="email"], textarea {
  padding: 10px 16px;
  border-radius: 7px;
  border: 1px solid #E3D0E8;
  background: #F4F3FF;
  color: #213748;
  font-size: 1rem;
  margin-bottom: 12px;
  transition: box-shadow 0.14s, border 0.13s;
}
input[type="text"]:focus, input[type="email"]:focus, textarea:focus {
  box-shadow: 0 4px 14px 0 #E3D0E855;
  border-color: #A1C6EA;
}

/* TYPOGRAPHY BASE */
p {
  font-size: 1.08rem;
  color: #213748;
}
em {
  color: #5D689A;
  font-style: italic;
}
strong {
  color: #114060;
  font-weight: 700;
}

/* ACCESSIBILITY + CONTRAST */
.testimonial-card, .testimonial-card p, .testimonial-meta {
  color: #213748 !important;
}

/* Remove unwanted absolute position except for close icons and modals */

/* SPACINGS FOR CARDS/SECTIONS */
.section > .container > .content-wrapper > div:not(:last-child),
.section > .container > .content-wrapper > ul:not(:last-child),
.section > .container > .content-wrapper > .features-grid:not(:last-child),
.features-grid > div:not(:last-child),
ul.services-list li:not(:last-child),
.testimonials-slider > .testimonial-card:not(:last-child) {
  margin-bottom: 20px !important;
}

/* VISUAL HIERARCHY (Typography Scale) */
/* 1rem = 16px, 1.25rem = 20px, 1.5rem = 24px, 2rem = 32px */

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