/* =============================================================
   CSS RESET & BASE
   ============================================================= */
html {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}
*, *::before, *::after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Roboto', Arial, sans-serif;
  background: #FFF9F3;
  color: #245679;
  min-height: 100vh;
  line-height: 1.6;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #245679;
  text-decoration: none;
  transition: color 0.2s;
}
a:focus {
  outline: 2px solid #A5D6C1;
  outline-offset: 2px;
}

/* =============================================================
   TYPOGRAPHY
   ============================================================= */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  color: #245679;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 18px;
}
h3 {
  font-size: 1.35rem;
  margin-bottom: 12px;
}
h4, h5, h6 {
  font-size: 1.1rem;
  margin-bottom: 12px;
}
p, ul, ol, li {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: #245679;
}
p {
  margin-bottom: 16px;
}
ul, ol {
  padding-left: 22px;
  margin-bottom: 16px;
}
strong {
  font-weight: 600;
}

/* =============================================================
   CONTAINER & LAYOUT STRUCTURES
   ============================================================= */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 2px 10px rgba(36,86,121,0.03);
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 8px rgba(36,86,121,0.05);
  padding: 24px;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow 0.2s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 4px 20px rgba(36,86,121,0.10);
}

.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;
  background: #FFF9F3;
  border-radius: 14px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(36,86,121,0.04);
  transition: transform 0.18s, box-shadow 0.18s;
}
.testimonial-card:hover {
  transform: translateY(-2px) scale(1.015);
  box-shadow: 0 6px 24px rgba(36,86,121,0.08);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* =============================================================
   BRAND COLORS & BACKGROUNDS
   ============================================================= */
.bg-primary {
  background: #245679;
  color: #fff;
}
.bg-secondary {
  background: #A5D6C1;
  color: #245679;
}
.bg-accent {
  background: #FFF9F3;
  color: #245679;
}

/* =============================================================
   HEADER & NAVIGATION
   ============================================================= */
header {
  width: 100%;
  background: #fff;
  border-bottom: 1px solid #f1ebe2;
  box-shadow: 0 2px 10px rgba(36,86,121,0.04);
  position: sticky;
  top: 0;
  z-index: 100;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 0;
  min-height: 70px;
}
header nav {
  display: flex;
  flex-direction: row;
  gap: 20px;
}
header nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: #245679;
  padding: 8px 10px;
  border-radius: 6px;
  transition: background 0.18s, color 0.15s;
}
header nav a:hover, header nav a:focus {
  background: #A5D6C1;
  color: #245679;
}
.cta-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  background: #245679;
  color: #fff;
  border: none;
  border-radius: 22px;
  font-weight: 600;
  font-size: 1.05rem;
  padding: 10px 30px;
  outline: none;
  margin-left: 16px;
  box-shadow: 0 2px 10px rgba(36,86,121,0.13);
  cursor: pointer;
  display: inline-block;
  transition: background 0.19s, color 0.14s, box-shadow 0.20s, transform 0.13s;
}
.cta-btn:hover, .cta-btn:focus {
  background: #A5D6C1;
  color: #245679;
  box-shadow: 0 5px 22px rgba(36,86,121,0.18);
  transform: translateY(-1px) scale(1.01);
}
header .mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2.1rem;
  color: #245679;
  cursor: pointer;
  margin-left: 22px;
  padding: 0 10px;
  transition: color 0.19s;
}
header .mobile-menu-toggle:hover {
  color: #A5D6C1;
}

/* Mobile Menu Overlay */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  box-shadow: 0 10px 32px rgba(36,86,121,0.12);
  z-index: 2000;
  transform: translateX(-100%);
  transition: transform 0.36s cubic-bezier(.36,1.51,.28,1);
  display: flex;
  flex-direction: column;
  padding: 32px 28px 32px 28px;
  gap: 30px;
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  border: none;
  background: none;
  font-size: 2.05rem;
  color: #245679;
  align-self: flex-end;
  cursor: pointer;
  margin-bottom: 24px;
  transition: color 0.18s, transform 0.18s;
}
.mobile-menu-close:hover {
  color: #A5D6C1;
  transform: scale(1.15);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 20px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.22rem;
  color: #245679;
  font-weight: 600;
  padding: 16px 10px;
  border-radius: 8px;
  background: #fff;
  transition: background 0.14s, color 0.12s;
}
.mobile-nav a:hover {
  background: #A5D6C1;
  color: #245679;
}

@media (max-width: 990px) {
  header nav {
    display: none;
  }
  header .cta-btn {
    display: none;
  }
  header .mobile-menu-toggle {
    display: block;
  }
}

/* =============================================================
   HERO BANNER & INTRO
   ============================================================= */
.hero {
  background: linear-gradient(136deg, #A5D6C1 0%, #fff 86%);
  padding: 60px 0 44px 0;
  border-radius: 0 0 32px 32px;
  margin-bottom: 40px;
}
.hero .content-wrapper {
  max-width: 600px;
  gap: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
}
.hero h1 {
  font-size: 2.7rem;
  color: #245679;
  font-weight: 700;
}
.hero p {
  font-size: 1.22rem;
  color: #245679;
}
.hero .cta-btn {
  margin-top: 18px;
}

/* =============================================================
   FEATURES SECTION
   ============================================================= */
.feature-grid, .values-list, .unique-benefits, .service-list, .testimonial-list, .neighborhood-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 20px;
  margin-bottom: 12px;
}
.feature-grid > div, .values-list li, .unique-benefits li, .neighborhood-list li, .service-list li, .testimonial-list > div {
  background: #fff;
  border-radius: 14px;
  padding: 26px 20px 18px 20px;
  box-shadow: 0 2px 8px rgba(36,86,121,0.03);
  min-width: 230px;
  flex: 1 1 220px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.feature-grid > div:hover, .values-list li:hover, .service-list li:hover {
  box-shadow: 0 4px 20px rgba(36,86,121,0.08);
  transform: translateY(-1px) scale(1.01);
}
@media (max-width: 768px) {
  .feature-grid, .values-list, .unique-benefits, .service-list, .testimonial-list, .neighborhood-list {
    flex-direction: column;
    gap: 20px;
  }
}

/* =============================================================
   SERVICE TABLES & PRICING
   ============================================================= */
.service-price-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(36,86,121,0.03);
}
.service-price-table th, .service-price-table td {
  padding: 16px 12px;
  text-align: left;
  font-size: 1rem;
  color: #245679;
  border-bottom: 1px solid #f1ebe2;
}
.service-price-table th {
  background: #A5D6C1;
  color: #245679;
  font-weight: 600;
}
.service-price-table tr:last-child td {
  border-bottom: none;
}

/* =============================================================
   FAQ ACCORDION
   ============================================================= */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.faq-accordion > div {
  background: #fff;
  border-radius: 12px;
  padding: 18px 22px;
  box-shadow: 0 2px 8px rgba(36,86,121,0.03);
  transition: box-shadow 0.18s;
}
.faq-accordion > div:hover {
  box-shadow: 0 4px 14px rgba(36,86,121,0.09);
}
.faq-accordion h3 {
  font-size: 1.14rem;
  color: #245679;
  margin-bottom: 6px;
}

/* =============================================================
   TESTIMONIALS & SLIDERS
   ============================================================= */
.testimonials, .testimonial-list {
  margin-bottom: 32px;
}
.testimonials .testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.testimonial-card {
  width: 100%;
  max-width: 350px;
  background: #fff;
  color: #245679;
  box-shadow: 0 2px 8px rgba(36,86,121,0.07);
  border-radius: 15px;
  padding: 26px 22px 18px 22px;
  font-size: 1.04rem;
  margin-right: 8px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.testimonial-card p {
  color: #245679;
  font-size: 1.08rem;
  margin-bottom: 0;
  line-height: 1.55;
}
.testimonial-card strong {
  color: #245679;
  font-size: 1rem;
  margin-top: 10px;
}
.rating-summary, .star-rating-summary {
  display: flex;
  align-items: center;
  gap: 16px;
  color: #245679;
  background: #fff;
  border-radius: 10px;
  padding: 10px 18px;
  font-size: 1.06rem;
  font-weight: 500;
  margin-top: 18px;
  margin-bottom: 12px;
  box-shadow: 0 1px 4px rgba(36,86,121,0.04);
}

@media (max-width: 900px) {
  .testimonials .testimonial-slider {
    flex-direction: column;
    gap: 14px;
  }
  .testimonial-card {
    max-width: 100%;
  }
}

/* =============================================================
   CALL TO ACTION BANNER
   ============================================================= */
.cta-banner {
  background: #245679;
  padding: 42px 0;
  border-radius: 18px;
  margin-bottom: 60px;
}
.cta-banner h2 {
  color: #fff;
  font-size: 2rem;
  margin-bottom: 14px;
}
.cta-banner .cta-btn {
  background: #A5D6C1;
  color: #245679;
  font-size: 1.15rem;
  font-weight: 700;
  margin-top: 10px;
}
.cta-banner .cta-btn:hover {
  background: #fff;
  color: #245679;
  box-shadow: 0 8px 32px rgba(0,0,0,0.07);
}

/* =============================================================
   FOOTER
   ============================================================= */
footer {
  background: #fff;
  border-top: 1px solid #f1ebe2;
  margin-top: 40px;
  padding-top: 44px;
  padding-bottom: 22px;
  font-size: 0.97rem;
}
footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}
footer nav {
  display: flex;
  flex-direction: row;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
}
footer nav a {
  color: #245679;
  padding: 6px 10px;
  border-radius: 5px;
  font-size: 1rem;
  transition: background 0.16s;
}
footer nav a:hover {
  background: #A5D6C1;
}
.contact-footer {
  display: flex;
  flex-direction: row;
  gap: 34px;
  align-items: center;
  justify-content: center;
  margin: 12px 0 2px 0;
  flex-wrap: wrap;
}
.contact-footer > div {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
}
.hours-footer {
  color: #245679;
  font-size: 1rem;
  margin-bottom: 0;
}
@media (max-width: 700px) {
  footer .container {
    gap: 18px;
  }
  .contact-footer {
    flex-direction: column;
    gap: 10px;
  }
  footer nav {
    gap: 12px;
  }
}

/* =============================================================
   LEGAL PAGES, TABLES AND MISCELLANEOUS
   ============================================================= */
.legal-text {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 1.5px 8px rgba(36,86,121,0.04);
  padding: 28px 18px;
  font-size: 1rem;
  color: #245679;
}
.legal-text h2,
.legal-text h3 {
  color: #245679;
  margin-bottom: 12px;
}

/* =============================================================
   COOKIE CONSENT BANNER AND MODAL
   ============================================================= */
.cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #fff;
  color: #245679;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 24px 20px 24px 28px;
  box-shadow: 0 -6px 28px rgba(36,86,121,0.10);
  z-index: 3000;
  gap: 22px;
  font-size: 1rem;
  animation: cookieFadeIn 0.6s cubic-bezier(.36,1.5,.28,1);
}
@keyframes cookieFadeIn {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.cookie-consent-banner .cookie-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.cookie-consent-banner button {
  border-radius: 22px;
  border: none;
  padding: 8px 28px;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(36,86,121,0.09);
  margin-left: 4px;
  margin-right: 2px;
  transition: background 0.15s, color 0.14s, box-shadow 0.18s;
}
.cookie-consent-banner .accept {
  background: #245679;
  color: #fff;
}
.cookie-consent-banner .accept:hover {
  background: #A5D6C1;
  color: #245679;
}
.cookie-consent-banner .reject {
  background: #fff;
  color: #245679;
  border: 1px solid #A5D6C1;
}
.cookie-consent-banner .reject:hover {
  background: #A5D6C1;
  color: #245679;
}
.cookie-consent-banner .settings {
  background: #A5D6C1;
  color: #245679;
}
.cookie-consent-banner .settings:hover {
  background: #245679;
  color: #fff;
}

/* Cookie modal overlay */
.cookie-modal-overlay {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(36, 86, 121, 0.13);
  z-index: 4000;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
  opacity: 1;
  animation: modalFadeIn 0.32s cubic-bezier(.36,1.5,.28,1);
}
@keyframes modalFadeIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.cookie-modal {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 12px 60px rgba(36,86,121,0.16);
  padding: 38px 32px 30px 32px;
  min-width: 320px;
  max-width: 98vw;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.cookie-modal h2 {
  font-size: 1.6rem;
  color: #245679;
}
.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 8px 0;
}
.cookie-category .category-name {
  font-weight: 600;
}
.category-toggle {
  width: 44px; height: 24px;
  border-radius: 22px;
  background: #A5D6C1;
  position: relative;
  display: inline-block;
  margin-left: 8px;
  transition: background 0.15s;
}
.category-toggle input {
  opacity:0; width:0; height:0; position:absolute;
}
.category-toggle .slider {
  position: absolute;
  cursor: pointer;
  top: 3px; left: 3px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: #fff;
  transition: left 0.18s, background 0.16s;
}
.category-toggle input:checked + .slider {
  left: 23px;
  background: #245679;
}
.cookie-modal .modal-btns {
  display: flex;
  gap: 16px;
  margin-top: 18px;
}
.cookie-modal button {
  border-radius: 22px;
  border: none;
  padding: 8px 28px;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  cursor: pointer;
  margin-right: 8px;
  transition: background 0.15s, color 0.14s;
}
.cookie-modal .save {
  background: #245679;
  color: #fff;
}
.cookie-modal .save:hover {
  background: #A5D6C1;
  color: #245679;
}
.cookie-modal .cancel {
  background: #fff;
  color: #245679;
  border: 1px solid #A5D6C1;
}
.cookie-modal .cancel:hover {
  background: #A5D6C1;
  color: #245679;
}
@media (max-width: 600px) {
  .cookie-consent-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    font-size: 0.97rem;
    padding: 18px 8px 18px 12px;
  }
  .cookie-modal {
    min-width: 0;
    padding: 24px 12px;
    font-size: 1rem;
  }
}

/* =============================================================
   RESPONSIVE DESIGN - MOBILE FIRST
   ============================================================= */
@media (max-width: 1100px) {
  .container {
    max-width: 99vw;
  }
}
@media (max-width: 900px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.45rem; }
}
@media (max-width: 768px) {
  .container {
    padding-left: 10px;
    padding-right: 10px;
  }
  .content-wrapper {
    gap: 16px;
    padding: 0;
  }
  .section {
    padding: 28px 8px;
    margin-bottom: 38px;
  }
  .hero {
    border-radius: 0 0 20px 20px;
    padding: 44px 0 28px 0;
  }
  .hero .content-wrapper {
    padding: 0 4px;
  }
  .feature-grid, .values-list, .unique-benefits, .service-list, .testimonial-list, .neighborhood-list {
    flex-direction: column;
    gap: 14px;
  }
  .feature-grid > div, .service-list li {
    min-width: 0;
    width: 100%;
  }
  .card, .testimonial-card {
    padding: 16px 10px;
  }
  .cta-banner {
    padding: 24px 0;
    margin-bottom: 32px;
    border-radius: 8px;
  }
  .contact-footer {
    flex-direction: column;
    gap: 12px;
  }
  .service-price-table th,
  .service-price-table td {
    padding: 10px 4px;
    font-size: 0.95rem;
  }
  .rating-summary, .star-rating-summary {
    font-size: 0.97rem;
    padding: 7px 8px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 22px;
    align-items: center;
  }
}
@media (max-width: 500px) {
  h1 { font-size: 1.22rem; }
  h2 { font-size: 1rem; }
  .hero h1 { font-size: 1.35rem; }
  .testimonial-card, .card {
    font-size: 0.96rem;
  }
}
/* Hide scrollbars for modal overlay */
.cookie-modal-overlay {
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.cookie-modal-overlay::-webkit-scrollbar {
  display: none;
}

/* =============================================================
   UTILITY CLASSES AND EXTRAS
   ============================================================= */
.hide {
  display: none!important;
}
.mt-0 { margin-top: 0!important; }
.mb-0 { margin-bottom: 0!important; }
.gap-8 { gap: 8px!important; }
.gap-16 { gap: 16px!important; }

::-webkit-input-placeholder { color: #bbbbbb; }
::-moz-placeholder          { color: #bbbbbb; }
:-ms-input-placeholder      { color: #bbbbbb; }
::placeholder              { color: #bbbbbb; }

/* ========= BUTTON ACCESSIBILITY FOCUS ============ */
button:focus, .cta-btn:focus {
  outline: 2px solid #245679;
  outline-offset: 2px;
}

/* =============================================================
   END OF STYLESHEET  
   ============================================================= */
