/* ===== CSS RESET & BASE ==== */
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; }
:root {
  --primary: #1D2234;
  --secondary: #D2E3F8;
  --accent: #2BA198;
  --pastel-pink: #F7D6E0;
  --pastel-yellow: #FFF7D6;
  --pastel-mint: #D8F5EB;
  --pastel-blue: #E0F1FB;
  --pastel-lavender: #E7E6FB;
  --neutral-white: #FFFFFF;
  --neutral-grey: #F5F5F7;
  --shadow: 0 4px 24px 0 rgba(96, 114, 158, 0.09);
  --border-radius: 18px;
  --font-display: 'Montserrat', Arial, sans-serif;
  --font-body: 'Roboto', Arial, sans-serif;
}
[hidden] { display: none !important; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--primary);
  background: var(--pastel-blue);
  min-height: 100vh;
  line-height: 1.6;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
}
img { max-width: 100%; display: block; }
a { color: var(--accent); text-decoration: none; transition: color 0.2s; }
a:hover, a:focus { color: var(--primary); text-decoration: underline; }
ul, ol { margin-left: 24px; list-style: disc; }
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--primary);
  font-weight: 700;
  letter-spacing: 0.01em;
}
h1 { font-size: 2.5rem; margin-bottom: 20px; line-height: 1.14; }
h2 { font-size: 2rem; margin-bottom: 20px; line-height: 1.15; }
h3 { font-size: 1.4rem; margin-bottom: 12px; line-height: 1.2; font-weight:600; }

p { margin-bottom: 15px; }
strong { font-weight: 700; }

.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
@media (max-width: 600px) {
  .section {
    padding: 32px 4vw;
    margin-bottom: 36px;
  }
}

/* ==== FLEXBOX LAYOUTS === */
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--neutral-white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  padding: 32px 24px;
  transition: box-shadow 0.2s, transform 0.22s;
}
.card:hover {
  box-shadow: 0 4px 36px 0 rgba(43,161,152,0.12);
  transform: translateY(-4px) scale(1.02);
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ===== BUTTONS ===== */
.cta-btn, .cta-nav-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: var(--neutral-white);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.08rem;
  padding: 13px 32px;
  border-radius: 35px;
  border: none;
  box-shadow: 0 2px 10px 0 rgba(43,161,152,0.09);
  cursor: pointer;
  transition: background 0.20s, box-shadow 0.20s, transform 0.22s;
  margin-top: 12px;
  margin-bottom: 8px;
}
.cta-btn:active, .cta-btn:focus, .cta-nav-btn:active, .cta-nav-btn:focus {
  outline: none;
  background: #18887b;
  box-shadow: 0 4px 24px 0 rgba(43,161,152,0.19);
}
.cta-btn:hover, .cta-nav-btn:hover {
  background: #18887b;
  transform: translateY(-2px) scale(1.01);
}
.cta-nav-btn {
  margin-left: 30px;
  min-width: 180px;
}

.button, button, input[type="submit"] {
  font-family: var(--font-display);
  border: none;
  outline: none;
  background: var(--accent);
  color: var(--neutral-white);
  padding: 12px 28px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 30px;
  cursor: pointer;
  transition: background 0.18s, transform 0.18s;
}
.button:hover, button:hover, input[type="submit"]:hover {
  background: #24b8a3;
  transform: translateY(-2px) scale(1.02);
}

/* ====== HEADER & NAV ======= */
header {
  background: var(--pastel-lavender);
  box-shadow: 0 2px 12px 0 rgba(29,34,52,0.06);
  position: sticky;
  top: 0; left: 0; right: 0;
  z-index: 40;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 14px 10px;
  min-height: 70px;
}
.main-nav img {
  max-height: 38px;
  margin-right: 22px;
}
.main-nav a {
  color: var(--primary);
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.06rem;
  transition: color 0.2s;
  border-radius: 15px;
  padding: 7px 15px;
}
.main-nav a:hover, .main-nav a.active {
  color: var(--accent);
  background: var(--pastel-mint);
}
.mobile-menu-toggle {
  display: none;
  position: absolute;
  right: 22px;
  top: 20px;
  z-index: 60;
  background: var(--accent);
  color: var(--neutral-white);
  border: none;
  width: 44px;
  height: 44px;
  font-size: 2.2rem;
  border-radius: 50%;
  box-shadow: 0 2px 18px 0 rgba(43,161,152,0.11);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  transition: background 0.18s;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: #24b8a3;
  outline: none;
}
@media (max-width: 1024px) {
  .main-nav {
    gap: 14px;
    padding-left: 6px;
    padding-right: 6px;
  }
  .cta-nav-btn {
    margin-left: 10px;
    padding: 11px 18px;
    min-width: 120px;
  }
}
@media (max-width: 850px) {
  .main-nav a:not(:first-child):not(.cta-nav-btn) { display:none; }
  .cta-nav-btn { display:none; }
  .mobile-menu-toggle {
      display: flex;
      margin: 0;
  }
  .main-nav {
    flex-direction: row;
    justify-content: space-between;
    gap: 0;
  }
}
/* === MOBILE SLIDE MENU === */
.mobile-menu {
  position: fixed;
  top: 0; right: 0;
  width: 90vw;
  max-width: 400px;
  height: 100vh;
  background: var(--neutral-white);
  box-shadow: -4px 0 32px 0 rgba(29,34,52,0.11);
  z-index: 1000;
  transform: translateX(100%);
  transition: transform 0.31s cubic-bezier(.77,0,.18,1);
  display: flex;
  flex-direction: column;
  padding: 28px 36px 24px 24px;
  gap: 32px;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu-close {
  align-self: flex-end;
  background: var(--accent);
  color: var(--neutral-white);
  border: none;
  border-radius: 50%;
  width: 38px; height: 38px;
  font-size: 1.6rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 18px 0 rgba(43,161,152,0.09);
  cursor:pointer;
  transition: background 0.2s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #18887b;
  outline:none;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 18px;
}
.mobile-nav a {
  color: var(--primary);
  font-family: var(--font-display);
  font-size: 1.18rem;
  padding: 12px;
  border-radius: 13px;
  background: var(--pastel-blue);
  margin: 0 0 10px 0;
  transition: background 0.13s, color 0.13s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--accent);
  color: var(--neutral-white);
}
@media (min-width:851px) {
  .mobile-menu, .mobile-menu-toggle { display:none !important; }
}

/* ====== HERO SECTIONS ====== */
section:first-of-type {
  background: linear-gradient(135deg, var(--pastel-blue) 60%, var(--pastel-mint) 100%);
  border-bottom-left-radius: 52px;
  border-bottom-right-radius: 52px;
  box-shadow: 0 8px 36px 0 rgba(210,227,248,0.17);
}
@media (max-width:600px) {
  section:first-of-type {
    border-radius: 0 0 22px 22px;
  }
}

/* ==== FEATURE & SERVICE CARDS ==== */
.feature-grid, .service-list, .benefit-list, .case-study-list, .blog-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.feature-grid > div, .service-list > div, .benefit-list > div {
  background: var(--neutral-white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  padding: 30px 22px 28px 22px;
  flex: 1 1 220px;
  min-width: 230px;
  max-width: 360px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  transition: box-shadow 0.2s, transform 0.22s, background 0.2s;
  margin-bottom: 20px;
}
.feature-grid > div:hover, .service-list > div:hover, .benefit-list > div:hover {
  background: var(--pastel-mint);
  box-shadow: 0 4px 22px 0 rgba(43,161,152,0.09);
  transform: translateY(-3px) scale(1.01);
}
.service-list .price {
  font-weight: bold;
  color: var(--accent);
  font-size: 1.05rem;
  margin-top: 5px;
  margin-bottom: 0;
}
@media (max-width:768px) {
  .feature-grid, .service-list, .benefit-list {
    flex-direction: column;
    gap: 16px;
    align-items: stretch;
  }
}

/* ====== TESTIMONIALS ===== */
.testimonials-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 16px;
  margin-bottom: 10px;
  align-items: stretch;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  background: var(--secondary);
  color: #232942;
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 20px 26px 18px 26px;
  min-width: 230px;
  max-width: 390px;
  flex: 1 1 260px;
  font-size: 1.09rem;
  position: relative;
  margin-bottom: 20px;
  transition: box-shadow 0.18s, background 0.18s, transform 0.22s;
}
.testimonial-card:hover {
  box-shadow: 0 4px 20px 0 rgba(43,161,152,0.07);
  background: var(--pastel-pink);
  transform: translateY(-3px);
}
.testimonial-card p {
  color: var(--primary);
  font-style: italic;
  margin-bottom: 11px;
}
.testimonial-card span {
  font-size: 1em;
  color: #444658;
  font-family: var(--font-display);
  font-weight: 600;
  align-self: flex-end;
  opacity: .87;
  margin-top: -8px;
}

/* ==== FAQ ACCORDION, BLOGS, TAGS ==== */
.faq-accordion, .blog-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 13px;
}
.faq-accordion > div, .blog-list > div {
  background: var(--neutral-white);
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 14px 23px 14px 20px;
  flex: 1 1 260px;
  min-width: 230px;
  max-width: 420px;
  margin-bottom: 20px;
  cursor: pointer;
  transition: background 0.18s, box-shadow 0.18s, transform 0.21s;
}
.faq-accordion > div:hover, .blog-list > div:hover {
  background: var(--pastel-yellow);
  box-shadow: 0 3px 20px 0 rgba(247,214,224,.13);
  transform: translateY(-2px);
}
.tags-list {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 16px;
  list-style: none;
}
.tags-list li, .tag {
  background: var(--pastel-pink);
  color: var(--primary);
  padding: 7px 16px;
  border-radius: 20px;
  font-size: 0.98rem;
  font-family: var(--font-display);
  font-weight: 500;
}

/* ==== TEXT SECTIONS, MISC CARDS ==== */
.text-section {
  background: transparent;
  color: var(--primary);
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 18px;
  font-size: 1.01em;
}
.quick-contact-info, .contact-details, .opening-hours {
  display: flex;
  flex-direction: row;
  gap: 12px;
  align-items: center;
  margin-top: 9px;
  flex-wrap: wrap;
}
.quick-contact-info img, .contact-details img, .opening-hours img {
  width: 20px;
  height: 20px;
  opacity: .82;
  margin: 0 3px 0 0;
}
.map-location {
  margin-top: 13px;
  font-size: 1em;
  color: #32334A;
}

/* ===== FOOTER ===== */
footer {
  background: var(--pastel-lavender);
  margin-top: 50px;
  padding: 38px 18px 24px 18px;
  border-top-left-radius: 34px;
  border-top-right-radius: 34px;
  font-size: 1rem;
  box-shadow: 0 -4px 28px 0 rgba(210,227,248,0.09);
}
.footer-nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 18px;
  justify-content: center;
}
.footer-nav a {
  color: var(--primary);
  padding: 8px 16px;
  border-radius: 15px;
  transition: background 0.13s, color 0.13s;
  font-family: var(--font-display);
  font-weight: 500;
}
.footer-nav a:hover { background: var(--pastel-mint); color: var(--accent); }
.footer-contact {
  text-align: center;
  margin-bottom: 12px;
  color: #556;
  font-size: 0.97em;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  color: #8889b8;
  font-size: 0.93em;
}
.footer-brand img {
  height: 35px;
  margin-bottom: 6px;
  opacity: .93;
}

/* === MISC === */
.navigation-links {
  margin-top: 18px;
  font-size: 1.04em;
  color: var(--accent);
}
.navigation-links a {
  color: var(--accent);
  font-weight: 700;
  padding: 6px 9px;
  border-radius: 10px;
}
.navigation-links a:hover { background: var(--pastel-mint); color: var(--primary); }

/* == Cookie Consent Banner == */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: var(--pastel-lavender);
  box-shadow: 0 -8px 26px 0 rgba(210,227,248,0.19);
  padding: 22px 16px 18px 16px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 2100;
  align-items: center;
  font-size: 1.06rem;
  animation: cookieSlideUp 0.33s cubic-bezier(.85,0,.15,1);
}
@keyframes cookieSlideUp {
  from {transform: translateY(60px); opacity:0;}
  to {transform: translateY(0); opacity:1;}
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 7px;
}
.cookie-banner button {
  background: var(--accent);
  color: var(--neutral-white);
  border: none;
  padding: 10px 22px;
  border-radius: 20px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  margin: 2px;
  box-shadow: 0 2px 10px 0 rgba(43,161,152,0.08);
  transition: background 0.18s, transform 0.15s;
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: #24b8a3;
  transform: scale(1.02) translateY(-1px);
  outline: none;
}
.cookie-banner .cookie-settings-btn {
  background: var(--pastel-yellow);
  color: var(--primary);
}
.cookie-banner .cookie-settings-btn:hover,
.cookie-banner .cookie-settings-btn:focus {
  background: var(--pastel-blue);
  color: var(--accent);
}
/* Cookie Modal */
.cookie-modal-overlay {
  position: fixed;
  z-index: 2500;
  left: 0; top:0;
  width: 100vw;
  height: 100vh;
  background: rgba(29,34,52,.21);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeInBg 0.2s;
}
@keyframes fadeInBg {0%{opacity:0} 100%{opacity:1}}
.cookie-modal {
  background: var(--neutral-white);
  border-radius: 20px;
  box-shadow: 0 4px 36px 0 rgba(29,34,52,0.15);
  padding: 36px 30px 30px 30px;
  min-width: 288px;
  max-width: 98vw;
  display: flex;
  flex-direction: column;
  gap: 22px;
  animation: modalSlideDown 0.24s cubic-bezier(.8,0,.2,1);
}
@keyframes modalSlideDown {
  from { transform: translateY(-80px); opacity:0; }
  to { transform: translateY(0); opacity:1; }
}
.cookie-modal h3 {
  margin-bottom: 9px;
  font-size: 1.19rem;
  color: var(--primary);
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 12px;
}
.cookie-category label {
  font-size: 1.08rem;
  flex:1;
  font-weight: 500;
  color: var(--primary);
}
.cookie-category input[type="checkbox"] {
  width: 22px;
  height: 22px;
  accent-color: var(--accent);
  border-radius: 6px;
}
.cookie-modal .cookie-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cookie-modal .close {
  background: none;
  color: var(--primary);
  font-size: 1.24rem;
  border: none;
  position: absolute;
  right: 14px; top: 16px;
  cursor: pointer;
  opacity: .65;
}
.cookie-modal .close:hover {
  opacity: 1;
  color: var(--accent);
}

/* === RESPONSIVE === */
@media (max-width: 1100px) {
  .container { max-width: 96vw; }
}
@media (max-width: 800px) {
  .container { padding-left: 5px; padding-right:5px; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.3rem; }
}
@media (max-width: 600px) {
  .feature-grid > div, .service-list > div, .benefit-list > div, .faq-accordion > div, .testimonials-wrapper > .testimonial-card {
    min-width: 95vw;
    max-width: 100vw;
    padding: 20px 6vw;
  }
  .footer-nav { flex-direction: column; align-items: center; gap:8px; }
  .footer-brand img { height: 28px; }
  .testimonials-wrapper, .feature-grid, .service-list, .benefit-list, .faq-accordion, .blog-list, .case-study-list {
    flex-direction: column;
    gap: 12px;
    align-items: stretch;
  }
}

/* Microinteractions & Focus */
a:focus-visible, .cta-btn:focus-visible, .cta-nav-btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
button:focus-visible {
  outline: 2px solid var(--accent);
}
input, textarea {
  font-family: var(--font-body);
  font-size: 1em;
  border-radius: 9px;
  padding: 11px 15px;
  border: 1.5px solid #BFE3E8;
  background: var(--neutral-white);
  color: var(--primary);
  margin-bottom: 11px;
  transition: border-color 0.15s;
}
input:focus, textarea:focus {
  outline: none;
  border-color: var(--accent);
}
::-webkit-input-placeholder { color: #888cc6cc; }
::-moz-placeholder { color: #888cc6cc; }
:-ms-input-placeholder { color: #888cc6cc; }
::placeholder { color: #888cc6cc; }

/* Animations for subtle fades and scale */
.card, .feature-grid > div, .service-list > div, .benefit-list > div, .faq-accordion > div, .testimonial-card {
  will-change: transform, box-shadow;
  transition: box-shadow 0.22s, background 0.17s, transform 0.23s;
}
.cta-btn, .cta-nav-btn, button, .cookie-banner button {
  transition: background 0.18s, color 0.14s, box-shadow 0.18s, transform 0.15s;
}

/* Scrollbar for modern soft look */
::-webkit-scrollbar {
  width: 10px;
  background: var(--pastel-blue);
}
::-webkit-scrollbar-thumb {
  background: var(--pastel-mint);
  border-radius: 20px;
}

/* Accessibility: focus visible for tabs */
*:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* ========== END ========== */
