/* --- CSS RESET & BASE STYLES --- */
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.55;
  font-family: 'Open Sans', Arial, sans-serif;
  background-color: #FBFBFD;
  color: #374151;
  min-height: 100vh;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color .2s;
}
ul, ol {
  list-style-position: inside;
}
input, button, textarea, select {
  font-family: inherit;
  font-size: 100%;
  outline: none;
  background: none;
  border: none;
}
button {
  cursor: pointer;
  background: none;
}

/* --- BRAND COLORS & PASTEL PALETTE --- */
:root {
  --primary: #2E3E55;
  --secondary: #FFFFFF;
  --accent: #A2531A;
  --pastel-blue: #E7F2FF;
  --pastel-pink: #FFE7F3;
  --pastel-peach: #FFF6E7;
  --pastel-mint: #E7FFF6;
  --pastel-yellow: #FFFBE7;
  --text: #353535;
  --headline: #2E3E55;
  --shadow: 0 2px 18px 0 rgba(46,62,85,0.06);
}

/* ---- TYPOGRAPHY ---- */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600;700&family=Open+Sans:wght@400;600&display=swap');
body {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  color: var(--text);
  background-color: #FBFBFD;
  font-weight: 400;
}
h1, h2, h3, h4 {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  color: var(--headline);
  font-weight: 700;
  letter-spacing: -0.01em;
}
h1 {
  font-size: 2.375rem; /* 38px */
  line-height: 1.15;
  margin-bottom: 12px;
}
h2 {
  font-size: 2rem; /* 32px */
  margin-bottom: 16px;
  line-height: 1.15;
}
h3 {
  font-size: 1.375rem; /* 22px */
  margin-bottom: 8px;
  line-height: 1.2;
  font-weight: 600;
}
h4 {
  font-size: 1.125rem;
}
p, ul, ol, li, blockquote {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 12px;
}
strong { font-weight: 600; }

@media (max-width: 768px) {
  h1 { font-size: 1.5rem; }
  h2 { font-size: 1.125rem; }
  h3 { font-size: 1rem; }
}

/* ---- LAYOUT CONTAINERS ---- */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: flex-start;
}

/* --- SPACING & SECTIONS --- */
.section, section {
  margin-bottom: 60px;
  padding: 40px 0;
  background: none;
}
@media (max-width: 768px) {
  .section, section {
    margin-bottom: 36px;
    padding: 30px 0;
  }
}

.card-container, .features-grid, .features-list, .services-grid, .services-list, .testimonials-grid, .faq-list, .info-boxes {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  width: 100%;
  justify-content: flex-start;
}
.card, .service-item, .feature-item, .testimonial-card, .faq-item, .info-box {
  margin-bottom: 20px;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .card-container, .features-grid, .features-list, .services-grid, .services-list, .testimonials-grid, .faq-list, .info-boxes, .text-image-section {
    flex-direction: column;
    gap: 18px;
  }
}

/* ---- HEADER & NAV ---- */
header {
  background: var(--secondary);
  border-bottom: 1px solid #e5e6eb;
  box-shadow: none;
  z-index: 99;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 20px 20px 20px;
}
.logo img {
  height: 40px;
  width: auto;
  margin-right: 24px;
  display: block;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}
.main-nav a {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: var(--primary);
  background: none;
  padding: 8px 12px;
  border-radius: 32px;
  transition: background 0.18s, color 0.16s;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--pastel-peach);
  color: var(--accent);
}
.cta-btn {
  display: inline-block;
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  padding: 10px 28px;
  background: linear-gradient(90deg, #FFD6D6 0%, #E7F2FF 100%);
  color: var(--primary);
  border-radius: 28px;
  box-shadow: 0 2px 20px 0 rgba(174, 155, 242, 0.04);
  font-weight: 700;
  margin-left: 18px;
  border: none;
  transition: box-shadow 0.2s, transform 0.16s, background 0.2s, color 0.16s;
  outline: none;
  letter-spacing: 0.02em;
}
.cta-btn:hover, .cta-btn:focus {
  background: var(--pastel-pink);
  color: var(--accent);
  box-shadow: 0 4px 16px 0 rgba(174, 155, 242, 0.2);
  transform: translateY(-2px) scale(1.02);
}

/* --- MOBILE NAVIGATION ---- */
.mobile-menu-toggle {
  display: none;
  background: var(--pastel-peach);
  color: var(--accent);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 2rem;
  border: none;
  align-items: center;
  justify-content: center;
  margin-left: 12px;
  transition: background 0.15s;
  z-index: 105;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: var(--pastel-yellow);
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #fff;
  width: 100vw;
  height: 100vh;
  z-index: 1200;
  box-shadow: 0 6px 24px rgba(46,62,85,0.10);
  transform: translateX(100vw);
  transition: transform .36s cubic-bezier(.48,.04,.36,1.22);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  font-size: 2.3rem;
  color: var(--accent);
  background: var(--pastel-peach);
  width: 48px;
  height: 48px;
  align-self: flex-end;
  margin: 20px 18px 0 0;
  border-radius: 50%;
  border: none;
  transition: background 0.16s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--pastel-yellow);
}
.mobile-nav {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 34px 22px 0 36px;
  font-size: 1.05rem;
}
.mobile-nav a {
  padding: 14px 10px;
  border-radius: 20px;
  color: var(--primary);
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-weight: 600;
  transition: background 0.16s, color 0.14s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--pastel-blue);
  color: var(--accent);
}

@media (max-width: 1024px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .cta-btn {
    margin-left: 10px;
    font-size: 1rem;
  }
  header .container {
    gap: 8px;
  }
}
@media (min-width: 1025px) {
  .mobile-menu {
    display: none !important;
  }
}

/* ---- HERO SECTION ---- */
.hero {
  background: linear-gradient(92deg, var(--pastel-peach) 0%, var(--pastel-blue) 100%);
  padding: 54px 0 40px 0;
  width: 100%;
}
.hero .container, .cta-section .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero .content-wrapper, .cta-section .content-wrapper {
  align-items: center;
  gap: 18px;
  text-align: center;
  max-width: 600px;
  width: 100%;
  margin: 0 auto;
}
.hero h1, .cta-section h2 {
  background: linear-gradient(100deg, #A6BFEF 10%, #FFCEC5 90%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
          background-clip: text;
          text-fill-color: transparent;
}

/* ---- FEATURE BLOCKS ---- */
.features-grid, .features-list {
  gap: 24px;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.feature-item {
  min-width: 220px;
  max-width: 340px;
  background: var(--pastel-blue);
  padding: 32px 24px;
  border-radius: 18px;
  box-shadow: 0 2px 18px 0 rgba(80,148,255,0.07);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  transition: box-shadow .19s, transform .18s;
}
.feature-item img {
  height: 40px;
  width: 40px;
  margin-bottom: 4px;
}
.feature-item:hover, .feature-item:focus-within {
  box-shadow: 0 6px 24px 0 rgba(80,148,255,0.18);
  transform: translateY(-4px) scale(1.02);
}

.features-list .feature-item { background: var(--pastel-mint); }

/* ---- SERVICES BLOCKS ---- */
.services-list, .services-grid {
  gap: 22px;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.service-item {
  flex: 1 1 260px;
  min-width: 220px;
  max-width: 340px;
  background: var(--pastel-yellow);
  border-radius: 16px;
  box-shadow: 0 2px 18px 0 rgba(255,223,129,0.08);
  padding: 27px 22px 22px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
  transition: box-shadow .17s, transform .18s;
}
.service-item:hover, .service-item:focus-within {
  box-shadow: 0 6px 22px 0 rgba(255,223,129,0.20);
  transform: translateY(-4px) scale(1.03);
}
.service-price {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-weight: 600;
  color: var(--accent);
  font-size: 1.13rem;
  letter-spacing: .02em;
  margin-top: 4px;
}

/* ---- TESTIMONIALS ---- */
.testimonials {
  background: var(--pastel-pink);
  padding: 48px 0 24px 0;
}
.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}
.testimonial-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 20px 0 rgba(163, 173, 214, 0.16);
  min-width: 250px;
  max-width: 340px;
  padding: 28px 24px 20px 24px;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  transition: box-shadow .18s, transform .14s;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  box-shadow: 0 8px 30px 0 rgba(131, 152, 212, 0.22);
  transform: translateY(-2px) scale(1.015);
}
.testimonial-card blockquote {
  font-size: 1.08rem;
  color: #323545;
  font-style: italic;
  margin: 0 0 6px 0;
  line-height: 1.6;
}
.testimonial-meta {
  font-size: 0.97rem;
  color: #7892B7;
  font-style: normal;
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-weight: 600;
  margin-top: 4px;
}

/* ---- CTA SECTION ---- */
.cta-section {
  background: linear-gradient(90deg, #E7FFF6 0%, #FFE7F3 100%);
  padding: 46px 0 32px 0;
}
.cta-section .content-wrapper {
  align-items: center;
  gap: 20px;
  text-align: center;
}

/* ---- FAQ & STEPS LIST ---- */
.text-section {
  background: var(--pastel-peach);
  border-radius: 14px;
  padding: 28px 24px;
  margin-bottom: 22px;
  width: 100%;
  box-shadow: 0 2px 18px 0 rgba(198,112,41,0.06);
}
.faq-list .faq-item {
  background: var(--pastel-blue);
  border-radius: 12px;
  box-shadow: 0 1px 8px 0 rgba(174, 194, 255, 0.08);
  padding: 16px 18px 14px 18px;
  margin-bottom: 16px;
  transition: box-shadow .13s;
}
.faq-list .faq-item h3 {
  font-size: 1.08rem;
  color: var(--accent);
  margin-bottom: 5px;
  font-weight: 600;
}
.faq-list .faq-item:hover, .faq-list .faq-item:focus-within {
  box-shadow: 0 4px 15px 0 rgba(174, 194, 255, 0.17);
}
ol, ul {
  margin: 10px 0 14px 0;
  padding-left: 0;
  padding-right: 0;
}
ol li, ul li {
  padding-left: 0;
  margin-bottom: 6px;
}
.stepper li {
  margin-bottom: 12px;
  position: relative;
  padding-left: 0;
}
.district-list li {
  margin-bottom: 7px;
}

/* ---- INFO BOXES & MAP ---- */
.info-boxes {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.info-box {
  background: var(--pastel-mint);
  border-radius: 13px;
  box-shadow: 0 2px 12px 0 rgba(41, 176, 136, 0.07);
  padding: 22px 18px;
  flex: 1 1 220px;
  max-width: 320px;
  min-width: 180px;
  margin-bottom: 20px;
  transition: box-shadow .13s;
}
.info-box:hover, .info-box:focus-within {
  box-shadow: 0 4px 18px 0 rgba(41,176,136,0.16);
}
.map-placeholder {
  min-height: 86px;
  background: var(--pastel-blue);
  border-radius: 10px;
  padding: 10px 9px;
  font-size: 0.97rem;
  color: var(--primary);
  display: flex;
  align-items: center;
  margin-top: 8px;
}

/* ---- COMPANY DETAILS ---- */
.company-details p {
  margin-bottom: 6px;
  font-size: 1.01rem;
}
.company-details a {
  color: var(--accent);
  text-decoration: underline;
}

/* ---- FOOTER STYLES ---- */
footer {
  background: var(--primary);
  color: #fff;
  padding: 32px 0 8px 0;
  margin-top: 40px;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 28px;
}
.footer-logo img {
  height: 46px;
  margin-bottom: 8px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-nav a {
  color: #E1E6F5;
  font-size: 1rem;
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  transition: color 0.14s;
  padding: 3px 0;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #A4C0F7;
}
.footer-contact {
  font-size: 0.99rem;
  color: #E0E3EC;
  line-height: 1.6;
}

@media (max-width: 950px) {
  footer .container {
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
  }
}

/* --- COOKIE CONSENT BANNER & MODAL --- */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--pastel-peach);
  color: var(--text);
  padding: 24px 18px 18px 18px;
  box-shadow: 0 -2px 32px 0 rgba(46,62,85,0.10);
  z-index: 1400;
  display: flex;
  flex-direction: column;
  gap: 18px;
  justify-content: flex-start;
  align-items: flex-start;
  font-size: 1.01rem;
  width: 100vw;
  border-radius: 18px 18px 0 0;
  animation: cookiebanner-appear 0.6s cubic-bezier(.67,0,.4,1.22) 1;
}
@keyframes cookiebanner-appear {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1;}
}
.cookie-banner-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.cookie-btn {
  min-width: 124px;
  padding: 10px 20px;
  border-radius: 24px;
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  background: var(--pastel-blue);
  color: var(--primary);
  border: none;
  outline: none;
  transition: background 0.14s, color 0.13s, box-shadow 0.15s;
  box-shadow: 0 2px 8px 0 rgba(174, 194, 255, 0.12);
}
.cookie-btn.accept {
  background: var(--pastel-mint);
  color: #228C6B;
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: #D5FAF0;
  color: #129e5b;
  box-shadow: 0 4px 16px 0 rgba(99, 196, 168, 0.16);
}
.cookie-btn.reject {
  background: var(--pastel-pink);
  color: #BA3661;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #FDE3EC;
  color: #d65762;
  box-shadow: 0 4px 16px 0 rgba(255, 159, 184, 0.13);
}
.cookie-btn.settings {
  background: var(--pastel-yellow);
  color: var(--accent);
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #FFF9CF;
  color: #A2531A;
  box-shadow: 0 4px 15px 0 rgba(255, 208, 109, 0.12);
}

/* --- COOKIE PREFERENCES MODAL --- */
.cookie-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  z-index: 1700;
  width: 95vw;
  max-width: 410px;
  background: #fff;
  border-radius: 26px;
  box-shadow: 0 8px 32px 0 rgba(68,110,208,0.11);
  padding: 38px 30px 26px 30px;
  transform: translate(-50%, -50%) scale(1);
  animation: cookie-modal-appear .40s cubic-bezier(.67,0,.4,1.22) 1;
}
@keyframes cookie-modal-appear {
  from { transform: translate(-50%, 32%) scale(0.95); opacity: 0; }
  to { transform: translate(-50%, -50%) scale(1); opacity: 1; }
}
.cookie-modal h2 {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-size: 1.25rem;
  margin-bottom: 20px;
}
.cookie-modal-category {
  margin-bottom: 18px;
}
.cookie-category-toggle {
  appearance: none;
  cursor: pointer;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  border: 1.5px solid var(--primary);
  background: var(--pastel-blue);
  position: relative;
  vertical-align: bottom;
  margin-right: 10px;
  transition: border 0.13s;
}
.cookie-category-toggle:checked {
  background: var(--accent);
  border-color: var(--accent);
}
.cookie-modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 15px;
}
.cookie-modal-close {
  position: absolute;
  right: 16px;
  top: 7px;
  font-size: 1.65rem;
  background: none;
  color: var(--accent);
  border: none;
  cursor: pointer;
}
@media (max-width: 500px) {
  .cookie-modal {
    padding: 18px 6vw 12px 6vw;
    font-size: 0.97rem;
  }
}
/* --- HIDE/SHOW HELPERS --- */
.cookie-banner, .cookie-modal {
  display: none;
}
.cookie-banner.visible {
  display: flex;
}
.cookie-modal.visible {
  display: block;
}

/* ---- RESPONSIVE ADJUSTMENTS ---- */
@media (max-width: 768px) {
  .container {
    padding: 0 8px;
  }
  .hero {
    padding: 34px 0 24px 0;
  }
  .content-wrapper, .hero .content-wrapper, .cta-section .content-wrapper {
    gap: 14px;
    text-align: center;
    align-items: center;
  }
  .text-section, .faq-list .faq-item, .cta-section, .service-item, .feature-item, .info-box {
    padding-left: 12px;
    padding-right: 12px;
  }
  .features-grid, .services-list, .testimonials-grid, .info-boxes {
    flex-direction: column;
    gap: 14px;
    align-items: stretch;
  }
  .testimonial-card, .service-item, .feature-item, .info-box {
    min-width: unset;
    max-width: 100%;
  }
}

/* ---- MICROINTERACTIONS & UTILS ---- */
[data-anim="fade-in"] {
  opacity: 0;
  transition: opacity .48s cubic-bezier(.41,.02,.47,1.02);
}
[data-anim="fade-in"].visible {
  opacity: 1;
}
::-webkit-scrollbar {
  width: 9px;
  background: #f0f4fa;
}
::-webkit-scrollbar-thumb {
  background: #e6e9ef;
  border-radius: 20px;
}
::selection {
  background: #FFE7F3;
  color: #2E3E55;
}

/* ---- THANK YOU / SUCCESS PAGE ---- */
.hero .cta-btn {
  margin-top: 14px;
}

/* ---- GENERAL BUTTONS (e.g. forms, modal) ---- */
button, .btn {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  border-radius: 22px;
  transition: background .17s, color .13s, box-shadow .13s;
}

/* --- END OF CSS FILE --- */
