/* ==== 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,
u, i, center,
dl, dt, dd, menu, 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, 
main, 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;
}
body {
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  background: #111726;
  color: #F4F7FA;
  font-family: 'Roboto', Arial, sans-serif;
  min-height: 100vh;
  position: relative;
  min-width: 320px;
}
@media (max-width: 480px) {
  html {
    font-size: 15px;
  }
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  color: #FFFFFF;
  font-weight: 700;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.75rem;
  margin-bottom: 20px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 18px;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}
h4 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}
p, li, label {
  font-family: 'Roboto', Arial, sans-serif;
  color: #F4F7FA;
  font-size: 1rem;
  line-height: 1.7;
}
strong, b { font-weight: 700; }
a {
  color: #13c063;
  text-decoration: none;
  transition: color 0.24s;
}
a:hover, a:focus {
  color: #52ffb6;
  text-decoration: underline;
}

/* Layout Containers */
.container {
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 18px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
}

/* ========== HEADER ========== */
header {
  background: #141a25;
  border-bottom: 1px solid rgba(36,61,87,0.16);
  position: sticky;
  top: 0;
  z-index: 50;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
  gap: 16px;
}
header a img {
  height: 36px;
}
nav {
  display: flex;
  align-items: center;
  gap: 20px;
}
nav a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  color: #F4F7FA;
  font-size: 1.05rem;
  padding: 6px 12px;
  border-radius: 7px;
  transition: background 0.20s, color 0.20s;
  position: relative;
}
nav a:hover, nav a:focus {
  background: #267B49;
  color: #fff;
  text-shadow: 0 0 6px #10ff89;
}
.cta-primary {
  background: linear-gradient(90deg,#158C4E,#267B49 70%);
  color: #fff;
  border: none;
  border-radius: 24px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.08rem;
  padding: 12px 28px;
  letter-spacing: 0.03em;
  box-shadow: 0 2px 16px rgba(20,255,130,0.14);
  cursor: pointer;
  outline: none;
  transition: background 0.27s, box-shadow 0.27s, transform 0.15s;
  position: relative;
  margin-left: 18px;
}
.cta-primary:hover, .cta-primary:focus {
  background: linear-gradient(90deg, #267B49,#158C4E 80%);
  box-shadow: 0 2px 24px 4px #13c06366;
  color: #fff;
  text-shadow: 0 0 9px #80ffc6;
  transform: scale(1.045);
}

/* Burger mobile menu */
.mobile-menu-toggle {
  display: none;
  font-size: 2.1rem;
  color: #13c063;
  background: transparent;
  border: none;
  border-radius: 9px;
  padding: 6px 12px;
  margin-left: 16px;
  cursor: pointer;
  z-index: 1112;
  transition: background 0.18s, color 0.18s;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: #1c2d44;
  color: #21ff81;
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: fixed;
  top: 0; left: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  background: #161e2e;
  z-index: 2000;
  transform: translateX(-100%);
  transition: transform 0.33s cubic-bezier(.6,.15,.19,1.05);
  box-shadow: 4px 0 24px 0 rgba(18,184,122,0.08);
  overflow-y: auto;
  padding-top: 48px;
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  font-size: 2.2rem;
  color: #13c063;
  background: transparent;
  border: none;
  position: absolute;
  top: 16px;
  right: 22px;
  z-index: 2100;
  transition: color 0.20s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: #fff;
  text-shadow: 0 0 8px #21ffbd;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  width: 100%;
  align-items: flex-start;
  margin: 40px 0 0 28px;
}
.mobile-nav a {
  width: 92%;
  font-size: 1.2rem;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  padding: 16px 0 8px 10px;
  border-bottom: 1px solid #233254;
  border-radius: 0;
  background: none;
  letter-spacing: 0.01em;
  transition: color 0.26s, background 0.18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #267B49;
  color: #fff;
}

@media (max-width: 1100px) {
  header nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 1101px) {
  .mobile-menu {
    display: none !important;
  }
}

/* ========================= HERO ========================= */
.hero {
  background: linear-gradient(110deg,#19324D 75%, #17804f 100%);
  min-height: 240px;
  padding: 60px 0 36px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero .container,
.hero .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.hero h1 { color: #fff; text-shadow: 0 2px 12px #158C4E55; }
.hero .subheadline {
  font-size: 1.22rem;
  color: #dffcf4;
  margin-bottom: 22px;
}

/* ======================== SECTION LAYOUTS ==================== */
.section,
.features,
.services,
.testimonials,
.cta,
.about,
.contact,
.hours,
.legal,
.faq,
.process,
.confirmation {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
  border-radius: 20px;
}
.features,
.about,
.services,
.hours,
.faq {
  background: #161e30;
  box-shadow: 0 2px 39px -10px #1c94301e;
}
.cta {
  background: #158C4E;
  text-align: center;
  color: #fff;
  box-shadow: 0 2px 31px -12px #22db7c34;
}
.confirmation {
  background: #182040;
  box-shadow: 0 3px 39px -12px #0bd76922;
  color: #fff;
  text-align: center;
}

/* ======================== FLEX STRUCTURES ==================== */
.feature-grid,
.process-steps,
.district-grid,
.tip-grid,
.usp-grid,
.service-list,
.service-points,
.topic-list,
.team-intro {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.feature-grid, .district-grid, .tip-grid, .usp-grid {
  justify-content: space-between;
}
.feature-item, .usp-item, .district-grid > div, .tip-grid > div {
  background: #191E37;
  border-radius: 18px;
  box-shadow: 0 2px 19px -12px #47ffbe1a;
  padding: 26px 22px;
  flex: 1 1 230px;
  min-width: 245px;
  max-width: 370px;
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow 0.24s, transform 0.21s;
  border: 1px solid #30748933;
}
.feature-item:hover, .usp-item:hover {
  box-shadow: 0 6px 36px -8px #39ffbc55;
  transform: translateY(-4px) scale(1.033);
}
.feature-item img, .usp-item img {
  width: 46px; height: 46px; margin-bottom: 8px;
}
.process-steps {
  flex-direction: column;
  gap: 20px;
  margin-top: 16px;
}
.process-steps li {
  padding: 16px 16px 16px 0;
  border-left: 5px solid #13c063;
  margin-bottom: 10px;
  background: #182040;
  color: #fff;
}
@media (min-width: 768px) {
  .process-steps {
    flex-direction: row;
    gap: 32px;
  }
  .process-steps li {
    flex: 1 1 140px;
    border-left: none;
    border-top: 5px solid #13c063;
    padding: 18px 12px 12px 12px;
    margin-bottom: 0;
  }
}

/* service-list, team-intro, topic-list */
.service-list, .team-intro, .service-points, .topic-list {
  flex-direction: column;
  gap: 18px;
}
.service-list li, .service-points li, .topic-list li, .team-intro li {
  background: #1f253b;
  border-radius: 12px;
  padding: 16px 18px;
  color: #d1fbe6;
  margin-bottom: 8px;
  position: relative;
  border-left: 3px solid #13c063;
  display: flex;
  align-items: center;
  gap: 14px;
}
.topic-list img {
  width: 32px; height: 32px;
}

/* ======================== TESTIMONIALS ===================== */
.testimonials {
  background: #141c29;
}
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
  margin-top: 18px;
}
.testimonial-card {
  background: #F4F7FA;
  color: #111826;
  border-radius: 16px;
  box-shadow: 0 3px 30px -13px #3ee69544;
  padding: 20px;
  transition: box-shadow 0.22s, transform 0.17s;
  min-width: 270px;
  max-width: 330px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
  position: relative;
}
.testimonial-card .stars {
  font-size: 1.3rem;
  color: #158C4E;
  text-shadow: 0 0 4px #21ff81cc;
  letter-spacing: 3px;
  margin-bottom: 4px;
  font-family: 'Montserrat',sans-serif;
  font-weight: 700;
}
.testimonial-card p {
  color: #223553;
  font-size: 1.03rem;
  font-style: italic;
  margin-bottom: 0;
}
.testimonial-card .author {
  align-self: flex-end;
  font-size: 0.98rem;
  color: #158C4E;
  font-family: 'Montserrat',sans-serif;
}
.testimonial-card:hover {
  box-shadow: 0 7px 35px -13px #0effc759;
  transform: scale(1.028);
}

/* ================== CTA / CALLOUT SECTION ================== */
.cta .cta-primary {
  margin: 32px 0 0 0;
}
.cta h2 {
  color: #fff;
  text-shadow: 0 0 8px #21ffbd11;
}
.cta {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* ======================== FOOTER ======================== */
footer {
  background: #141A25;
  color: #EEF6F4;
  margin-top: 60px;
  width: 100%;
  box-shadow: 0px -2px 32px -14px #34fcd021;
}
.footer-top {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  justify-content: space-between;
  padding: 38px 0 22px 0;
  border-bottom: 1px solid #21365e;
}
.footer-logo {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 230px;
}
.footer-logo img {
  height: 36px;
  margin-bottom: 7px;
}
.footer-menu {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 180px;
}
.footer-menu a {
  color: #bbeeeb;
  font-size: 1.04rem;
  transition: color 0.2s;
}
.footer-menu a:hover, .footer-menu a:focus {
  color: #13c063;
  text-decoration: underline;
}
.footer-social {
  display: flex;
  gap: 16px;
  align-items: center;
}
.footer-social a img {
  height: 28px;
  filter: grayscale(1) brightness(1.5) drop-shadow(0 0 2px #11ff70);
  transition: filter 0.22s, transform 0.22s;
}
.footer-social a:hover img, .footer-social a:focus img {
  filter: none;
  transform: scale(1.16);
}
.footer-bottom {
  text-align: center;
  padding: 16px 0;
  color: #71c2cf;
  font-size: 0.98rem;
}

/* ======================== BREADCRUMB ======================== */
.breadcrumb {
  color: #cccccc;
  margin-bottom: 10px;
  font-size: 0.99rem;
  letter-spacing: 0.02em;
  display: flex;
  gap: 8px;
}
.breadcrumb a {
  color: #ffffff;
  opacity: 0.92;
  text-decoration: underline;
}

/* ========================== FAQ ACCORDION ========================= */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-top: 10px;
}
.faq-accordion div {
  background: #1c2343;
  border-radius: 11px;
  box-shadow: 0 2px 14px -5px #13c06333;
  padding: 18px 16px 12px 16px;
  border-left: 4px solid #13c063;
  margin-bottom: 8px;
  font-size: 1rem;
  color: #e7fcf6;
  transition: box-shadow 0.22s;
}
.faq-accordion div h3 {
  font-size: 1.1rem;
  color: #6bfff8;
  margin-bottom: 6px;
}

/* ========================= MODALS & BANNERS =========================== */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #131c29;
  color: #fff;
  box-shadow: 0 -2px 24px -8px #13c0636b;
  z-index: 3000;
  padding: 22px 10px 18px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  animation: fade-in-btm 0.42s cubic-bezier(.77,.02,.32,1.37);
}
#cookie-banner p {
  color: #fff;
  text-align: center;
  font-size: 1rem;
}
.cookie-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}
.cookie-buttons button {
  border: none;
  border-radius: 20px;
  padding: 10px 22px;
  font-family: 'Montserrat',sans-serif;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
  margin: 0 6px;
}
.cookie-accept { background: #158C4E; color: #fff; box-shadow: 0 1px 6px #158c4e44; }
.cookie-accept:hover { background: #13c063; }
.cookie-reject { background: #19324D; color: #fff; }
.cookie-reject:hover {background:#121f30; color:#13c063;}
.cookie-settings { background: #fff; color: #158C4E; border:1.5px solid #158C4E; }
.cookie-settings:hover { background: #158C4E; color: #fff; }

#cookie-modal {
  display: none;
  position: fixed;
  bottom: 0; left: 50%;
  transform: translate(-50%, 120%);
  z-index: 3050;
  background: #232d45;
  color: #fff;
  min-width: 350px;
  max-width: 97vw;
  border-radius: 20px 20px 0 0;
  box-shadow: 0 0 32px #13c06359;
  padding: 32px 28px 24px 28px;
  animation: slide-modal-up 0.44s cubic-bezier(.5,.13,.18,1.12);
  transition: transform 0.42s;
}
#cookie-modal.active {
  display: block;
  transform: translate(-50%, 0%);
}
.cookie-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
  gap: 14px;
}
.cookie-modal-header h2 {
  color: #1cff96;
  font-size: 1.19rem;
}
.cookie-modal-close {
  background: transparent;
  font-size: 2rem;
  border: none;
  color: #fff;
  transition: color 0.18s;
  cursor: pointer;
}
.cookie-modal-close:hover { color: #158C4E; }
.cookie-category {
  background: #162235;
  border-radius: 13px;
  margin-bottom: 16px;
  padding: 13px 17px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 1rem;
  color: #d8f5ec;
  border-left: 3px solid #158C4E;
}
.cookie-category input[type='checkbox'] {
  accent-color: #158C4E;
  width: 18px;
  height: 18px;
}
.cookie-category.essential label {
  color: #b5ffc5;
  font-weight: 700;
}
.cookie-category.essential input[disabled] {
  opacity: 0.5;
}

@keyframes fade-in-btm {
  0% { opacity: 0; transform: translateY(68px); }
  100% { opacity: 1; transform: translateY(0); }
}
@keyframes slide-modal-up {
  0% { transform: translate(-50%, 140%); }
  100% { transform: translate(-50%, 0); }
}

/* ========================= MAP/CONTACT STYLES =================== */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 20px;
  font-size: 1.08rem;
}
.contact-info img {
  width: 19px; height: 19px; margin-right:8px;
  vertical-align: middle;
}
.map-embed {
  display: flex;
  align-items: center;
  gap: 36px;
  margin-top: 12px;
}
.map-embed img {
  border-radius: 14px;
  box-shadow: 0 2px 18px #5bfdac1b;
}

/* ===================== ABOUT PAGE (TEAM) ==================== */
.about-story {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.team-intro li strong {
  color: #21ffb6;
}

/* ======================= LEGAL PAGES ==================== */
.legal {
  background: #161d2b;
  border-radius: 18px;
  box-shadow: 0 2px 22px -6px #0effc721;
  color: #F4F7FA;
  margin-bottom: 48px;
  padding-bottom: 32px;
}
.legal h1, .legal h2 {
  color: #21ffb6;
  margin-top: 18px;
}
.legal ul {
  margin-left: 20px;
  margin-top: 7px;
}
.legal li {
  margin-bottom: 7px;
}

/* ====================== MISC LAYOUT ======== */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  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;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ================== RESPONSIVE ================== */
@media (max-width: 980px) {
  .footer-top {
    flex-direction: column;
    gap: 28px;
    align-items: flex-start;
  }
}
@media (max-width: 850px) {
  .feature-grid, .district-grid, .usp-grid {
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
  }
  .card-container, .content-grid {
    flex-direction: column;
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .container { padding: 0 10px; }
  .hero { padding: 36px 0 22px 0; min-height: 124px;}
  .hero h1 { font-size: 2rem; }
  .section, .features, .services, .testimonials, .cta, .about, .contact, .hours, .legal, .faq, .process, .confirmation {
    padding: 24px 5px;
    margin-bottom: 36px;
    border-radius: 11px;
  }
  .testimonial-card, .feature-item, .usp-item {
    min-width: 180px;
    padding: 16px 11px;
  }

  .testimonial-slider {
    gap: 10px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .map-embed {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
}
@media (max-width: 600px) {
  h1 {font-size:1.3rem;}
  h2 {font-size:1.09rem;}
  h3 {font-size:1rem;}
  .feature-item img, .usp-item img {width:34px;height:34px;}
  .testimonial-card {max-width: 98vw;}
  .testimonial-slider {flex-direction: column;gap:12px;}
}

/* ============ UTILITIES =============== */
.mt-2 { margin-top: 16px; }
.mb-4 { margin-bottom: 32px; }

/* ========== SCROLLBAR ========== */
body::-webkit-scrollbar,
.mobile-menu::-webkit-scrollbar {
  width: 7px;
  background: #151e2e;
}
body::-webkit-scrollbar-thumb,
.mobile-menu::-webkit-scrollbar-thumb {
  background: #1ada87;
  border-radius: 4px;
}

/* --------------------------------------------- */
/* HOVER/FOCUS MICRO-INTERACTIONS               */
/* --------------------------------------------- */
button, .cta-primary, .cookie-buttons button {
  outline: none;
}
button:focus-visible, a:focus-visible, .cta-primary:focus-visible {
  box-shadow: 0 0 0 2px #13c063, 0 0 0 5px #14ff9580;
  z-index: 2100;
}

/* ========== ANIMATIONS ============ */
.card, .feature-item, .testimonial-card, .cta-primary, .cookie-modal, .cookie-category, .mobile-menu, .mobile-menu-toggle, .mobile-menu-close {
  transition: box-shadow 0.18s, background 0.21s, color 0.18s, transform 0.16s, opacity 0.20s;
}

/* =============================================== */
/* COLOR ACCESSIBILITY FIXES for TESTIMONIALS etc. */
.testimonial-card, .testimonial-card p, .testimonial-card .author {
  color: #111826 !important;
  background: #F4F7FA !important;
  text-shadow: none !important;
}

/* ============= TRUST BADGES ================= */
.trust-badges {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-top: 22px;
}
.trust-badges img {
  height: 42px;
  filter: drop-shadow(0 0 8px #13c06333);
}

/* ============= TABLE STYLES ============== */
.comparison-table {
  background: #192847;
  color: #cdf7e8;
  border-radius: 9px;
  padding: 15px 19px;
  margin-top: 20px;
  margin-bottom: 14px;
  font-size: 1.07rem;
  box-shadow: 0 2px 9px #13c06312;
}
.comparison-table strong { color: #14c063; }

/* ========== THANK YOU PAGE styles ========= */
.confirmation .thank-you-message {
  font-size: 1.12rem;
  color: #baffd6;
  margin-bottom: 16px;
}
.confirmation .next-steps-info {
  color: #d2ffe7;
  font-size: 1.01rem;
}

/* ============== Z-INDEX GLOBALS ========== */
header {z-index: 50;}
.mobile-menu {z-index: 2000;}
#cookie-banner {z-index: 3000;}
#cookie-modal {z-index: 3050;}

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