/* ====================
   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;
  vertical-align: baseline;
  box-sizing: border-box;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.6;
  background: #F8FBFF;
  color: #2a3c41;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  min-height: 100vh;
  position: relative;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
  border: none;
}
a {
  text-decoration: none;
  color: #05486B;
  transition: color 0.2s;
}
a:focus {
  outline: 2px solid #FDB813;
  outline-offset: 2px;
}
ul {
  list-style: none;
}

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

/* ========================
   BRAND COLOR PALETTE
   ======================== */
:root {
  --color-primary: #05486B;
  --color-secondary: #BFD8E6;
  --color-accent: #FDB813;
  --color-bg: #F8FBFF;
  --color-surface: #FFFFFF;
  --color-pastel-blue: #CAE6F6;
  --color-pastel-violet: #e6e0f7;
  --color-pastel-pink: #FFE7F0;
  --color-pastel-yellow: #FFF9DF;
  --color-grey: #DAE2EF;
  --color-grey-dark: #415054;
  --color-success: #A8D5BA;
  --color-danger: #F8B9B8;
  --color-shadow: 0 3px 24px rgba(80,116,160,0.10);
}

/* =============
   CONTAINER
   ============= */
.container {
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ======================
   TYPOGRAPHY
   ======================
   Display: Montserrat
   Body:    Roboto
*/
h1, h2, h3, h4, h5 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #05486B;
  letter-spacing: -0.02em;
}
h1 {
  font-size: 2.75rem;
  margin-bottom: 24px;
  line-height: 1.12;
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  line-height: 1.15;
}
h3 {
  font-size: 1.375rem;
  margin-bottom: 14px;
}
h4 {
  font-size: 1.2rem;
  margin-bottom: 12px;
}
p, li, ul, ol, .content-wrapper p {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: #38546c;
  margin-bottom: 16px;
  letter-spacing: 0.01em;
}
strong { color: #05486B; font-weight: bold; }

.price {
  color: #05486B;
  background: var(--color-pastel-yellow);
  padding: 0.18em 0.5em;
  border-radius: 8px;
  margin-left: 6px;
  font-size: 0.97em;
  font-weight: 500;
}

/* ======================
   HEADER & NAVIGATION
   ====================== */
header {
  background: linear-gradient(90deg, #CAE6F6 0%, #FFE7F0 100%);
  box-shadow: var(--color-shadow);
  position: sticky;
  top: 0;
  z-index: 101;
}

header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 20px;
}
header nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
header nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 7px 14px;
  border-radius: 7px;
  font-size: 1rem;
  color: #05486B;
  background: transparent;
  transition: background 0.17s, color 0.17s;
}
header nav a:hover, header nav a.active {
  background: var(--color-pastel-blue);
  color: #2B335B;
}

.cta-primary,
.cta-secondary {
  display: inline-block;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.12rem;
  padding: 11px 28px;
  border-radius: 32px;
  border: none;
  cursor: pointer;
  text-align: center;
  color: #05486B;
  margin-left: 18px;
  background: linear-gradient(90deg, #FFF9DF 40%, #CAE6F6 100%);
  box-shadow: 0 2px 10px 0 rgba(192,218,230,0.07);
  transition: color 0.2s, background 0.25s, box-shadow 0.25s;
  outline: none;
  position: relative;
}
.cta-primary:hover,
.cta-primary:focus {
  color: #FDB813;
  background: linear-gradient(90deg, #BFD8E6 45%, #FDB813 100%);
  box-shadow: 0 4px 36px 0 rgba(230,158,50,0.08);
}
.cta-secondary {
  background: var(--color-pastel-blue);
  color: #05486B;
  font-weight: 600;
}
.cta-secondary:hover { background: #BFD8E6; color: #FDB813; }

.mobile-menu-toggle {
  display: none;
  background: var(--color-accent);
  color: #05486B;
  font-size: 2rem;
  border: none;
  border-radius: 50%;
  padding: 8px 10px;
  margin-left: 16px;
  cursor: pointer;
  box-shadow: 0 2px 8px #fddb92a8;
  transition: background 0.18s, box-shadow 0.22s;
}
.mobile-menu-toggle:focus {
  outline: 2px solid #05486B;
}

/* ===============
 MOBILE MENU
 =============== */
.mobile-menu {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: linear-gradient(150deg, #CAE6F6 60%, #FFE7F0 100%);
  box-shadow: 0 0 0 200vw rgba(36,54,100,0.08);
  z-index: 900;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0 36px;
  transform: translateX(-100vw);
  transition: transform 0.35s cubic-bezier(0.5,1,0.7,1.05);
  opacity: 0;
  overflow-y: auto;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: all;
}
.mobile-menu-close {
  background: var(--color-accent);
  color: #05486B;
  font-size: 2.1rem;
  border: none;
  border-radius: 50%;
  padding: 7px 13px;
  cursor: pointer;
  margin: 26px 0 18px auto;
  box-shadow: 0px 2px 8px #e7e1a2b2;
  transition: background 0.18s, box-shadow 0.22s;
}
.mobile-menu-close:hover {
  background: #F8B9B8;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 16px;
}
.mobile-nav a {
  font-size: 1.15rem;
  letter-spacing: 0.02em;
  color: #05486B;
  background: transparent;
  padding: 14px 8px;
  border-radius: 12px;
  transition: background 0.18s, color 0.18s;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
}
.mobile-nav a:hover {
  background: #BFD8E6;
  color: #FDB813;
}


/* Show burger only on mobile */
@media (max-width: 1020px) {
  header .container {
    gap: 10px;
  }
  header nav {
    display: none;
  }
  .cta-primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 1021px) {
  .mobile-menu {
    display: none !important;
  }
}

/* ==============
   HERO SECTION
   ============== */
.hero {
  background: linear-gradient(90deg, #BFD8E6 40%, #FFE7F0 100%);
  min-height: 310px;
  display: flex;
  align-items: center;
  margin-bottom: 60px;
  padding: 40px 0 0 0;
}
.hero .container {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero .content-wrapper h1 {
  color: #05486B;
  margin-bottom: 18px;
}
.hero .content-wrapper p {
  font-size: 1.13rem;
  color: #415054;
  max-width: 500px;
  margin-bottom: 30px;
}
.hero .cta-primary {
  margin-left: 0;
  margin-top: 8px;
}

/* ===============
   SECTIONS
   =============== */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--color-bg);
  border-radius: 30px;
  box-shadow: var(--color-shadow);
  transition: box-shadow 0.2s;
}
section:last-of-type {
  margin-bottom: 0;
}
.content-wrapper {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
  justify-content: center;
  align-items: flex-start;
}
/* Centered variant override */
.content-wrapper[style*='center'] {
  align-items: center !important;
  text-align: center;
}

/* ===============
   Cards & Lists
   =============== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 16px;
}
.card {
  background: var(--color-surface);
  border-radius: 24px;
  box-shadow: var(--color-shadow);
  padding: 30px 24px;
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: box-shadow 0.18s, transform 0.17s;
}
.card:hover {
  box-shadow: 0 5px 24px #bfd8e68e, 0 3px 7px #e6e0f770;
  transform: translateY(-4px) scale(1.013);
}

.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
/* For image-text alignment blocks (if used) */
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.text-section {
  background: var(--color-pastel-blue);
  border-radius: 16px;
  padding: 22px 24px 10px 24px;
  margin-bottom: 18px;
}
.address-map {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--color-pastel-yellow);
  border-radius: 14px;
  padding: 9px 18px;
  margin-bottom: 14px;
  box-shadow: 0 1px 6px #e6e0f774;
}

.blog-teaser {
  background: var(--color-surface);
  border-radius: 22px;
  box-shadow: 0 1px 8px #CAE6F6AA;
  margin-bottom: 20px;
  padding: 20px 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.blog-teaser h2 {
  font-size: 1.4rem;
  color: #243664;
  margin-bottom: 7px;
}
.blog-teaser p {
  color: #4a6076;
}
.blog-readmore {
  display: inline-block;
  color: #FDB813;
  font-weight: 600;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-top: 7px;
  border-bottom: 1.5px dotted #FDB813;
  transition: color 0.19s;
  font-size: 1.01rem;
}
.blog-readmore:hover {
  color: #05486B;
  border-bottom: 1.5px solid #05486B;
}

.client-logos-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 18px;
}
.client-logos-grid img {
  width: 132px;
  max-height: 70px;
  object-fit: contain;
  background: var(--color-pastel-violet);
  border-radius: 10px;
  box-shadow: 0 1px 8px #e6e0f753;
  padding: 8px 12px;
}

.faq-accordion h2 {
  margin-top: 22px;
  font-size: 1.15rem;
  color: #05486B;
  cursor: pointer;
  position: relative;
  padding-right: 28px;
}
.faq-accordion p {
  margin-bottom: 6px;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ===============
   TESTIMONIALS
   =============== */
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: linear-gradient(120deg, #ffe7f0 45%, #CAE6F6 100%);
  padding: 20px;
  border-radius: 20px;
  box-shadow: 0 1px 10px #BFD8E650;
  margin-bottom: 20px;
  flex-direction: column;
  align-items: flex-start;
}
.testimonial-card p {
  margin: 0 0 12px 0;
  color: #243664;
  font-size: 1.08rem;
  font-style: italic;
  line-height: 1.5;
}
.testimonial-card span {
  color: #05486B;
  font-weight: 600;
  font-size: 1rem;
  opacity: 0.92;
  letter-spacing: 0.01em;
}

/* For dark contrast on testimonials (for readability) */
.testimonial-card,
.testimonial-card p,
.testimonial-card span {
  color: #232849;
}

/* ===============
   FOOTER
   =============== */
footer {
  background: linear-gradient(90deg, #FFE7F0 40%, #BFD8E6 100%);
  padding: 36px 0 18px 0;
  border-top: solid 2px #E6E0F7;
  box-shadow: 0 -2px 10px #e6e0f775;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: flex-start;
  justify-content: space-between;
  font-size: 0.99rem;
}
footer nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0 24px 0 0;
}
footer nav a {
  color: #05486B;
  opacity: 0.93;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  transition: color 0.18s;
}
footer nav a:hover { color: #FDB813; }
footer span {
  color: #415054;
  font-size: 1rem;
}
.contact-info p {
  font-size: 0.93rem;
  color: #415054;
  opacity: 0.85;
  line-height: 1.4;
}
footer img[alt*='logo'] {
  margin-bottom: 10px;
  max-width: 56px;
}

/* ===============
   COOKIE BANNER
   =============== */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: linear-gradient(93deg, #FFE7F0 50%, #BFD8E6 100%);
  box-shadow: 0 -2px 20px #BFD8E630;
  color: #05486B;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 20px 20px 20px;
  z-index: 9999;
  animation: cookieSlideIn 0.7s cubic-bezier(0.17,0.67,0.83,0.67);
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  gap: 18px;
}
@keyframes cookieSlideIn {
 from { transform: translateY(140%); opacity: 0; }
 to   { transform: translateY(0); opacity: 1; }
}
.cookie-banner p {
  margin: 0;
  max-width: 480px;
  font-size: 1rem;
  color: #273c5a;
}
.cookie-banner .cookie-btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
}
.cookie-banner button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 22px;
  border: none;
  padding: 8px 22px;
  cursor: pointer;
  margin: 0;
  margin-right: 0;
  transition: background 0.17s, color 0.17s, box-shadow 0.16s;
  box-shadow: 0 1px 8px #F8FBFFA6;
}
.cookie-banner .accept {
  background: #A8D5BA;
  color: #05486B;
}
.cookie-banner .accept:hover {background: #9de2cf;}
.cookie-banner .reject {
  background: #F8B9B8;
  color: #05486B;
}
.cookie-banner .reject:hover {background: #f89e9b;}
.cookie-banner .settings {
  background: #FDB813;
  color: #243664;
}
.cookie-banner .settings:hover {background: #FDB813CC;}

/* ========================
   COOKIE MODAL POPUP
   ======================== */
.cookie-modal {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(20,30,36,0.19);
  z-index: 10001;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.24s;
}
.cookie-modal.open {
  pointer-events: all;
  opacity: 1;
}
.cookie-modal-content {
  background: linear-gradient(106deg, #BFD8E6 65%, #FFE7F0 100%);
  border-radius: 22px;
  box-shadow: 0 4px 50px #CAE6F650;
  padding: 32px 30px 28px;
  max-width: 410px;
  width: 94vw;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
  animation: popupDrop .55s cubic-bezier(0.45,0,0.62,1.01);
}
@keyframes popupDrop {
  from { transform: translateY(-70px) scale(0.89); opacity: 0; }
  to   { transform: translateY(0) scale(1); opacity: 1; }
}
.cookie-modal-content h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.34rem;
  margin-bottom: 11px;
  color: #05486B;
}
.cookie-modal-content .cookie-cat {
  margin-bottom: 14px;
  border-radius: 10px;
  background: #F8FBFF;
  padding: 13px 14px 7px 14px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.cookie-modal-content [type='checkbox'],.cookie-modal-content [type='radio'] {
  margin-right: 7px;
}
.cookie-modal-close {
  position: absolute;
  top: 31px;
  right: 36px;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: #05486B;
  cursor: pointer;
  transition: color 0.19s;
  z-index: 1004;
}
.cookie-modal-close:hover {
  color: #FDB813;
}

/* ===============
   RESPONSIVE
   =============== */
@media (max-width: 900px) {
  .container {
    max-width: 100vw;
    padding: 0 12px;
  }
  section {
    padding: 36px 6px;
    margin-bottom: 44px;
  }
  .content-wrapper {
    gap: 12px;
  }
  .client-logos-grid {
    gap: 12px;
  }
}
@media (max-width: 768px) {
  section {
    padding: 28px 3vw;
    margin-bottom: 32px;
    border-radius: 16px;
  }
  .hero {
    padding: 0;
    min-height: 210px;
  }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.3rem; }
  h3 { font-size: 1.1rem; }
  .card-container, .content-grid, .client-logos-grid {
    gap: 10px;
  }
  .testimonial-card,
  .card {
    padding: 13px 10px;
    border-radius: 14px;
  }
  .mobile-menu {
    padding: 0 13px;
  }
  .address-map {
    padding: 7px 8px;
    border-radius: 8px;
  }
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 13px;
    font-size: 0.96rem;
    padding: 18px 8px 16px 8px;
  }
  .cookie-banner .cookie-btn-group { gap: 7px; }
  .cookie-modal-content {
    padding: 10vw 2vw 5vw 3vw;
    max-width: 97vw;
    border-radius: 14px;
  }
}
@media (max-width: 540px) {
  .hero .content-wrapper h1 { font-size: 1.4rem; }
  footer .container {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
    padding-bottom: 14vw;
  }
}

/* ===============
   FLEX COLUMN for text-image on mobile
   =============== */
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
}

/* ===============
   INTERACTION STATES
   =============== */
.cta-primary, .cta-secondary, .cookie-banner button {
  transition: background 0.18s, color 0.18s, box-shadow 0.17s, transform 0.18s;
}
.cta-primary:active, .cta-secondary:active, .cookie-banner button:active {
  box-shadow: 0 0 0 rgba(0,0,0,0);
  transform: scale(0.98);
}

input, textarea, select, button {
  font-family: inherit;
  font-size: 1rem;
}

/* ======= EXTRAS for SOFT DREAMY PASTEL ====== */
section, .card, .testimonial-card, .content-wrapper, .text-section {
  /* Soft shadow for dreamy effect */
  box-shadow: 0 3px 24px 0 rgba(170,170,190,0.09);
}
section {
  /* Gentle gradient overlay */
  background: linear-gradient(90deg, #FFF9DF 0%, #BFD8E6 100%);
}
.card, .testimonial-card {
  background: linear-gradient(120deg, #F8FBFF 70%, #FFE7F0 110%);
}
section:target {
  box-shadow: 0 0 0 3px #FDB81377;
}

/* Smooth transitions for links & focusable */
a, button, .card, .testimonial-card {
  transition: background 0.14s, color 0.14s, box-shadow 0.16s, border 0.16s, transform 0.13s;
}

/* ===============
   MINIMAL SCROLLBAR
   =============== */
::-webkit-scrollbar {
  width: 8px;
  background: #F8FBFF;
}
::-webkit-scrollbar-thumb {
  background: #dae2ef;
  border-radius: 10px;
}

/* ===============
   FOCUS OUTLINE
   =============== */
*:focus-visible {
  outline: 2px solid #FDB813;
  outline-offset: 1px;
}

/* ===============
   ACCESSIBILITY (High Contrast)
   =============== */
@media (prefers-contrast: more) {
  :root {
    --color-primary: #05486B;
    --color-secondary: #CAE6F6;
    --color-accent: #FDB813;
    --color-bg: #fff;
  }
  body { background: #fff; color: #062b36; }
  section,
  .card, .testimonial-card {
    background: #FFF;
    color: #111;
  }
}

/* END */
