/* ========================== RESET & BASE ============================ */
html {box-sizing: border-box;}
*, *:before, *:after {box-sizing: inherit;}
html, body {margin: 0; padding: 0;}
body {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  color: #175E54;
  line-height: 1.7;
  background: linear-gradient(135deg, #F3F8F7 70%, #5ABCB2 140%);
  min-height: 100vh;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  font-weight: 400;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  margin-top: 0;
  color: #175E54;
  letter-spacing: 0.01em;
}
h1 {font-size: 2.5rem; margin-bottom: 16px;}
h2 {font-size: 2rem; margin-bottom: 16px;}
h3 {font-size: 1.35rem; margin-bottom: 12px;}
h4, h5, h6 {font-size: 1.1rem; margin-bottom: 8px;}
@media (max-width: 480px) {
  h1 {font-size: 2rem;}
  h2 {font-size: 1.4rem;}
}

p {
  margin-top: 0; margin-bottom: 16px;
}

ul {
  margin-top: 0; margin-bottom: 16px;
  padding-left: 22px;
}
li { margin-bottom: 8px; }
a { color: #175E54; text-decoration: underline; transition: color .2s; }
a:hover, a:focus { color: #5ABCB2; text-decoration: underline; }

img { max-width: 100%; display: block; height: auto; border: 0; }

/* ========================== LAYOUT CONTAINERS ============================ */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
/* Section Spacing */
.section, section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
}

@media (max-width: 768px) {
  .section, section { padding: 32px 8px; }
  .container { padding: 0 8px; }
}
/* ========================== HEADER & NAV ============================ */
header {
  width: 100%;
  background: linear-gradient(90deg, #175E54 80%, #5ABCB2 120%);
  color: #fff;
  box-shadow: 0 2px 10px rgba(23,94,84,0.09);
  position: sticky;
  top: 0;
  z-index: 50;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 12px 16px;
}
header nav {
  display: flex;
  flex-direction: row;
  gap: 16px;
}
header nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  text-decoration: none;
  font-size: 1rem;
  padding: 4px 6px;
  transition: color .2s, background .2s;
  border-radius: 4px;
}
header nav a:hover, header nav a:focus {
  background: rgba(90,188,178,0.11);
  color: #5ABCB2;
}
header img {
  max-height: 46px;
}
.cta-primary {
  background: linear-gradient(90deg, #5ABCB2 60%, #175E54 110%);
  color: #fff !important;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: bold;
  border: none;
  border-radius: 24px;
  padding: 12px 28px;
  margin-left: 10px;
  box-shadow: 0 5px 24px -4px rgba(90,188,178,0.09);
  cursor: pointer;
  text-decoration: none;
  transition: background .18s, box-shadow .18s, transform .18s;
  display: inline-block;
  letter-spacing: 0.033em;
}
.cta-primary:hover, .cta-primary:focus {
  background: linear-gradient(90deg, #44cdba 10%, #175E54 85%);
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 3px 20px -2px rgba(23, 94, 84, 0.14);
}
/* Hamburger */
.mobile-menu-toggle {
  background: none;
  border: none;
  color: #fff;
  font-size: 2.1rem;
  cursor: pointer;
  margin-left: 16px;
  display: none;
  padding: 8px 10px;
  border-radius: 6px;
  transition: background .22s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: rgba(244,244,255,0.12);
}

@media (max-width: 1024px) {
  header .container {
    gap: 10px;
  }
}
@media (max-width: 900px) {
  header nav, .cta-primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
}

/* ========================== MOBILE MENU ============================ */
.mobile-menu {
  position: fixed;
  left: 0;
  top: 0;
  height: 100vh;
  width: 100vw;
  background: linear-gradient(130deg, #fff 78%, #5ABCB2 180%);
  z-index: 102;
  transform: translateX(-100%);
  transition: transform 0.41s cubic-bezier(0.77,0,0.175,1);
  display: flex;
  flex-direction: column;
  padding: 0;
  box-shadow: 0 12px 36px -15px rgba(23,94,84,0.18);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #175E54;
  font-size: 2.2rem;
  cursor: pointer;
  align-self: flex-end;
  margin: 16px 14px 6px 0;
  transition: color .2s;
  z-index: 105;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #5ABCB2;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
  margin: 32px 0 0 36px;
}
.mobile-nav a {
  color: #175E54;
  font-size: 1.18rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.01em;
  padding: 6px 0;
  border-radius: 3px;
  transition: background .19s, color .17s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #F3F8F7;
  color: #5ABCB2;
}

@media (max-width: 480px) {
  .mobile-nav {
    margin-left: 18px;
  }
}

/* Prevent background scroll while menu open */
body.menu-open {
  overflow: hidden;
}

/* ========================== HERO STYLES ============================ */
.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 350px;
  background: linear-gradient(113deg, #F3F8F7 65%, #5ABCB2 130%);
  position: relative;
  border-bottom: 1px solid #e5efed;
  margin-bottom: 40px;
}
.hero .content-wrapper {
  max-width: 760px;
  text-align: center;
  align-items: center;
}
.hero h1 {
  font-size: 2.4rem;
  color: #175E54;
  margin-bottom: 8px;
}
.hero p {
  font-size: 1.15rem;
  color: #266c5c;
}

@media (max-width: 768px) {
  .hero { min-height: 220px; padding: 32px 0; }
  .hero h1 { font-size: 1.6rem; }
}

/* ========================== CARD CONTAINERS ============================ */
.card-container {
  display: flex; flex-wrap: wrap; gap: 24px;
}
.card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 5px 24px -8px rgba(23,94,84,0.08);
  margin-bottom: 20px;
  padding: 29px 26px 22px 26px;
  position: relative;
  transition: box-shadow .2s, transform .2s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 5px 34px -3px rgba(90,188,178,0.13);
  transform: scale(1.025) translateY(-3px);
}

/* ========================== FEATURES & SERVICES ============================ */
.features .content-wrapper, .features .feature-grid, .service-grid, .service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}
.features .content-wrapper, .service-list {
  gap: 24px;
  margin-top: 16px;
}
.feature-grid > div, .service-list > div, .service-grid > div {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 6px 26px -10px rgba(23,94,84,0.07);
  padding: 28px 18px 20px 18px;
  flex: 1 1 220px;
  min-width: 220px;
  transition: box-shadow .19s, transform .18s;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.feature-grid > div:hover, .service-list > div:hover, .service-grid > div:hover {
  box-shadow: 0 6px 34px -7px rgba(90,188,178,0.18);
  transform: translateY(-3px) scale(1.03);
}
.feature-grid img, .service-list img, .service-grid img {
  height: 48px;
  margin-bottom: 10px;
  display: block;
}
.features h3, .service-list h3, .service-grid h3 {
  margin-top: 0; margin-bottom: 10px; color: #175E54;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700; font-size: 1.13rem;
}
.features p, .service-list p, .service-grid p {
  color: #348076;
  font-size: 1.02rem;
  margin-bottom:0;
}
@media (max-width: 1100px) {
  .feature-grid, .service-grid, .service-list {
    flex-direction: column;
    gap: 16px;
  }
  .feature-grid > div, .service-list > div, .service-grid > div {
    min-width: 0; width: 100%;
  }
}

/* ========================== GENERIC FLEX SECTIONS ============================ */
.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 { flex-direction: column; gap: 16px; }
  .text-image-section { flex-direction: column; gap: 16px; align-items: flex-start; }
}

/* ========================== TESTIMONIALS ============================ */
.testimonials .container, .testimonials .content-wrapper, .testimonial-list {
  gap: 20px;
}
.testimonials-slider, .testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: flex-start;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  background: #fff;
  padding: 20px 30px 22px 30px;
  border-radius: 18px;
  box-shadow: 0 4px 24px -7px rgba(23,94,84,0.11);
  min-width: 260px;
  max-width: 355px;
  margin-bottom: 20px;
}
.testimonial-card .stars {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-bottom: 8px;
}
.testimonial-card .stars img {
  height: 23px;
}
.testimonial-card p {
  color: #175E54;
  font-size: 1.04rem;
  margin-top: 0;
  margin-bottom: 6px;
}
.testimonial-card span {
  color: #348076;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.98rem;
  font-weight: 600;
}
@media (max-width: 800px) {
  .testimonials-slider, .testimonial-list {
    flex-direction: column;
    gap: 16px;
    align-items: stretch;
  }
  .testimonial-card { max-width: 100%; width: 100%; min-width: 0; }
}

/* ========================== BLOG POSTS ============================ */
.blog-posts .category-filters {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.blog-posts .category-filters ul {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  list-style: none;
}
.blog-posts .category-filters li {
  background: #e5efed;
  color: #175E54;
  padding: 5px 15px;
  border-radius: 14px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.97rem;
}

.blog-list,
.featured-post {
  margin-top: 18px;
  margin-bottom: 25px;
}
.blog-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.blog-list article {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 3px 26px -7px rgba(90,188,178,0.09);
  padding: 28px 18px 20px 18px;
  flex: 1 1 260px;
  min-width: 250px;
  transition: box-shadow .16s, transform .15s;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.blog-list article:hover {
  box-shadow: 0 6px 34px -7px rgba(90,188,178,0.13);
  transform: scale(1.03);
}
.blog-list article h3 {
  margin: 0 0 8px 0; font-size: 1.21rem;
}
.blog-list article p {
  color: #175E54;
  font-size: 1rem;
}
.blog-list article a {
  align-self: flex-start;
  color: #5ABCB2;
  font-weight: bold;
  text-decoration: none;
  border-bottom: 1.5px solid #5ABCB2;
  padding-bottom: 1px;
  transition: color .16s, border-color .14s;
}
.blog-list article a:hover, .blog-list article a:focus {
  color: #175E54;
  border-color: #175E54;
}

.featured-post {
  background: linear-gradient(90deg, #e5efed 85%, #5ABCB2 170%);
  border-radius: 13px;
  padding: 20px 22px;
  box-shadow: 0 3px 18px -7px rgba(90,188,178,0.13);
  color: #175E54;
  font-size: 1.06rem;
}

@media (max-width: 900px) {
  .blog-list { flex-direction: column; gap: 14px; }
  .blog-list article { min-width: 0; width: 100%; }
}

/* ========================== PRICE TABLE ============================ */
.price-models table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
}
.price-models th, .price-models td {
  padding: 14px 13px;
  text-align: left;
  border-bottom: 1px solid #e5efed;
  font-family: 'Montserrat', Arial, sans-serif;
}
.price-models th {
  background: #5ABCB2;
  color: #fff;
  font-size: 1.09rem;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  font-weight: 600;
}
.price-models tr:last-child td {
  border-bottom: none;
}
.package-notes {
  background: #f1f9f8;
  border-radius: 11px;
  padding: 17px 18px 12px 18px;
  margin-top: 12px;
  font-size: 1rem;
}
@media (max-width: 600px) {
  .price-models table, .price-models th, .price-models td {
    font-size: 0.98rem;
    padding: 9px 5px;
  }
  .package-notes { font-size: 0.98rem; }
}

/* ========================== CONTACT & INFO ============================ */
.contact-info ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.contact-info li {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  font-size: 1.04rem;
}
.contact-info img {
  width: 23px;
  height: 23px;
  margin-right: 2px;
}
.cta-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}
@media (min-width: 600px) {
  .contact-short .content-wrapper,
  .contact-details .content-wrapper {
    flex-direction: row;
    justify-content: space-between;
    gap: 44px;
  }
  .contact-info { min-width: 260px; }
  .cta-column { min-width: 170px; }
}

/* ========================== CTA SECTIONS ============================ */
.cta .content-wrapper {
  flex-direction: row;
  align-items: center;
  gap: 30px;
  justify-content: space-between;
}
.cta .cta-primary {
  margin-left: 0; margin-bottom: 0;
}
.cta p {
  margin: 0; font-size: 1.10rem;
}
@media (max-width: 600px) {
  .cta .content-wrapper { flex-direction: column; align-items: flex-start; gap: 16px; }
}

/* ========================== LEGAL PAGES ============================ */
.legal .content-wrapper {
  background: #fff;
  border-radius: 18px;
  padding: 30px 22px 14px 22px;
  box-shadow: 0 6px 24px -9px rgba(90,188,178,0.08);
  color: #175E54;
  gap: 18px;
}
.legal h1, .legal h2, .legal h3, .legal h4 {
  color: #175E54;
}

/* ========================== THANK YOU PAGE ============================ */
.thank-you .content-wrapper {
  align-items: center;
  gap: 14px;
  text-align: center;
}
.thank-you ul {
  display: flex; flex-direction: column; align-items: center;
  gap: 6px;
}
.thank-you a.cta-primary {
  margin-top: 18px;
}

/* ========================== FOOTER ============================ */
footer {
  background: linear-gradient(90deg, #175E54 80%, #5ABCB2 120%);
  color: #fff;
  padding: 30px 0 16px 0;
  margin-top: 40px;
}
footer .container {
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 17px;
  color: #fff;
  align-items: center;
}
footer nav a {
  color: #fff;
  text-decoration: underline;
  opacity: 0.90;
  font-size: 0.99rem;
  transition: color .17s, opacity .18s;
}
footer nav a:hover, footer nav a:focus {
  color: #5ABCB2;
  opacity: 1;
}
footer p {
  font-size: 0.95rem;
  margin: 5px 0 0 0;
  color: #F3F8F7;
}

/* ========================== COOKIE CONSENT BANNER ============================ */
.cookie-consent-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: #fff;
  border-top: 2px solid #5ABCB2;
  box-shadow: 0 -5px 31px -10px rgba(90,188,178,0.17);
  z-index: 9999;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 20px 28px;
  gap: 16px;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: transform 0.3s cubic-bezier(0.77,0,0.175,1), opacity 0.25s;
}
.cookie-consent-banner.hide {
  opacity: 0;
  visibility: hidden;
  transform: translateY(100%);
  pointer-events: none;
}
.cookie-banner-text {
  color: #175E54;
  font-size: 1.05rem;
  max-width: 440px;
}
.cookie-actions {
  display: flex;
  gap: 11px;
}
.cookie-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  padding: 9px 20px;
  background: #5ABCB2;
  color: #fff;
  border: none;
  border-radius: 16px;
  cursor: pointer;
  font-size: 1rem;
  margin-right: 6px;
  transition: background .15s,transform .12s;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #175E54;
  transform: scale(1.04);
}
.cookie-btn.reject {
  background: #eee;
  color: #175E54;
  border: 1.3px solid #5ABCB2;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #f1f9f8;
}
.cookie-btn.settings {
  background: #F3F8F7;
  color: #175E54;
  border: 1.3px solid #5ABCB2;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #e5efed;
}
@media (max-width: 700px) {
  .cookie-consent-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 18px 9px;
  }
  .cookie-actions {
    gap: 8px;
    flex-wrap: wrap;
  }
}

/* Cookie Modal */
.cookie-modal-overlay {
  position: fixed;
  left: 0; top: 0; width: 100vw; height: 100vh;
  background: rgba(60,84,80,0.36);
  z-index: 10010;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.22s;
}
.cookie-modal-overlay.hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.cookie-modal {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 12px 36px -13px rgba(23,94,84,0.16);
  padding: 34px 25px 24px 25px;
  width: 98%;
  max-width: 470px;
  color: #175E54;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
}
.cookie-modal-title {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.34rem;
  margin: 0 0 10px 0;
  padding: 0;
  font-weight: 700;
  color: #175E54;
}
.cookie-modal-category {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 1.03rem;
}
.cookie-modal-category input[type="checkbox"] {
  width: 20px; height: 20px; accent-color: #5ABCB2;
}
.cookie-modal-category input[disabled] {
  accent-color: #175E54;
}
.cookie-modal-actions {
  display: flex;
  gap: 12px;
  margin-top: 10px;
}
.cookie-modal-close {
  position: absolute;
  right: 12px;
  top: 10px;
  background: none;
  border: none;
  color: #175E54;
  font-size: 1.9rem;
  cursor: pointer;
  transition: color .15s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  color: #5ABCB2;
}
@media (max-width: 520px) {
  .cookie-modal { padding: 24px 8px 9px 8px; max-width: 97vw; }
  .cookie-modal-title { font-size: 1.11rem; }
}

/* ====================== MICRO INTERACTIONS & EFFECTS ==================== */
button, .cta-primary, .cookie-btn {
  transition: background .17s, color .13s, box-shadow .11s, transform .18s;
}

/* ========================= MISCELLANEOUS UTILITIES =========================== */
.hide { display: none !important; }
.d-flex { display: flex !important; }
.flex-col { flex-direction: column !important; }
.align-center { align-items: center !important; }
.align-start { align-items: flex-start !important; }
.justify-center { justify-content: center !important; }
.justify-between { justify-content: space-between !important; }
.gap-20 { gap: 20px !important; }
.gap-24 { gap: 24px !important; }
.mb-20 { margin-bottom: 20px !important; }
.mt-20 { margin-top: 20px !important; }

@media (max-width: 800px) {
  .section, section { padding: 25px 6px; }
}
@media (max-width: 500px) {
  header .container { flex-wrap: wrap; padding: 9px 7px; }
  .container { padding: 0 5px; }
}
