/* ===== 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;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1;
  background: #F5F7FA;
  color: #20425A;
}
ol, ul {
  list-style: none;
}
a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s;
}
img {
  max-width: 100%;
  display: block;
}
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
}
button,
input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  outline: none;
  border: 0;
  background: none;
}

/* ===== BRAND FONTS ===== */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;900&family=Roboto:wght@400;500;700&display=swap');

body {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  background: #F5F7FA;
  color: #20425A;
}
h1, h2, h3, h4 {
  font-family: 'Montserrat', Arial, sans-serif;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.25rem;
  font-weight: 900;
  color: #20425A;
  margin-bottom: 18px;
  line-height: 1.15;
}
h2 {
  font-size: 1.7rem;
  color: #6C943E;
  margin-bottom: 16px;
  margin-top: 30px;
}
h3 {
  font-size: 1.25rem;
  color: #20425A;
  margin-bottom: 10px;
  margin-top: 20px;
}
h4, h5, h6 {
  color: #20425A;
  margin-bottom: 8px;
}
p, li, ol, ul {
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
  line-height: 1.7;
  color: #20425A;
}
strong {
  font-weight: 700;
  color: #20425A;
}

/* ===== LAYOUT ===== */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
  box-sizing: border-box;
}
/* Section Spacing */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
}
.text-section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 2px 14px 0 rgba(108,148,62,0.08), 0 1.5px 5px 0 rgba(32,66,90,0.07);
}
.hero {
  background: #c3e8fa; /* playful dynamic color overlay */
  padding: 56px 0 36px 0;
  border-radius: 0 0 50px 50px;
  position: relative;
  min-height: 300px;
  margin-bottom: 40px;
}
.hero .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  padding: 0 0 10px 0;
}

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

/* Flex Containers */
.card-container, .card-grid, .feature-list, .usp-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.card {
  margin-bottom: 20px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 14px rgba(32,66,90,0.09);
  position: relative;
  transition: box-shadow 0.2s, transform 0.22s;
  padding: 24px 20px;
  min-width: 260px;
  max-width: 100%;
  flex: 1 1 260px;
}
.card:hover {
  box-shadow: 0 6px 30px rgba(32,66,90,0.15), 0 2px 8px rgba(108,148,62,0.1);
  transform: translateY(-5px) scale(1.03) rotate(-0.5deg);
}

.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
}

.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;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  border-radius: 18px;
  background: #fff;
  margin-bottom: 24px;
  box-shadow: 0 2px 12px 0 rgba(32,66,90,0.07), 0 1.5px 5px 0 rgba(108,148,62,0.07);
  border-left: 7px solid #6C943E;
  font-size: 1.08rem;
  transition: box-shadow 0.18s, border-color 0.25s;
}
.testimonial-card strong {
  color: #20425A;
  font-weight: 700;
  font-size: 1.02em;
  margin-top: 4px;
}
.testimonial-card:hover {
  box-shadow: 0 7px 22px 0 rgba(32,66,90,0.13), 0 3px 14px 0 rgba(108,148,62,0.09);
  border-left: 7px solid #f6c700;
}
.testimonials > .container {
  padding-bottom: 0;
}

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

.company-details ul,
.map-snippet ul,
.footer-contact ul,
.feature-list ul, .usp-list ul {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* FAQ & DL */
.faq-section dl {
  width: 100%;
}
.faq-section dt {
  font-weight: 700;
  color: #20425A;
  margin-top: 16px;
}
.faq-section dd {
  color: #2a4247;
  margin-bottom: 10px;
  margin-left: 20px;
}

/* ===== NAVIGATION ===== */
header {
  background: #fff;
  box-shadow: 0 3px 18px 0 rgba(32,66,90,0.07);
  position: sticky;
  top: 0;
  z-index: 31;
  width: 100%;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 70px;
}
.logo img {
  height: 48px;
  width: auto;
  filter: drop-shadow(0 2px 0 #c3e8fa);
  transition: filter 0.2s;
}
.logo:hover img{
  filter: drop-shadow(0 7px 5px #6c943e33);
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 20px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.05rem;
  color: #20425A;
  font-weight: 600;
  letter-spacing: .03em;
  padding: 5px 10px 7px 10px;
  border-radius: 7px;
  background: none;
  transition: background 0.18s, color 0.18s;
  position: relative;
}
.main-nav a:hover, .main-nav a:focus {
  background: #6C943E;
  color: #fff;
}

/* ===== CTA BUTTONS ===== */
.cta-btn, .cta-btn.primary {
  display: inline-block;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 900;
  font-size: 1.08rem;
  color: #fff;
  background: #6C943E;
  padding: 13px 32px;
  border-radius: 26px;
  box-shadow: 1.5px 2.5px 21px 0 rgba(61, 180, 255, 0.09);
  cursor: pointer;
  border: none;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 5px 0 5px 10px;
  transition: background 0.16s, transform 0.16s, box-shadow 0.18s;
  position: relative;
  z-index: 2;
  outline: none;
  text-align: center;
}
.cta-btn.primary:hover, .cta-btn.primary:focus {
  background: #20425A;
  color: #fafbfc;
  transform: scale(1.06) rotate(-1deg);
  box-shadow: 2px 8px 34px 0 rgba(32,66,90,0.13);
}

/* ===== MOBILE NAVIGATION ===== */
.mobile-menu-toggle {
  display: none;
  background: #6C943E;
  color: #fff;
  font-size: 2.1rem;
  border: none;
  border-radius: 45px;
  padding: 7px 16px;
  margin-left: 8px;
  cursor: pointer;
  z-index: 56;
  transition: background 0.13s, color 0.15s, transform 0.18s;
}
.mobile-menu-toggle:active {
  background: #20425A;
  color: #fff000;
  transform: scale(1.08);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #20425A;
  color: #fff;
  z-index: 54;
  padding: 0;
  flex-direction: column;
  align-items: flex-start;
  transition: transform 0.35s cubic-bezier(.85,-0.14,.07,1.17);
  transform: translateX(-100vw);
}
.mobile-menu.open {
  display: flex;
  transform: translateX(0);
  box-shadow: 6px 0 38px 0 rgba(32,66,90,0.17);
}
.mobile-menu-close {
  background: none;
  color: #fff;
  font-size: 2.3rem;
  margin: 25px 0 12px 20px;
  border: none;
  cursor: pointer;
  z-index: 63;
  transition: color 0.14s, background 0.16s;
  align-self: flex-start;
}
.mobile-menu-close:active {
  color: #f6c700;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 10px 0 0 28px;
  width: 100%;
  margin-bottom: 40px;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: .04em;
  font-size: 1.25rem;
  padding: 9px 0;
  border-radius: 12px 60px 60px 12px;
  transition: background 0.17s, color 0.13s;
  margin-right: 30%;
  box-sizing: border-box;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: #6C943E;
  color: #fafbfc;
}

/* ======= FOOTER ======= */
footer {
  background: #20425A;
  color: #fff;
  padding: 40px 0 13px 0;
  border-radius: 50px 50px 0 0;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 30px;
  justify-content: flex-start;
  align-items: flex-start;
}
.footer-nav {
  display: flex;
  gap: 18px;
  margin-bottom: 13px;
}
.footer-nav a {
  color: #f8f9fa;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 10px;
  padding: 5px 11px;
  transition: background 0.17s, color 0.13s;
}
.footer-nav a:hover {
  color: #20425A;
  background: #eafcda;
}
.footer-contact {
  display: flex;
  align-items: center;
  gap: 19px;
  margin-top: 10px;
}
.footer-contact img {
  height: 40px;
  width: auto;
  border-radius: 12px;
  background: #6C943E;
  padding: 8px;
  box-shadow: 0 1.5px 8px 0 rgba(32,66,90,0.06);
}
.footer-contact div {
  color: #fff;
  font-size: .97rem;
  line-height: 1.6;
}
.footer-contact a {
  color: #fde572;
  text-decoration: underline dotted;
  word-break: break-all;
}
.footer-contact a:hover {
  color: #fff;
}

/* ===== INTERACTIVE ELEMENTS ===== */
button {
  transition: background 0.15s, box-shadow 0.13s, color 0.15s;
}
.feature-list li {
  background: #ffe7a9;
  color: #20425A;
  padding: 14px 21px;
  border-radius: 19px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  box-shadow: 0 2px 6px 0 rgba(252,210,17,0.08);
  transition: background 0.12s, transform 0.17s;
  position: relative;
}
.feature-list li img {
  height: 32px;
  width: 32px;
  filter: drop-shadow(0 1.5px 2.5px #20425A33);
}
.feature-list li:hover {
  background: #fcda61;
  color: #20425A;
  transform: scale(1.03) rotate(-1deg);
}
.usp-list li {
  background: #6CD4C3;
  color: #20425A;
  padding: 13px 18px;
  border-radius: 15px;
  margin-bottom: 7px;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  box-shadow: 0 1.5px 5px 0 rgba(108,212,195,0.18)
}
.usp-list li strong { color: #20425A; font-weight: 600; }

/* Service Box */
.service-box {
  background: #f0fdcd;
  padding: 18px 22px;
  border-radius: 17px;
  margin: 18px 0;
  box-shadow: 0 2.5px 7px 0 rgba(108,148,62,0.10);
  color: #20425A;
}

/* Company Details & Map Snippet */
.company-details ul li, .map-snippet ul li {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border-radius: 13px;
  box-shadow: 0 2px 7px 0 rgba(108,148,62,0.09);
  margin-bottom: 7px;
  font-size: 1.04rem;
  padding: 11px 17px;
}
.company-details ul li img,
.map-snippet ul li img {
  height: 28px;
  width: 28px;
}

/* Animation: Floating Icons (decorative, not for cards) */
@keyframes floatIcon {
  0% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-12px) rotate(7deg); }
  100% { transform: translateY(0) rotate(0deg); }
}
.feature-list li img, .company-details ul li img {
  animation: floatIcon 3.2s ease-in-out infinite;
  animation-delay: .2s;
}

/* ===== RESPONSIVE DESIGN & FLEX BEHAVIOR ===== */
@media (max-width: 996px) {
  .container {
    max-width: 96vw;
    padding-left: 10px;
    padding-right: 10px;
  }
  .main-nav {
    gap: 12px;
  }
  .footer-contact {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}
@media (max-width: 788px) {
  h1 {
    font-size: 2.0rem;
  }
  h2 { font-size: 1.35rem; }
  header .container {
    gap: 10px;
    min-height: 58px;
    padding: 6px 0;
  }
}
@media (max-width: 768px) {
  header .main-nav,
  .cta-btn.primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .hero {
    border-radius: 0 0 30px 30px;
    padding: 38px 0 26px 0;
  }
  .section,
  .text-section {
    padding: 25px 9px;
    margin-bottom: 36px;
  }
  .feature-list, .card-container, .card-grid, .usp-list, .company-details ul, .footer-nav {
    flex-direction: column;
    gap: 14px;
  }
  .testimonial-card {
    padding: 16px;
    font-size: 1rem;
  }
  .content-wrapper {
    gap: 12px;
  }
  .footer-contact {
    gap: 9px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
}
@media (max-width: 520px) {
  h1 {
    font-size: 1.25rem;
  }
  h2 {
    font-size: 1.02rem;
  }
  .testimonial-card {
    font-size: .95rem;
    padding: 12px;
  }
  .main-nav {
    font-size: .97rem;
  }
  .cta-btn, .cta-btn.primary {
    padding: 10px 19px;
    font-size: .97rem;
  }
}

/* ===== Accessibility & Contrast for Testimonials ===== */
.testimonials, .testimonial-card {
  background: none;
  color: #20425A;
}
.testimonial-card {
  background: #fff;
}
.testimonial-card p {
  color: #20425A;
}

/* ==== COOKIE CONSENT BANNER ==== */
.cookie-banner {
  display: flex;
  align-items: flex-start;
  flex-direction: row;
  gap: 26px;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  background: #6C943E;
  color: #fff;
  padding: 21px 16px 15px 25px;
  z-index: 99;
  border-top-left-radius: 36px;
  border-top-right-radius: 36px;
  box-shadow: 0 0 32px 0 rgba(32,66,90,0.13);
  animation: cookieIntro 0.7s cubic-bezier(.71,-0.08,.03,1.14);
}
@keyframes cookieIntro {
  0% { transform: translateY(90px); opacity: 0; }
  60% { transform: translateY(-5px); opacity: .84; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-banner-text {
  flex: 1 1 220px;
  font-size: 1.02rem;
  color: #fff;
}
.cookie-banner-btns {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cookie-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.03rem;
  border-radius: 24px;
  border: none;
  padding: 11px 25px;
  background: #ffe47a;
  color: #20425A;
  margin-bottom: 0px;
  cursor: pointer;
  box-shadow: 0 1.5px 5px 0 rgba(32,66,90,0.08);
  transition: background 0.14s, color 0.12s, transform 0.15s;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #20425A;
  color: #fff;
  transform: scale(.98) rotate(-2deg);
}
.cookie-btn.alt {
  background: #fff;
  color: #6C943E;
  border: 1px solid #6C943E;
}
.cookie-btn.settings {
  background: #6CD4C3;
  color: #20425A;
  border: none;
  margin-left: 4px;
}

@media (max-width: 650px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 14px 7px 10px 11px;
    gap: 15px;
  }
  .cookie-banner-btns {
    flex-direction: row;
    gap: 8px;
  }
}

/* ===== COOKIE MODAL ===== */
.cookie-modal-overlay {
  position: fixed;
  z-index: 161;
  left: 0; top: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(32,66,90,0.47);
  display: none;
  align-items: center;
  justify-content: center;
  animation: modalFadeIn 0.37s cubic-bezier(.66,-0.23,.29,1.31);
}
.cookie-modal-overlay.active {
  display: flex;
}
@keyframes modalFadeIn {
  0% { opacity: 0; }
  85% { opacity: 0.9; }
  100% { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  color: #20425A;
  border-radius: 26px;
  box-shadow: 0 8px 40px rgba(32,66,90,0.14);
  padding: 32px 26px 22px 26px;
  width: 97vw;
  max-width: 430px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 17px;
  animation: modalRiseIn 0.36s cubic-bezier(.66,-0.15,.26,1.16);
}
@keyframes modalRiseIn {
  0% { transform: translateY(90px) scale(.8); opacity:0; }
  80% { transform: translateY(-10px) scale(1.04);}
  100% { transform: translateY(0) scale(1); opacity:1; }
}
.cookie-modal .cookie-modal-close {
  position: absolute;
  top: 13px;
  right: 13px;
  background: none;
  border: none;
  color: #6C943E;
  font-size: 2.1rem;
  cursor: pointer;
  z-index: 171;
  transition: color 0.17s;
}
.cookie-modal .cookie-modal-close:hover { color: #f6c700; }
.cookie-modal h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #20425A;
  font-size: 1.22rem;
  margin: 0 0 8px 0;
}
.cookie-modal .cookie-category {
  background: #f6fdee;
  border-radius: 13px;
  padding: 9px 14px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 13px;
  justify-content: space-between;
}
.cookie-modal .cookie-category.always-on {
  background: #ffebb2;
}
.cookie-modal .cookie-category span {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
}
.cookie-modal .toggle-switch {
  position: relative;
  width: 43px;
  height: 25px;
  display: inline-block;
}
.cookie-modal .toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
  position: absolute;
}
.cookie-modal .toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0;
  right: 0; bottom: 0;
  background: #6CD4C3;
  transition: background .2s;
  border-radius: 20px;
}
.cookie-modal .toggle-slider:before {
  position: absolute;
  content: "";
  height: 19px;
  width: 19px;
  left: 3px;
  bottom: 3px;
  background: #fff;
  transition: .2s;
  border-radius: 50%;
  box-shadow: 0 .5px 2px 0 rgba(32,66,90,0.13);
}
.cookie-modal .toggle-switch input:checked + .toggle-slider {
  background: #6C943E;
}
.cookie-modal .toggle-switch input:checked + .toggle-slider:before {
  transform: translateX(18px);
}
.cookie-modal .cookie-modal-actions {
  margin-top: 18px;
  display: flex;
  gap: 12px;
}
.cookie-modal-actions .cookie-btn {
  font-size: 1rem;
  padding: 9px 19px;
}

/* ===== UTILITY CLASSES ===== */
.text-center { text-align: center; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mb-1 { margin-bottom: 8px;}
.mb-2 { margin-bottom: 18px;}
.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ===== PLAYFUL MICRO-ANIMATIONS ===== */
.cta-btn.primary {
  animation: bounceBtn 6.2s infinite cubic-bezier(.24,.84,.45,1.3);
}
@keyframes bounceBtn {
  0%, 80%, 100% {transform: none;}
  90% {transform: scale(1.09) translateY(-4px) rotate(1deg);}
  93% {transform: scale(0.95) translateY(2px) rotate(-2deg);}
}
.feature-list li, .testimonial-card {
  animation: popUpAnim 0.65s cubic-bezier(.58,-0.11,.45,1.27);
  animation-delay: .1s;
}
@keyframes popUpAnim {
  0%{transform: scale(0.89) translateY(25px); opacity:0;}
  85%{transform: scale(1.04) translateY(-8px); opacity:.96;}
  100%{transform: scale(1) translateY(0); opacity:1;}
}

/* ===== PRINT FRIENDLY ===== */
@media print {
  header, footer, .mobile-menu, .cookie-banner, .cookie-modal-overlay { display:none; }
  body, main { background: #fff!important; color:#000!important; }
}

/* END CSS */
