/* === CSS RESET & BASE === */
html {
  box-sizing: border-box;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  margin: 0;
  padding: 0;
  background: #FFF8F3;
  color: #18334B;
  font-family: 'Roboto', Arial, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}
img {
  max-width: 100%;
  display: block;
  border-radius: 12px;
}
a {
  color: #5CC672;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #18334B;
}
ul, ol {
  margin: 0 0 24px 24px;
  padding: 0;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #18334B;
  margin: 0 0 16px 0;
  font-weight: 700;
}
h1 {
  font-size: 2.3rem;
  line-height: 1.22;
}
h2 {
  font-size: 1.75rem;
  line-height: 1.27;
}
h3 {
  font-size: 1.3rem;
  line-height: 1.3;
  margin-bottom: 12px;
}
p {
  margin: 0 0 18px 0;
}
table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 24px;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 3px 12px 0 rgba(24,51,75,0.05);
}
thead {
  background: #F5E1D2;
}
th, td {
  text-align: left;
  padding: 15px 16px;
}
th {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.07rem;
}
tr:not(:last-child) td {
  border-bottom: 1px solid #EEE3D0;
}

/* === CONTAINER & LAYOUT === */
.container {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 16px;
}
.content-wrapper {
  width: 100%;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 3px 27px 0 rgba(218,161,123,0.09);
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
}
@media (max-width: 768px) {
  .section {
    padding: 26px 7px;
    margin-bottom: 38px;
    border-radius: 16px;
  }
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  background: #fff7ef;
  border-radius: 22px;
  box-shadow: 0 2px 10px 0 rgba(174,128,90,0.045);
  padding: 28px 20px;
  position: relative;
  transition: box-shadow .2s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 8px 34px 0 rgba(92,198,114,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;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  .content-grid {
    flex-direction: column;
    gap: 15px;
  }
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px;
  border-radius: 20px;
  background: #FFF8F3;
  box-shadow: 0 2px 18px 0 rgba(24,51,75,0.06);
  min-width: 220px;
  max-width: 345px;
  flex: 1 1 280px;
  margin-bottom: 20px;
}
.testimonial-card p {
  color: #422105;
  font-size: 1.04rem;
  margin-bottom: 8px;
}
.testimonial-card span {
  color: #5a3519;
  font-size: .93rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-style: italic;
}

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

.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.feature-grid > div {
  flex: 1 1 220px;
  min-width: 220px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 1px 8px 0 rgba(218,161,123,0.07);
  padding: 20px 16px;
  text-align: center;
  margin-bottom: 8px;
  transition: box-shadow .18s;
}
.feature-grid > div:hover, .feature-grid > div:focus-within {
  box-shadow: 0 5px 30px 0 rgba(92,198,114,0.08);
}
.feature-grid img {
  margin: 0 auto 12px auto;
  height: 40px;
  width: 40px;
  border-radius: 12px;
  background: #F5E1D2;
  padding: 7px;
}

.rating-summary {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0 0 0;
}
.rating-summary img {
  height: 24px;
}

.cta-banner {
  background: #FFE3C3;
  border-radius: 22px;
  box-shadow: 0 2px 18px 0 rgba(218,161,123,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 36px 12px;
  margin: 46px 0 0 0;
}
.cta-banner h2 {
  color: #B23C00;
}
.cta-banner p {
  color: #422105;
}

/* === NAVIGATION & HEADER === */
header {
  width: 100%;
  background: #fff;
  position: relative;
  box-shadow: 0 2px 10px 0 rgba(210,151,107,0.035);
  z-index: 22;
}
.main-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  padding: 13px 0 7px 0;
}
.main-nav > a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #18334B;
  padding: 6px 16px;
  border-radius: 12px;
  font-weight: 500;
  font-size: 1.03rem;
  transition: background .16s, color .16s;
}
.main-nav > a:hover, .main-nav > a:focus {
  background: #F5E1D2;
  color: #B23C00;
}
.main-nav img {
  height: 36px;
  margin-right: 12px;
  border-radius: 10px;
}

.cta-btn {
  background: #5CC672;
  color: #fff !important;
  font-family: 'Montserrat', Arial, sans-serif;
  border: none;
  border-radius: 16px;
  padding: 9px 29px;
  font-size: 1.05rem;
  font-weight: 600;
  box-shadow: 0 2px 8px 0 rgba(92,198,114,.15);
  cursor: pointer;
  margin-left: 8px;
  transition: background .19s, box-shadow .22s, transform .12s;
  display: inline-block;
}
.cta-btn:hover, .cta-btn:focus {
  background: #33844D;
  transform: translateY(-2px) scale(1.017);
  box-shadow: 0 8px 22px 0 rgba(92,198,114,0.18);
}

/* --- Mobile Nav --- */
.mobile-menu-toggle {
  display: none;
  position: absolute;
  right: 16px;
  top: 16px;
  z-index: 99;
  font-size: 2.1rem;
  background: #fff;
  color: #18334B;
  border: none;
  border-radius: 16px;
  padding: 8px 19px;
  cursor: pointer;
  box-shadow: 0 2px 7px 0 rgba(24,51,75,.06);
  transition: box-shadow .17s, background .15s;
}
.mobile-menu-toggle:active {
  background: #F5E1D2;
  box-shadow: 0 3px 11px 0 rgba(92,198,114,0.08);
}
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #fff;
  z-index: 999;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(.7,.2,.1,1);
  flex-direction: column;
  justify-content: flex-start;
  padding-top: 32px;
}
.mobile-menu.open {
  display: flex;
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  color: #5CC672;
  font-size: 2.4rem;
  border: none;
  border-radius: 16px;
  position: absolute;
  top: 19px;
  right: 20px;
  cursor: pointer;
  z-index: 1001;
  padding: 5px 12px;
  transition: background .16s;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  background: #F5E1D2;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
  padding: 48px 32px 12px 32px;
  font-size: 1.25rem;
}
.mobile-nav a {
  color: #18334B;
  padding: 10px 0;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  border-radius: 13px;
  width: 100%;
  transition: background .15s;
}
.mobile-nav a:focus, .mobile-nav a:hover {
  background: #F5E1D2;
  color: #B23C00;
}
@media (max-width: 1024px) {
  .main-nav {
    gap: 10px;
  }
}
@media (max-width: 870px) {
  .main-nav {
    gap: 7px;
  }
  .main-nav > a {
    padding: 6px 7px;
    font-size: 0.97rem;
  }
}
@media (max-width: 770px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* === HERO SECTION & SNIPPETS === */
.hero-section {
  background: #FFE3C3;
  padding: 54px 0 44px 0;
  border-radius: 0 0 45px 45px;
  box-shadow: 0 4px 35px 0 rgba(218,161,123,0.10);
}
.hero-section .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-section .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 780px;
  gap: 15px;
}
.hero-section h1 {
  color: #B23C00;
  font-size: 2.5rem;
  line-height: 1.18;
}
.hero-section p {
  color: #422105;
  font-size: 1.16rem;
}
@media (max-width: 700px) {
  .hero-section {
    padding: 32px 0 23px 0;
    border-radius: 0 0 18px 18px;
  }
  .hero-section .content-wrapper h1 {
    font-size: 1.45rem;
  }
}

/* === ACCORDIONS (FAQ) === */
.faq-accordion > div {
  background: #FFF8F3;
  border-radius: 14px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px 0 rgba(218,161,123,0.07);
  padding: 19px 20px;
  transition: box-shadow .12s;
}
.faq-accordion h2 {
  font-size: 1.19rem;
  color: #B23C00;
  margin: 0 0 7px 0;
}
.faq-accordion p {
  color: #433635;
  font-size: 1.07rem;
}
.faq-accordion > div:focus-within, .faq-accordion > div:hover {
  box-shadow: 0 4px 22px 0 rgba(92,198,114,0.09);
}

/* === BUTTON RESET FOR LEGAL === */
button {
  font-family: inherit;
  font-size: 1rem;
  line-height: inherit;
  background: none;
  border: none;
  cursor: pointer;
  outline: none;
  transition: background .13s, box-shadow .13s;
}

/* === TABLES (PREZZI) === */
.pricing-section table {
  margin: 28px 0 24px 0;
}
.pricing-section th, .pricing-section td {
  font-size: 1.04rem;
}

/* === FOOTER === */
footer {
  background: #18334B;
  padding: 38px 0 0 0;
  color: #F5E1D2;
}
.footer-main {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 24px;
}
.footer-main img {
  height: 50px;
  border-radius: 16px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.footer-nav a {
  color: #FBBB6C;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.08rem;
  font-weight: 500;
  border-radius: 8px;
  transition: background .15s, color .15s;
  padding: 5px 8px;
}
.footer-nav a:focus, .footer-nav a:hover {
  color: #fff;
  background: #5CC672;
}
.contact-details p {
  margin: 0 0 8px 0;
  color: #ffeba3;
  font-size: .99rem;
  display: flex;
  align-items: center;
  gap: 7px;
}
.contact-details img {
  height: 18px;
  width: 18px;
  border-radius: 7px;
}
.copyright {
  text-align: center;
  color: #B9C7DC;
  font-size: 0.96rem;
  margin: 0 0 20px 0;
}
@media (max-width: 800px) {
  .footer-main {
    flex-direction: column;
    gap: 22px;
    align-items: flex-start;
  }
}

/* === MISC & UTILITY === */
.text-section {
  font-size: 1.04rem;
  color: #4D3225;
  max-width: 780px;
  margin-bottom: 22px;
}
.address-map {
  background: #fff7ef;
  border-radius: 14px;
  padding: 18px 15px;
  color: #5a3519;
  box-shadow: 0 1px 6px 0 rgba(218,161,123,0.09);
  margin-top: 12px;
}
.team-brief, .certifications, .custom-quotes, .inclusions-exclusions {
  background: #FFF8F3;
  border-radius: 16px;
  padding: 16px 18px;
  margin-bottom: 22px;
}
.value-section ul, .why-us-section ul, .tips-section ul {
  padding-left: 20px;
  list-style: disc inside;
  margin-bottom: 11px;
}
.value-section li, .why-us-section li, .tips-section li, .inclusions-exclusions li {
  margin-bottom: 7px;
}

/* --- Service benefits / Legal --- */
.service-benefits ul {
  padding-left: 20px;
  margin-bottom: 0;
}
.legal-section {
  background: #fff;
  margin: 0 0 60px 0;
  border-radius: 24px;
  box-shadow: 0 3px 27px 0 rgba(218,161,123,0.09);
  padding: 40px 20px;
}

.thank-you-section {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 2px 21px 0 rgba(24,51,75,0.08);
  padding: 52px 20px 48px 20px;
  text-align: center;
  margin: 60px 0 40px 0;
}

/* === MOBILE RESPONSIVENESS === */
@media (max-width: 600px) {
  .container {
    padding: 0 4px;
  }
  .testimonial-card {
    padding: 14px 8px;
    min-width: unset;
    max-width: 99vw;
  }
  .content-grid,
  .feature-grid {
    flex-direction: column;
    gap: 12px;
  }
}

/* === COOKIE CONSENT BANNER & MODAL === */
.cookie-consent-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2000;
  width: 100vw;
  background: #fff7ef;
  color: #432712;
  box-shadow: 0 -2px 14px 0 rgba(92,198,114,0.10);
  padding: 22px 14px 22px 14px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 1.01rem;
  border-radius: 18px 18px 0 0;
  opacity: 1;
  animation: cookieSlideIn .6s cubic-bezier(.7,.05,.3,1);
}
@keyframes cookieSlideIn {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-consent-banner.hidden {
  display: none;
}
.cookie-consent-banner .cookie-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  padding: 9px 19px;
  border-radius: 12px;
  border: none;
  margin-right: 10px;
  font-size: 0.99rem;
  margin-top: 0;
  margin-bottom: 0;
  cursor: pointer;
  transition: background .15s, color .15s, box-shadow .15s;
}
.cookie-consent-banner .cookie-btn.accept {
  background: #5CC672;
  color: #fff;
  box-shadow: 0 2px 9px 0 rgba(92,198,114,0.12);
}
.cookie-consent-banner .cookie-btn.accept:hover, .cookie-consent-banner .cookie-btn.accept:focus {
  background: #33844D;
}
.cookie-consent-banner .cookie-btn.reject {
  background: #FFE3C3;
  color: #B23C00;
}
.cookie-consent-banner .cookie-btn.reject:hover, .cookie-consent-banner .cookie-btn.reject:focus {
  background: #F5E1D2;
  color: #912b00;
}
.cookie-consent-banner .cookie-btn.settings {
  background: #18334B;
  color: #fff;
}
.cookie-consent-banner .cookie-btn.settings:hover, .cookie-consent-banner .cookie-btn.settings:focus {
  background: #11501E;
}

/* --- Cookie Modal --- */
.cookie-modal-overlay {
  display: none;
  position: fixed;
  z-index: 2200;
  left: 0;top: 0;right:0;bottom:0;
  background: rgba(24,51,75,0.32);
  align-items: center;
  justify-content: center;
}
.cookie-modal-overlay.active {
  display: flex;
}
.cookie-modal {
  background: #fff7ef;
  color: #31211a;
  border-radius: 22px;
  box-shadow: 0 8px 40px 0 rgba(92,198,114,0.10);
  max-width: 440px;
  width: 90vw;
  padding: 28px 18px 20px 18px;
  position: relative;
  animation: modalPop .28s cubic-bezier(.64,.23,.52,.98);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
@keyframes modalPop {
  from { opacity: .3; transform: scale(.91); }
  to { opacity: 1; transform: scale(1); }
}
.cookie-modal h2 {
  color: #B23C00;
  margin-bottom: 10px;
  font-size: 1.35rem;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 12px 0 0 0;
}
.cookie-modal label {
  flex: 1 1 auto;
  cursor: pointer;
  font-size: 1.04rem;
}
.cookie-modal input[type="checkbox"] {
  accent-color: #5CC672;
  width: 18px;
  height: 18px;
  border-radius: 6px;
}
.cookie-modal .cookie-modal-btns {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  padding-top: 10px;
}
.cookie-modal .close-cookie-modal {
  position: absolute;
  top: 13px;
  right: 15px;
  background: none;
  color: #5CC672;
  font-size: 2rem;
  border: none;
  border-radius: 12px;
  transition: background .14s;
}
.cookie-modal .close-cookie-modal:hover, .cookie-modal .close-cookie-modal:focus {
  background: #F5E1D2;
}

.cookie-modal .category-toggle[disabled] {
  opacity: .61;
  pointer-events: none;
}

@media(max-width:480px){
  .cookie-modal {
    padding: 16px 2vw;
  }
}

/* === SLIDER / TESTIMONIALS === */
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-bottom: 18px;
}
@media (max-width: 700px) {
  .testimonial-slider {
    gap: 12px;
    flex-direction: column;
  }
}

/* === Animations & Microinteractions === */
.cta-btn, .main-nav > a, .mobile-menu-toggle, .mobile-menu-close, .mobile-nav a, .footer-nav a, .cookie-consent-banner .cookie-btn, .cookie-modal .close-cookie-modal {
  outline: none;
  transition: box-shadow 0.15s, background 0.15s, color 0.13s, transform 0.12s;
}
.cta-btn:active, .main-nav > a:active, .mobile-menu-toggle:active, .cookie-consent-banner .cookie-btn:active {
  transform: scale(0.987) translateY(1px);
}

/* === SCROLLBARS (light friendly theme) === */
::-webkit-scrollbar {
  width: 10px;
  background: #FFF8F3;
  border-radius: 7px;
}
::-webkit-scrollbar-thumb {
  background: #F5E1D2;
  border-radius: 23px;
}

/* === ACCESSIBILITY COLORS FOR TESTIMONIALS, Reviews === */
.testimonials-section, .testimonial-card {
  background: #fff7ef;
}
.testimonial-card p, .testimonial-card span {
  color: #2B1C14;
}

/* === OVERRIDES FOR ACCENTUATION === */
strong {
  font-weight: 700;
  color: #B23C00;
  font-family: 'Montserrat', Arial, sans-serif;
}

/* === PRINT === */
@media print {
  .mobile-menu, .mobile-menu-toggle, .cookie-consent-banner, .cookie-modal-overlay { display: none !important; }
}

/**** CRITICAL FLEX PATCHES FOR NON-OVERLAP AND GAPS ****/
.section, .feature-section, .about-section, .why-us-section, .contact-section, .legal-section, .faq-section, .thank-you-section, .pricing-section, .services-section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
@media (max-width: 600px) {
  .section, .feature-section, .about-section, .why-us-section, .contact-section, .legal-section, .faq-section, .thank-you-section, .pricing-section, .services-section {
    padding: 22px 7px;
    margin-bottom: 32px;
  }
}

.card-container,
.feature-grid,
.content-grid,
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card, .testimonial-card, .feature-grid > div {
  margin-bottom: 20px;
}

/**** END OF FILE ****/
