/* ==== RESET & NORMALIZATION ==== */
html {
  box-sizing: border-box;
  font-size: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
*, *:before, *:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 16px;
  color: #263238;
  background: linear-gradient(135deg, #F7EAD9 0%, #ADE5D5 100%);
  min-height: 100vh;
  line-height: 1.7;
}

img, svg {
  max-width: 100%;
  display: block;
  height: auto;
}

ul, ol {
  list-style: none;
  padding-left: 0;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  background: none;
  border: none;
  outline: none;
}

a {
  color: #47617A;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #1c3547;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, Helvetica, sans-serif;
  color: #263238;
  font-weight: 700;
  letter-spacing: -0.01em;
}

h1 { font-size: 2.5rem; margin-bottom: 20px; }
h2 { font-size: 2rem; margin-bottom: 18px; }
h3 { font-size: 1.25rem; margin-bottom: 12px; }
h4 { font-size: 1.125rem; margin-bottom: 10px; }

p, ul, ol {
  margin-bottom: 16px;
}
strong {
  font-weight: 600;
}

/* ==== UTILITY FLEXBOX LAYOUTS (as per requirements) ==== */
.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}

.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;
}

/* ==== HEADER + NAVIGATION ==== */
header {
  width: 100%;
  background: #fff;
  box-shadow: 0 4px 16px rgba(71,97,122,0.07);
  position: relative;
  z-index: 20;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 0;
  min-height: 68px;
}
.logo img {
  height: 38px;
}
header nav {
  display: flex;
  flex-direction: row;
  gap: 28px;
  align-items: center;
}
header nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  color: #47617A;
  padding: 8px 14px;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
}
header nav a:hover, header nav a:focus {
  background: #ADE5D5;
  color: #263238;
}

.cta {
  display: inline-block;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  padding: 10px 26px;
  border-radius: 26px;
  font-weight: 600;
  text-align: center;
  transition: box-shadow 0.2s, background 0.2s, color 0.2s;
  background: #47617A;
  color: #fff;
  box-shadow: 0 2px 12px rgba(71,97,122,0.10);
  border: 1.5px solid #47617A;
  letter-spacing: 0.02em;
  cursor: pointer;
}
.cta.primary {
  background: linear-gradient(90deg, #47617A 0%, #ADE5D5 100%);
  color: #fff;
  border: none;
}
.cta.secondary {
  background: #ADE5D5;
  color: #263238;
  border: none;
}
.cta:hover, .cta:focus {
  background: #31465b;
  color: #fff;
  box-shadow: 0 6px 18px rgba(71,97,122,0.18);
}
.cta.primary:hover, .cta.primary:focus {
  background: linear-gradient(90deg, #395468 0%, #54b4a5 100%);
}
.cta.secondary:hover, .cta.secondary:focus {
  background: #66b6a3;
  color: #fff;
}

header .cta {
  margin-left: 16px;
}

/* ==== MOBILE MENU STYLES ==== */
.mobile-menu-toggle {
  display: none;
  background: none;
  font-size: 2rem;
  line-height: 1;
  color: #47617A;
  border: none;
  cursor: pointer;
  z-index: 31;
  margin-left: 10px;
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 35px 24px 24px 24px;
  background: #fff;
  box-shadow: 0 4px 32px rgba(71,97,122,0.15);
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 87vw;
  max-width: 340px;
  transform: translateX(110%);
  transition: transform 0.35s cubic-bezier(0.75,0,0.25,1);
  z-index: 50;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  font-size: 2rem;
  color: #47617A;
  border: none;
  position: absolute;
  top: 16px;
  right: 18px;
  cursor: pointer;
  z-index: 51;
}
.mobile-nav {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 24px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.1rem;
  padding: 10px 0;
  border-radius: 6px;
  color: #47617A;
  transition: background 0.2s, color 0.2s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #ADE5D5;
  color: #263238;
}

@media (max-width: 1050px) {
  header .container nav,
  header .container .cta {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

@media (min-width: 1051px) {
  .mobile-menu, .mobile-menu-toggle {
    display: none !important;
  }
}

/* ==== HERO SECTION + GENERAL LAYOUT ==== */
.hero-section {
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(135deg, #ADE5D5 0%, #F7EAD9 100%);
  border-radius: 22px;
  padding: 48px 22px 40px 22px;
  margin-bottom: 60px;
  box-shadow: 0 4px 28px rgba(173,229,213,0.12);
  gap: 16px;
}
.hero-section h1 {
  font-size: 2.5rem;
  color: #263238;
}
.hero-section p {
  font-size: 1.125rem;
  color: #47617A;
  margin-bottom: 20px;
}

/* ==== FEATURE GRID ==== */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 20px;
}
.feature-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 20px rgba(71,97,122,0.10);
  padding: 32px 24px;
  flex: 1 1 220px;
  max-width: 260px;
  min-width: 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 20px;
  text-align: center;
  gap: 16px;
  transition: box-shadow 0.2s, transform 0.15s;
}
.feature-card img {
  width: 50px;
  margin-bottom: 8px;
}
.feature-card h3 {
  font-size: 1.125rem;
  color: #47617A;
  margin-bottom: 6px;
}
.feature-card p {
  font-size: 1rem;
  color: #263238;
}
.feature-card:hover, .feature-card:focus-within {
  box-shadow: 0 8px 32px rgba(71,97,122,0.15);
  transform: translateY(-6px) scale(1.015);
}

/* ==== SERVICES ==== */
.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 24px 0 20px 0;
}
.service-card {
  background: #fff;
  border-radius: 18px;
  padding: 32px 24px 30px 24px;
  box-shadow: 0 2px 20px rgba(71,97,122,0.08);
  flex: 1 1 220px;
  max-width: 260px;
  min-width: 180px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
  transition: box-shadow 0.2s, transform 0.18s;
}
.service-card h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.09rem;
  margin-bottom: 6px;
}
.service-card .price {
  margin-bottom: 4px;
  color: #47617A;
  font-weight: 500;
  font-size: 1rem;
}
.service-card p {
  color: #31465b;
}
.service-cta {
  margin-top: auto;
  display: inline-block;
  background: #ADE5D5;
  color: #263238;
  border-radius: 18px;
  padding: 8px 16px;
  font-weight: 600;
  transition: background 0.18s, color 0.18s;
  text-align: center;
  border: none;
  font-size: 1rem;
}
.service-cta:hover, .service-cta:focus {
  background: #47617A;
  color: #fff;
}
.service-card:hover, .service-card:focus-within {
  box-shadow: 0 8px 32px rgba(71,97,122,0.20);
  transform: translateY(-7px) scale(1.017);
}

/* ==== TESTIMONIALS ==== */
.testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 20px;
}
.testimonial-card {
  background: #fff;
  color: #222a27;
  border-radius: 18px;
  box-shadow: 0 2px 18px rgba(71,97,122,0.09);
  padding: 26px 24px 20px 24px;
  flex: 1 1 220px;
  max-width: 360px;
  min-width: 200px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
  position: relative;
  border-left: 4px solid #ADE5D5;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.testimonial-card p {
  font-style: italic;
  font-size: 1.05rem;
  color: #47617A;
}
.client-name {
  color: #47617A;
  font-size: 0.98rem;
  font-weight: 600;
  margin-top: 8px;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  box-shadow: 0 8px 28px rgba(71,97,122,0.13);
  border-left: 4px solid #54b4a5;
}

/* ==== TEXT & INFO SECTIONS ==== */
.text-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 20px;
}
.faq-list li {
  margin-bottom: 18px;
  color: #263238;
}
.price-box {
  background: #ADE5D5;
  color: #263238;
  border-radius: 14px;
  padding: 10px 16px;
  font-weight: 600;
  font-size: 1rem;
  display: inline-block;
  margin-top: 12px;
  margin-bottom: 0;
}
.info-box {
  background: #F7EAD9;
  border-radius: 12px;
  padding: 18px 18px 16px 18px;
  color: #263238;
  font-size: 1rem;
  margin-top: 20px;
}
.directions-snippet {
  background: #ADE5D5;
  color: #263238;
  font-size: 0.98rem;
  border-radius: 12px;
  padding: 14px 16px;
  margin: 10px 0 0 0;
}
.contact-details {
  margin-top: 0;
  margin-bottom: 16px;
}
.contact-details p {
  margin-bottom: 6px;
}

/* ==== FOOTER ==== */
footer {
  background: #fff;
  border-top: 1px solid #ADE5D5;
  padding: 40px 0 32px 0;
  margin-top: 60px;
  font-size: 1rem;
}
footer .container {
  flex-direction: row;
  gap: 36px;
  align-items: center;
  justify-content: space-between;
}
.footer-menu {
  display: flex;
  gap: 28px;
  flex-direction: row;
  flex-wrap: wrap;
}
.footer-menu a {
  color: #47617A;
  font-size: 1rem;
  transition: color 0.2s;
}
.footer-menu a:hover, .footer-menu a:focus {
  color: #54b4a5;
}
.footer-brand img {
  height: 32px;
}
.contact-summary {
  display: flex;
  flex-direction: column;
  gap: 4px;
  color: #47617A;
  font-size: 0.96rem;
  text-align: right;
  align-items: flex-end;
}

/* ==== COOKIE BANNER ==== */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  background: #fff;
  border-top: 2px solid #ADE5D5;
  box-shadow: 0 -2px 32px rgba(71,97,122,0.11);
  padding: 22px 18px;
  z-index: 1000;
  font-size: 1rem;
  transition: transform 0.4s cubic-bezier(0.7, 0, 0.3, 1);
}
.cookie-banner.hide {
  transform: translateY(110%);
}
.cookie-banner p {
  color: #263238;
  margin-bottom: 0;
  font-size: 0.95rem;
}
.cookie-actions {
  display: flex;
  gap: 14px;
}
.cookie-btn {
  padding: 8px 20px;
  border-radius: 22px;
  border: none;
  font-weight: 600;
  background: #47617A;
  color: #fff;
  cursor: pointer;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  transition: background 0.18s, color 0.18s;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #ADE5D5;
  color: #263238;
}
.cookie-btn.secondary {
  background: #ADE5D5;
  color: #263238;
  border: 1px solid #47617A;
}
.cookie-btn.secondary:hover, .cookie-btn.secondary:focus {
  background: #47617A;
  color: #fff;
}
/* Cookie Modal */
.cookie-modal-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(71,97,122,0.15);
  z-index: 1100;
  align-items: center;
  justify-content: center;
  transition: opacity 0.35s;
}
.cookie-modal-overlay.open {
  display: flex;
}
.cookie-modal {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 42px rgba(71,97,122,0.18);
  padding: 38px 34px 30px 34px;
  max-width: 95vw;
  width: 390px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  animation: popIn 0.4s cubic-bezier(.7,0,.3,1);
}
@keyframes popIn {
  0% { transform: scale(0.85); opacity: 0; }
  80% { transform: scale(1.06); opacity: 1; }
  100% { transform: scale(1); opacity: 1; }
}
.cookie-modal h3 {
  font-size: 1.23rem;
  margin-bottom: 0.5rem;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 16px 0 10px 0;
}
.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid #F7EAD9;
}
.cookie-category:last-child { border-bottom: none; }
.cookie-category label {
  font-weight: 500;
  color: #31465b;
}
.cookie-category input[type="checkbox"] {
  accent-color: #47617A;
}
.cookie-modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 14px;
  margin-top: 16px;
}
.cookie-modal .close-btn {
  background: none;
  border: none;
  color: #47617A;
  font-size: 2rem;
  position: absolute;
  top: 12px;
  right: 14px;
  cursor: pointer;
  z-index: 1110;
}

/* ==== RESPONSIVE === */
@media (max-width: 900px) {
  .container {
    max-width: 96vw;
  }
  .feature-grid, .service-grid, .testimonial-list {
    gap: 18px;
  }
  .content-wrapper {
    gap: 16px;
  }
  footer .container {
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
  }
  .footer-menu, .contact-summary {
    align-items: flex-start;
    text-align: left;
  }
}
@media (max-width: 768px) {
  html {
    font-size: 95%;
  }
  .container {
    padding-left: 10px;
    padding-right: 10px;
  }
  .content-wrapper {
    gap: 12px;
  }
  .hero-section {
    padding: 32px 12px 26px 12px;
    border-radius: 14px;
  }
  .feature-grid, .service-grid, .testimonial-list {
    flex-direction: column;
    gap: 18px;
  }
  .feature-card, .service-card, .testimonial-card {
    max-width: 100%;
    min-width: 0;
  }
  .section{
    padding: 30px 8px;
    margin-bottom: 36px;
  }
  .footer-brand img {
    height: 26px;
  }
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 15px 8px;
  }
  .cookie-modal {
    padding: 24px 10px 20px 10px;
    width: 97vw;
    min-width: 0;
  }
  .mobile-menu {
    max-width: 98vw;
    width: 98vw;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  .contact-summary {
    text-align: left;
    align-items: flex-start;
  }
}

@media (max-width: 500px) {
  html {
    font-size: 88%;
  }
  h1     { font-size: 2rem; }
  h2     { font-size: 1.4rem; }
  h3     { font-size: 1.08rem; }
  .hero-section {
    padding: 18px 4px 18px 4px;
  }
  .section {
    padding: 14px 2px;
    margin-bottom: 22px;
  }
  footer {
    padding: 28px 0 20px 0;
  }
}

/* ==== FOCUS OUTLINE ACCESSIBILITY ==== */
a:focus, button:focus, .cta:focus, .service-cta:focus, .cookie-btn:focus, .mobile-menu-close:focus {
  outline: 2.5px solid #ADE5D5;
  outline-offset: 2px;
}

/* ==== MISC ==== */
ul li, ol li {
  margin-bottom: 10px;
  padding-left: 18px;
  position: relative;
}
ul li:before {
  content: '•';
  position: absolute;
  left: 0;
  color: #ADE5D5;
  font-size: 1rem;
  top: 2px;
}

.section a.cta, .section a.cta.primary, .section a.cta.secondary {
  margin-top: 10px;
}

::-webkit-scrollbar {
  width: 10px;
  background: #F7EAD9;
}
::-webkit-scrollbar-thumb {
  background: #ADE5D5;
  border-radius: 10px;
}

/* ==== END OF STYLE ==== */
