/* CSS RESET & NORMALIZE */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html, body {
  height: 100%;
  width: 100%;
  font-size: 16px;
}
body {
  min-height: 100vh;
  background: #F4F8FB;
  color: #1B2633;
  font-family: 'Open Sans', Arial, sans-serif;
  line-height: 1.6;
}
img {
  max-width: 100%;
  display: block;
  border: 0;
}
a {
  color: #16697A;
  text-decoration: none;
  transition: color .2s;
}
a:hover,
a:focus {
  color: #C37200;
  text-decoration: underline;
}

/* --- TYPOGRAPHY SCALE --- */
h1,
h2,
h3,
h4 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.01em;
}
h1 { font-size: 2.375rem; margin-bottom: 20px; }
h2 { font-size: 1.75rem; margin-bottom: 18px; }
h3 { font-size: 1.25rem; margin-bottom: 14px; }
h4 { font-size: 1.125rem; margin-bottom: 8px; }
p, ul, ol, li {
  font-size: 1rem;
  font-family: 'Open Sans', Arial, sans-serif;
  margin-bottom: 14px;
}
strong { font-weight: bold; }

@media (max-width: 768px) {
  h1 { font-size: 1.625rem; }
  h2 { font-size: 1.25rem; }
  h3 { font-size: 1.1rem; }
}

/* --- CONTAINER & GRID SYSTEM --- */
.container {
  width: 100%;
  max-width: 1130px;
  margin: 0 auto;
  padding: 0 20px;
}

.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* --- HEADER & NAV --- */
header {
  background: #ffffff;
  border-bottom: 3px solid #16697A;
  margin-bottom: 0;
  padding: 0;
}
.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  max-width: 1130px;
  margin: 0 auto;
  position: relative;
}
.logo-link img {
  height: 54px;
  width: auto;
  aspect-ratio: 1.9/1;
  margin-right: 18px;
  display: block;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.075rem;
  font-weight: 500;
  color: #16697A;
  padding: 8px 8px;
  border-radius: 6px;
  text-transform: uppercase;
  transition: color .22s, background .22s;
}
.main-nav a:hover,
.main-nav a:focus {
  color: #C37200;
  background: #F4F8FB;
}
.cta-btn {
  background: #C37200;
  color: #FFF;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.04em;
  border-radius: 12px;
  padding: 10px 26px;
  border: none;
  margin-left: 18px;
  font-size: 1rem;
  box-shadow: 0 2px 6px rgba(22,105,122,0.07);
  cursor: pointer;
  transition: background .2s, transform .12s, box-shadow .2s;
  outline: none;
  text-transform: uppercase;
  display: inline-block;
}
.cta-btn:hover, .cta-btn:focus {
  background: #16697A;
  color: #FFF;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 5px 16px rgba(22,105,122,0.12);
}

/* Mobile menu button */
.mobile-menu-toggle {
  background: none;
  border: none;
  color: #16697A;
  font-size: 2rem;
  cursor: pointer;
  display: none;
  margin-left: 16px;
  z-index: 202;
  padding: 4px 12px;
  border-radius: 8px;
  transition: background .18s;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: #F5A623;
  color: #fff;
}
/* Responsive nav - show burger */
@media (max-width: 970px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* --- MOBILE MENU --- */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #FFFFFF;
  box-shadow: 0 8px 40px rgba(22,105,122,.07);
  transform: translateX(-100%);
  transition: transform .34s cubic-bezier(.73,.03,.45,.87);
  z-index: 2050;
  display: flex;
  flex-direction: column;
  padding-top: 34px;
  padding-left: 0;
  width: 100vw;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #16697A;
  font-size: 2.2rem;
  cursor: pointer;
  position: absolute;
  top: 20px; right: 24px;
  z-index: 2100;
  padding: 4px 12px;
  border-radius: 8px;
  transition: background .14s;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  background: #F5A623;
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 60px;
  padding: 0 40px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.26rem;
  font-weight: 600;
  color: #16697A;
  padding: 16px 0 16px 0;
  margin-bottom: 2px;
  border-bottom: 2.5px solid #F4F8FB;
  transition: color .18s, background .12s;
  border-radius: 8px;
  outline: none;
  text-transform: uppercase;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #C37200;
  background: #F4F8FB;
}
@media (max-width: 540px) {
  .mobile-nav {
    padding: 0 16px;
  }
}

/* --- HERO --- */
.hero {
  background: #16697A;
  color: #fff;
  min-height: 360px;
  margin-bottom: 60px;
  display: flex;
  align-items: center;
  justify-content: stretch;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.hero .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  padding: 40px 0;
  width: 100%;
}
.hero h1 {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2.25rem;
  line-height: 1.2;
  margin-bottom: 12px;
  letter-spacing: 0.02em;
}
.hero p {
  color: #F4F8FB;
  font-size: 1.18rem;
  margin-bottom: 18px;
}

@media (max-width: 768px) {
  .hero .container {
    padding-left: 0;
    padding-right: 0;
  }
  .hero h1 {
    font-size: 1.32rem;
  }
  .hero .content-wrapper {
    padding: 26px 0;
  }
}

/* --- SECTIONS AND SPACING --- */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 3px 10px rgba(22,105,122,0.07);
}
.features,
.services,
.pricing,
.faq,
.review-form,
.benefits,
.about-short,
.why-us,
.team,
.legal,
.testimonials,
.badges,
.cta,
.contact,
.thank-you,
.services-overview {
  margin-bottom: 60px;
  padding: 40px 0;
}
.container + .container {
  margin-top: 40px;
}

/* --- FEATURE GRID --- */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 24px;
}
.feature {
  background: #F4F8FB;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(22,105,122,0.07);
  padding: 28px 24px;
  flex: 1 1 224px;
  min-width: 240px;
  max-width: 340px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow .18s, transform .15s;
  border: 2.5px solid #E3ECF6;
  margin-bottom: 20px;
  position: relative;
}
.feature img {
  width: 36px;
  height: 36px;
  margin-bottom: 14px;
}
.feature h3 {
  color: #16697A;
  font-size: 1.14rem;
  margin-bottom: 10px;
}
.feature:hover, .feature:focus-within {
  box-shadow: 0 4px 24px rgba(22,105,122,0.14);
  transform: translateY(-3px) scale(1.04);
}

@media (max-width: 900px) {
  .feature-grid {
    gap: 14px;
  }
  .feature {
    min-width: 150px;
    padding: 18px 10px;
  }
}

@media (max-width: 768px) {
  .feature-grid {
    flex-direction: column;
  }
  .feature {
    width: 100%;
    min-width: unset;
    max-width: unset;
  }
}

/* --- CARD CONTAINERS --- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 32px;
}
.card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(22,105,122,0.07);
  margin-bottom: 20px;
  position: relative;
  padding: 24px 20px;
  flex: 1 1 280px;
  min-width: 240px;
  transition: box-shadow .18s, transform .12s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 6px 30px rgba(22,105,122,0.20);
  transform: translateY(-2px) scale(1.02);
}

/* --- FLEX CONTENT GRIDS --- */
.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) {
  .content-grid, .text-image-section {
    flex-direction: column;
    gap: 18px;
  }
}

/* --- FEATURE ITEM --- */
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #F4F8FB;
  border-radius: 12px;
  padding: 16px 14px;
}

/* --- TESTIMONIALS --- */
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #fff;
  border: 2.5px solid #E3ECF6;
  border-radius: 20px;
  box-shadow: 0 3px 14px rgba(22,105,122,0.10);
  padding: 20px 24px;
  margin-bottom: 20px;
  position: relative;
  color: #183040;
  transition: box-shadow .16s, border-color .20s;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  box-shadow: 0 10px 28px rgba(198,114,0,0.18);
  border-color: #C37200;
}
.testimonial-card .star-rating {
  min-width: 94px;
  display: flex;
  align-items: center;
  gap: 3px;
}
.testimonial-card p {
  font-size: 1.09rem;
  margin-bottom: 0;
  flex: 2 1 auto;
  color: #183040;
}
.review-author {
  font-size: .99rem;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #16697A;
  margin-top: 0;
  margin-left: 16px;
  font-weight: 600;
}
@media (max-width: 670px) {
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 18px 10px;
  }
}

/* --- CTA SECTIONS --- */
.cta {
  background: #F4F8FB;
  border-radius: 22px;
  box-shadow: 0 2px 7px rgba(22,105,122,0.06);
  text-align: left;
  margin: 0 0 60px 0;
}
.cta .content-wrapper {
  align-items: flex-start;
  gap: 18px;
}
.cta h2 {
  color: #16697A;
}
.cta .cta-btn {
  margin-top: 12px;
}

/* --- ABOUT SHORT / TEAM / WHY US --- */
.trust-points,
.usp-list,
.core-team,
.list-of-benefits,
.badge-list,
.faq-list,
.included-services-list,
.contact-details,
.service-list-brief,
.price-table {
  margin-bottom: 18px;
}
.trust-points li,
.usp-list li,
.core-team li,
.list-of-benefits li,
.badge-list li,
.faq-list li,
.included-services-list li,
.contact-details li,
.service-list-brief li,
.step-by-step-list li {
  margin-bottom: 12px;
  padding-left: 2px;
  position: relative;
}

.certifications,
.certification-explanation,
.before-after,
.contact-info,
.reliability-note {
  background: #F4F8FB;
  border-radius: 10px;
  padding: 15px 18px;
  margin: 16px 0 0 0;
  color: #16697A;
  font-size: 1.02rem;
  font-family: 'Montserrat', Arial, sans-serif;
  display: flex;
  align-items: center;
  gap: 12px;
}
.certifications img { width: 28px; height: 28px; }

/* --- TABLES --- */
.price-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 30px;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 2px 8px rgba(22,105,122,0.05);
  overflow: hidden;
}
.price-table th,
.price-table td {
  padding: 14px 12px;
  border: none;
  text-align: left;
  font-size: 1.04rem;
}
.price-table th {
  background: #F4F8FB;
  color: #16697A;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
}
.price-table tr:not(:first-child) {
  border-top: 2.5px solid #E3ECF6;
}
.price-table tr:hover td {
  background: #FFFCF9;
  color: #C37200;
}

/* --- FOOTER --- */
footer {
  background: #16697A;
  color: #fff;
  margin-top: 80px;
  border-top-left-radius: 28px;
  border-top-right-radius: 28px;
  padding: 0 0 12px 0;
}
.footer-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: flex-start;
  justify-content: space-between;
  padding: 32px 0 12px 0;
}
.footer-wrapper > * {
  margin-bottom: 14px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 10px;
}
.footer-nav a {
  color: #F4F8FB;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: .99rem;
  font-weight: 400;
  text-transform: none;
  transition: color .15s;
}
.footer-nav a:hover {
  color: #F5A623;
}
.contact-snippet {
  color: #fff;
  font-size: .97rem;
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 12px;
}
.contact-snippet img {
  vertical-align: middle;
  margin-right: 8px;
  height: 19px;
  width: 19px;
  display: inline-block;
}
.social-links {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-top: 8px;
}
.social-links a img {
  width: 30px;
  height: 30px;
  transition: filter .12s;
}
.social-links a:hover img {
  filter: brightness(1.25) drop-shadow(0px 0px 4px #F5A623);
}
@media (max-width: 950px) {
  .footer-wrapper {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
}

/* --- COOKIE CONSENT BANNER --- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #fff;
  border-top: 3.5px solid #16697A;
  box-shadow: 0 -4px 32px rgba(22,105,122,.10);
  z-index: 3000;
  padding: 22px 20px 18px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  font-size: 1.03rem;
  font-family: 'Open Sans', Arial, sans-serif;
  transition: transform .28s cubic-bezier(.47,1.64,.41,.91), opacity .22s;
}
.cookie-banner.hide { transform: translateY(120%); opacity: 0; }
.cookie-banner p {
  color: #183040;
  margin-bottom: 0;
  flex: 1 1 auto;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-shrink: 0;
}
.cookie-btn, .cookie-settings-btn {
  padding: 9px 20px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  outline: none;
  margin-left: 2px;
  transition: background .13s, color .13s, border .13s;
}
.cookie-btn.accept {
  background: #16697A;
  color: #fff;
  font-weight: bold;
}
.cookie-btn.reject {
  background: #F4F8FB;
  color: #C37200;
  border: 1.5px solid #C37200;
  font-weight: 600;
}
.cookie-settings-btn {
  background: #F5A623;
  color: #fff;
  font-weight: normal;
}
.cookie-btn:hover, .cookie-btn:focus, .cookie-settings-btn:hover, .cookie-settings-btn:focus {
  filter: brightness(1.11);
}
@media (max-width: 700px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    font-size: .97rem;
  }
  .cookie-banner .cookie-actions {
    gap: 9px;
  }
}

/* --- COOKIE MODAL --- */
.cookie-modal-bg {
  display: none;
  position: fixed;
  z-index: 3012;
  left: 0; top: 0; width: 100vw; height: 100vh;
  background: rgba(24,48,64,0.44);
  transition: opacity .21s;
}
.cookie-modal-bg.show { display: flex; opacity: 1; }

.cookie-modal {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 10px 50px rgba(22,105,122,0.18);
  max-width: 370px;
  margin: auto;
  padding: 34px 26px 26px 26px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  animation: fadeInModal .35s cubic-bezier(.73,.03,.45,.87);
}
@keyframes fadeInModal { from { transform: translateY(80px); opacity: 0; } to { transform: none; opacity: 1; } }

.cookie-modal h2 {
  font-size: 1.28rem;
  color: #16697A;
  margin-bottom: 10px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.cookie-category label {
  font-size: .98rem;
  color: #183040;
}
.cookie-toggle {
  width: 36px;
  height: 18px;
  border-radius: 12px;
  background: #E3ECF6;
  position: relative;
  cursor: pointer;
  transition: background 0.18s;
  margin-right: 4px;
  flex-shrink: 0;
}
.cookie-toggle input {
  display: none;
}
.cookie-toggle span {
  display: block;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #C37200;
  position: absolute;
  left: 0;
  top: 0;
  transition: left 0.18s, background .16s;
}
.cookie-toggle input:checked + span {
  left: 18px;
  background: #16697A;
}
.cookie-modal-actions {
  margin-top: 22px;
  display: flex;
  gap: 13px;
  justify-content: flex-end;
}
.cookie-modal .cookie-btn {
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 1rem;
}
.cookie-modal .cookie-btn.accept { background: #16697A; color: #fff; }
.cookie-modal .cookie-btn.reject { background: #F4F8FB; color: #C37200; }
.cookie-modal-close {
  position: absolute;
  right: 16px; top: 12px;
  background: none;
  border: none;
  color: #1B2633;
  font-size: 1.35rem;
  cursor: pointer;
  border-radius: 6px;
}
.cookie-modal-close:hover {
  background: #F5A623;
  color: #fff;
}

/* --- UTILITY CLASSES --- */
.d-flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.flex-col { flex-direction: column; }
.align-center { align-items: center; }
.align-start { align-items: flex-start; }
.justify-between { justify-content: space-between; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }
.hidden { display: none !important; }

/* --- MEDIA QUERIES --- */
@media (max-width: 768px) {
  .section,
  .features,
  .services,
  .pricing,
  .faq,
  .review-form,
  .benefits,
  .about-short,
  .why-us,
  .team,
  .legal,
  .testimonials,
  .badges,
  .cta,
  .contact,
  .thank-you, 
  .services-overview {
    padding: 24px 0;
    margin-bottom: 38px;
    border-radius: 13px;
  }
  .container {
    padding: 0 8px;
  }
  .footer-wrapper {
    padding: 13px 0 10px 0;
    gap: 13px;
  }
}

/* --- GEOMETRIC STRUCTURED DECOR --- */
/* Brand geometric shapes and hard corners to build geometric_structured feel */
.section, .features, .testimonial-card, .card, .cta, .cookie-banner, .cookie-modal {
  border-radius: 18px 28px 18px 28px;
}
.feature, .card, .testimonial-card, .service-list-brief li, .usp-list li {
  border-left: 6px solid #16697A;
}
.feature-grid > .feature:nth-child(even),
.card-container > .card:nth-child(even),
.testimonial-card:nth-child(even) {
  border-left: 6px solid #C37200;
}

hr {
  border: 0; height: 2px; background: #E3ECF6; margin: 32px 0;
}

/* --- FORMS (for review/contact etc.) --- */
input[type="text"],
input[type="email"],
textarea {
  border: 2px solid #E3ECF6;
  border-radius: 8px;
  font-size: 1rem;
  padding: 10px 15px;
  background: #fff;
  margin-bottom: 16px;
  width: 100%;
  font-family: 'Open Sans', Arial, sans-serif;
  transition: border .18s;
}
input[type="text"]:focus,
input[type="email"]:focus,
textarea:focus {
  border: 2px solid #16697A;
  outline: none;
}
button, input[type="submit"] {
  font-family: 'Montserrat', Arial, sans-serif;
}

/* --- BADGES & CERTIFICATES --- */
.badge-list {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-bottom: 12px;
}
.badge-list li {
  display: flex;
  align-items: center;
  gap: 9px;
  background: #F4F8FB;
  border-radius: 14px;
  border-left: 5px solid #16697A;
  padding: 11px 18px;
  min-width: 175px;
  font-size: 1rem;
}
.badge-list li img {
  width: 24px; height: 24px;
}
@media (max-width: 600px) {
  .badge-list {
    flex-direction: column;
    gap: 11px;
  }
}

/* --- STEP LISTS (Process) --- */
.step-by-step-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 22px;
}
.step-by-step-list li {
  display: flex;
  align-items: center;
  gap: 18px;
  background: #F4F8FB;
  border-radius: 9px;
  padding: 12px 14px;
  border-left: 5px solid #C37200;
}
.step-by-step-list li img {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

/* --- THANK YOU SECTION --- */
.thank-you h1 {
  color: #16697A;
}

/* --- MISC --- */
::-webkit-input-placeholder { color: #88A0B6; }
::-moz-placeholder { color: #88A0B6; }
:-ms-input-placeholder { color: #88A0B6; }
::placeholder { color: #88A0B6; }

[tabindex]:focus-visible { outline: 2px solid #16697A; outline-offset: 1px; }

/* --- END GEOMETRIC/STRUCTURED BRANDING --- */