/* CSS RESET AND NORMALIZER */
html {
  box-sizing: border-box;
  font-size: 100%;
}
*, *::before, *::after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body, h1, h2, h3, h4, h5, h6, p, ul, ol, li, figure, figcaption, blockquote, dl, dd {
  margin: 0;
  padding: 0;
}
ul, ol {
  list-style: none;
}
a {
  text-decoration: none;
  color: inherit;
}
button, input, select, textarea {
  font: inherit;
  background: none;
  border: none;
  outline: none;
}
img, picture {
  max-width: 100%;
  display: block;
}

/* CSS VARIABLES */
:root {
  --primary: #20565E;
  --primary-dark: #174048;
  --secondary: #FFFFFF;
  --secondary-soft: #FAFAFA;
  --accent: #E1A400;
  --accent-light: #F6C44D;
  --text: #1E2329;
  --text-light: #3D4A57;
  --border: #EBF1F3;
  --card-bg: #FFFFFF;
  --card-shadow: 0 4px 24px 0 rgba(32,86,94,0.06);
  --radius: 16px;
  --radius-s: 8px;

  --font-display: 'Montserrat', Arial, Helvetica, sans-serif;
  --font-body: 'Roboto', Arial, Helvetica, sans-serif;
}

/* TYPOGRAPHY */
body {
  font-family: var(--font-body);
  color: var(--text);
  background-color: var(--secondary);
  font-size: 16px;
  line-height: 1.7;
  min-height: 100vh;
  letter-spacing: .01em;
}
h1, .h1 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.18;
  margin-bottom: 20px;
}
h2, .h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 16px;
}
h3, .h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--primary);
  margin-bottom: 10px;
}
p, li, address {
  font-size: 1rem;
  color: var(--text-light);
}
strong {
  font-weight: 600;
  color: var(--primary);
}

/* GLOBAL LAYOUT */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
main {
  padding-top: 76px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.text-section {
  max-width: 720px;
  margin: 0 auto 32px auto;
  text-align: left;
}

/* HEADER + NAV */
header {
  width: 100%;
  position: sticky;
  top: 0;
  background: var(--secondary-soft);
  box-shadow: 0 2px 16px 0 rgba(32, 86, 94, .07);
  z-index: 1000;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  gap: 18px;
}
header img {
  height: 48px;
}
.main-nav {
  display: flex;
  gap: 24px;
  align-items: center;
}
.main-nav a {
  color: var(--primary);
  font-weight: 500;
  font-size: 1rem;
  position: relative;
  transition: color 0.2s;
  padding: 4px 0;
}
.main-nav a:hover, .main-nav a:focus {
  color: var(--accent);
}
.btn-primary {
  background: linear-gradient(90deg, var(--primary) 80%, var(--accent-light));
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.06rem;
  font-weight: 600;
  border-radius: var(--radius);
  padding: 12px 32px;
  box-shadow: 0 2px 12px 0 rgba(32,86,94,0.04);
  transition: background 0.2s, transform 0.15s, box-shadow .15s;
  cursor: pointer;
  border: none;
  outline: none;
  display: inline-block;
}
.btn-primary:hover, .btn-primary:focus {
  background: linear-gradient(90deg, var(--primary-dark) 70%, var(--accent));
  transform: translateY(-2px) scale(1.045);
  box-shadow: 0 6px 18px 0 rgba(32,86,94,0.10);
}

/* MOBILE BURGER MENU */
.mobile-menu-toggle {
  display: none;
  background: var(--primary);
  color: #fff;
  border-radius: var(--radius);
  font-size: 2.1rem;
  padding: 6px 16px;
  position: relative;
  z-index: 1201;
  border: none;
  margin-left: 18px;
  cursor: pointer;
  transition: background .15s, transform .15s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: var(--accent);
}
@media (max-width: 1024px) {
  header .main-nav, header .btn-primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: linear-gradient(120deg, var(--primary) 70%, var(--accent) 100%);
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(.74,.04,.26,1.01), box-shadow .20s;
  z-index: 1200;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 0;
  box-shadow: 8px 0 24px 0 rgba(32,86,94,0.18);
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  color: #fff;
  background: none;
  border: none;
  font-size: 2rem;
  align-self: flex-end;
  margin: 22px 32px 8px 0;
  cursor: pointer;
  transition: color .18s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: var(--accent-light);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 12px 32px;
  gap: 10px;
}
.mobile-nav a {
  font-size: 1.35rem;
  font-weight: 500;
  color: #fff;
  border-radius: var(--radius-s);
  padding: 15px 16px 15px 0;
  transition: background .16s, color .14s, padding-left .16s;
}
.mobile-nav a:focus, .mobile-nav a:hover {
  color: var(--accent-light);
  background: rgba(255,255,255,0.10);
  padding-left: 10px;
}
@media (min-width:1025px){
  .mobile-menu, .mobile-menu-toggle {
    display: none !important;
  }
}


/* SECTION SPACING & LAYOUT PATTERNS */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  width: 100%;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  position: relative;
  margin-bottom: 20px;
}
.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;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: var(--card-bg);
  border-radius: var(--radius);
  box-shadow: var(--card-shadow);
  padding: 24px 20px 24px 24px;
  min-width: 230px;
  flex: 1 1 230px;
  margin-bottom: 20px;
  transition: box-shadow .18s, transform .16s;
}
.feature-item:hover {
  box-shadow: 0 8px 32px 0 rgba(32,86,94,0.12);
  transform: translateY(-4px) scale(1.03);
}

/* HERO SECTION */
.hero {
  background: linear-gradient(122deg, var(--primary) 65%, var(--accent) 120%);
  color: #fff;
  padding: 56px 0 72px 0;
  display: flex;
  align-items: center;
  min-height: 340px;
  margin-bottom: 0;
}
.hero .container {
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.hero h1 {
  color: #fff;
  font-size: 2.8rem;
  margin-bottom: 16px;
}
.hero p {
  color: #F2F6F8;
  margin-bottom: 22px;
  font-size: 1.15rem;
}
.hero .btn-primary {
  background: linear-gradient(90deg, var(--accent) 30%, var(--primary) 120%);
  color: #fff;
}

/* FEATURES GRID */
.features .content-wrapper > h2 {
  margin-bottom: 30px;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}
.feature-item img {
  width: 44px;
  height: 44px;
  margin-bottom: 2px;
}

/* SERVICES GRID */
.service-list, .service-categories-list, .usp-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 32px;
}
.services-list .service-grid, .service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-bottom: 32px;
}
.service-item {
  background: var(--card-bg);
  border-radius: var(--radius);
  box-shadow: var(--card-shadow);
  padding: 28px 22px 22px 22px;
  min-width: 225px;
  flex: 1 1 230px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 20px;
  transition: box-shadow .17s, transform .15s;
}
.service-item img {
  width: 44px;
  height: 44px;
}
.service-item:hover {
  box-shadow: 0 8px 33px 0 rgba(32,86,94,0.13);
  transform: translateY(-4px) scale(1.04);
}

.certifications {
  display: flex;
  flex-direction: row;
  gap: 24px;
  margin: 24px 0 16px 0;
}
.certifications img {
  height: 46px;
  width: 46px;
  object-fit: contain;
}

.price-note {
  color: var(--accent);
  font-style: italic;
  margin: 12px 0 0 0;
}

/* TESTIMONIALS */
.testimonials, .testimonials-service, .customer-reviews {
  background: linear-gradient(120deg, #F9FBFC 90%, #FFF8E4 100%);
  padding: 40px 0 56px 0;
}
.testimonials .content-wrapper > h2,
.testimonials-service .content-wrapper > h2,
.customer-reviews h1 {
  margin-bottom: 24px;
  color: var(--primary);
}
.testimonials .testimonial-card,
.testimonials-service .testimonial-card,
.customer-reviews .testimonial-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--card-shadow);
  padding: 26px 28px;
  margin-bottom: 24px;
  max-width: 540px;
  min-width: 260px;
  color: var(--text);
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-left: 6px solid var(--accent);
  transition: box-shadow .18s, border-color .18s;
}
.testimonials .testimonial-card:hover, .testimonials-service .testimonial-card:hover, .customer-reviews .testimonial-card:hover {
  box-shadow: 0 6px 20px 0 rgba(32,86,94,0.13);
  border-left-color: var(--primary);
}
.testimonials .testimonial-card p,
.testimonials-service .testimonial-card p,
.customer-reviews .testimonial-card p {
  color: var(--text);
  font-size: 1.06rem;
}
.rating {
  color: var(--accent);
  font-size: 1.25rem;
  letter-spacing: 0.18em;
  margin-right: 6px;
  font-weight: 600;
}
.author {
  font-size: .99rem;
  color: var(--primary);
  margin-top: 2px;
}

.testimonial-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

/* Values Section, Stats */
.values-reflected ul, .satisfaction-statistics {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 14px;
}
.satisfaction-statistics p {
  font-size: 1.07rem;
  color: var(--primary);
  font-weight: 500;
}

/* HOW IT WORKS STEPS */
.step-by-step-list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 22px;
  margin-bottom: 38px;
}
.step-by-step-list li {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--card-shadow);
  flex: 1 1 240px;
  min-width: 220px;
  padding: 24px 18px 20px 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 20px;
  transition: box-shadow .17s, transform .13s;
}
.step-by-step-list li img {
  width: 44px;
  height: 44px;
}
.step-by-step-list li strong {
  font-size: 1.25rem;
  font-family: var(--font-display);
  color: var(--primary);
  margin-bottom: 6px;
}
.step-by-step-list li:hover {
  box-shadow: 0 8px 29px 0 rgba(32,86,94,0.13);
  transform: translateY(-2px) scale(1.03);
}

/* CTA, SHORT SECTIONS */
.cta-book {
  background: linear-gradient(120deg, var(--primary) 60%, var(--accent-light) 150%);
  color: #fff;
  border-radius: var(--radius);
}
.cta-book h2 {
  color: #fff;
}
.cta-book .btn-primary {
  background: linear-gradient(90deg, var(--accent) 30%, var(--primary-dark) 120%);
}
.support-info {
  color: #fff;
  font-size: .97rem;
  opacity: .82;
}

/* CONTACT PREVIEW & INFO */
.contact-preview ul, .contact-short ul, .where-we-are ul, .contact-form-section ul {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 12px 0 24px 0;
}
.contact-preview li, .contact-short li, .where-we-are li, .contact-form-section li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.07rem;
  color: var(--text-light);
}
.contact-preview img, .contact-short img, .where-we-are img, .contact-form-section img {
  width: 23px;
  height: 23px;
  flex-shrink: 0;
}
.contact-preview .btn-primary {
  margin-top: 14px;
}

/* USP / why-choose-us */
.why-choose-us .usp-list li {
  background: rgba(32,86,94,0.05);
  border-radius: var(--radius-s);
  padding: 10px 18px;
  color: var(--primary);
}

/* FOOTER */
footer {
  background: var(--primary);
  color: #fff;
  padding: 38px 0 0 0;
  font-size: 1rem;
}
footer .container {
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 34px;
  flex-wrap: wrap;
  padding-bottom: 18px;
}
footer img {
  width: 44px;
  height: 44px;
  margin-bottom: 0;
}
.footer-nav {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  margin-bottom: 6px;
}
.footer-nav a {
  color: #fff;
  font-family: var(--font-display);
  font-size: .97rem;
  font-weight: 500;
  opacity: .85;
  transition: opacity .12s;
}
.footer-nav a:hover, .footer-nav a:focus {
  opacity: 1;
  text-decoration: underline;
  color: var(--accent);
}
footer address {
  color: #fff;
  font-style: normal;
  line-height: 1.7;
  font-size: .99rem;
}
footer a {
  color: var(--accent-light);
  text-decoration: underline;
}

/* PAGE SECTIONS (policy/gdpr/etc) */
.privacy-policy, .gdpr-section, .cookies-policy, .terms-section, .thank-you-section {
  background: #FAFBFC;
  border-radius: var(--radius);
  box-shadow: 0 3px 28px 0 rgba(32,86,94,0.07);
  padding: 32px 28px 54px 28px;
  margin-bottom: 42px;
}
@media (max-width: 600px) {
  .privacy-policy, .gdpr-section, .cookies-policy, .terms-section, .thank-you-section {
    padding: 16px 8px 26px 8px;
  }
}

/* COOKIE CONSENT BANNER */
.cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: linear-gradient(90deg, var(--primary) 80%, var(--accent) 120%);
  color: #fff;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 18px 26px;
  z-index: 2200;
  font-size: 1rem;
  box-shadow: 0 -3px 23px 0 rgba(32,86,94,0.09);
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.30s cubic-bezier(.74,.04,.26,1.01), opacity 0.23s;
}
.cookie-consent-banner.active {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}
.cookie-banner-actions {
  display: flex;
  flex-direction: row;
  gap: 18px;
}
.cookie-consent-banner button,
.cookie-banner-actions button {
  padding: 9px 22px;
  border-radius: var(--radius-s);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  box-shadow: 0 2px 6px 0 rgba(32,86,94,0.08);
  border: none;
  cursor: pointer;
  transition: background 0.16s, color 0.14s, transform .11s;
}
.cookie-consent-banner .btn-cookie-accept {
  background: var(--accent);
  color: var(--primary);
}
.cookie-consent-banner .btn-cookie-accept:hover, .cookie-consent-banner .btn-cookie-accept:focus {
  background: var(--accent-light);
  color: var(--primary-dark);
  transform: translateY(-2px) scale(1.04);
}
.cookie-consent-banner .btn-cookie-reject {
  background: #fff;
  color: var(--primary);
}
.cookie-consent-banner .btn-cookie-reject:hover, .cookie-consent-banner .btn-cookie-reject:focus {
  background: #f2f2f2;
}
.cookie-consent-banner .btn-cookie-settings {
  background: transparent;
  border: 1px solid #eee;
  color: #fff;
}
.cookie-consent-banner .btn-cookie-settings:hover, .cookie-consent-banner .btn-cookie-settings:focus {
  background: rgba(255,255,255,0.09);
  color: var(--accent-light);
}

/* COOKIE PREFERENCE MODAL */
.cookie-preferences-modal {
  position: fixed;
  left: 0; right:0; top: 0; bottom:0;
  background: rgba(32,86,94,.45);
  z-index: 2500;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .15s;
}
.cookie-preferences-modal.active {
  opacity: 1;
  pointer-events: all;
}
.cookie-preferences-dialog {
  background: #fff;
  color: var(--text);
  border-radius: var(--radius);
  padding: 32px 26px 18px 26px;
  width: 98vw;
  max-width: 410px;
  box-shadow: 0 7px 28px 0 rgba(32,86,94,0.15);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 20px;
  position: relative;
  animation: fadePopIn .26s cubic-bezier(.67,.02,.34,1.08);
}
@keyframes fadePopIn {
  from {opacity:0; transform:scale(0.96) translateY(24px);}
  to {opacity:1; transform:scale(1) translateY(0);}
}
.cookie-preferences-dialog h2 {
  color: var(--primary);
  margin-bottom: 4px;
  font-size: 1.4rem;
  font-family: var(--font-display);
  font-weight: 600;
}
.cookie-category-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 14px;
}
.cookie-category-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fbfbfd;
  border-radius: var(--radius-s);
  padding: 10px 12px;
}
.cookie-category-item label {
  font-size: 1rem;
  font-weight: 500;
  color: var(--primary);
}
.cookie-category-item input[type=checkbox] {
  accent-color: var(--accent);
  width: 18px; height: 18px;
}
.cookie-category-disabled input {
  accent-color: #aaa;
  cursor: not-allowed;
}
.cookie-preferences-actions {
  display: flex;
  flex-direction: row;
  gap: 16px;
  justify-content: flex-end;
}
.cookie-preferences-close {
  position: absolute;
  right: 15px; top: 15px;
  background: none;
  color: var(--primary);
  font-size: 1.7rem;
  cursor: pointer;
  border: none;
  opacity: .74;
  transition: color .14s, opacity .12s;
}
.cookie-preferences-close:hover, .cookie-preferences-close:focus {
  color: var(--accent);
  opacity: 1;
}

/* RESPONSIVE DESIGN */
@media (max-width: 1024px) {
  .container {
    max-width: 98vw;
  }
  .features .feature-grid,
  .services-list .service-grid,
  .testimonial-grid,
  .content-grid {
    gap: 16px;
  }
  .footer-nav {
    gap: 14px;
  }
  .text-image-section, .content-grid, .feature-grid, .service-grid {
    flex-direction: column;
  }
  footer .container {
    flex-direction: column;
    gap: 18px;
  }
}
@media (max-width: 768px) {
  html {
    font-size: 16px;
  }
  main {
    padding-top: 56px;
  }
  header .container {
    min-height: 56px;
    padding: 0 12px;
  }
  .hero {
    min-height: 230px;
    padding: 30px 0 36px 0;
  }
  .section {
    margin-bottom: 36px;
    padding: 22px 6px;
  }
  .feature-item, .service-item, .testimonial-card, .step-by-step-list li {
    min-width: 120px;
    padding: 18px 10px 18px 10px;
  }
  .content-grid, .testimonial-grid, .feature-grid, .service-grid, .card-container {
    flex-direction: column;
    gap: 18px;
  }
  .footer-nav {
    flex-wrap: wrap;
    gap: 8px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
  }
  .testimonial-grid {
    gap: 12px;
  }
}
@media (max-width: 500px) {
  h1, .h1 {
    font-size: 1.68rem;
  }
  h2, .h2 {
    font-size: 1.2rem;
  }
  .hero {
    padding: 20px 0 14px 0;
  }
}

/* MICRO-INTERACTIONS / FOCUS */
a, button, input, .btn-primary, .mobile-nav a {
  outline: none;
}
a:focus, button:focus, .btn-primary:focus, .mobile-nav a:focus {
  box-shadow: 0 0 0 3px var(--accent-light), 0 1px 5px 0 rgba(32,86,94,0.09);
  border-radius: var(--radius-s);
}

/* CARD / SECTION GAPS */
.card-container > * {
  margin-right: 0;
  margin-bottom: 20px;
}
.feature-grid > * {
  margin-bottom: 20px;
}
.card-container, .feature-grid, .testimonial-grid, .service-grid, .content-grid {
  gap: 20px;
}

/* MINIMUM MARGINS BETWEEN CARDS/SECTIONS */
.section + .section {
  margin-top: 20px;
}
.card + .card,
.feature-item + .feature-item,
.service-item + .service-item,
.testimonial-card + .testimonial-card {
  margin-top: 20px;
}

/* PREVENT OVERLAPPING */
* {
  z-index: auto;
}

[aria-hidden="true"] {
  display: none!important;
}
