/* Homepage-specific styles. Shared foundation comes from mdh-global.css. */
.mdh-home{
  --mdh-primary:#349899;
  --mdh-primary-dark:#0b5c7d;
  --mdh-accent:#00a7e6;
  --mdh-light:#f4f8f8;
  --mdh-text:#25333d;
  --mdh-muted:#64727c;
  --mdh-border:#dce8e8;
  --mdh-shadow:0 12px 32px rgba(18,72,82,.10);
  color:var(--mdh-text);
  font-family:Roboto,Arial,sans-serif;
  overflow:hidden;
}

.mdh-home *,
.mdh-home *::before,
.mdh-home *::after{box-sizing:border-box}

.mdh-container{
  width:min(1200px,calc(100% - 32px));
  margin-inline:auto;
}

.mdh-section{padding:clamp(3.5rem,6vw,5.25rem) 0}
.mdh-section--light{background:var(--mdh-light)}
.mdh-section--primary{background:var(--mdh-primary);color:#fff}

.mdh-eyebrow{
  display:inline-flex;
  margin-bottom:.7rem;
  color:var(--mdh-primary);
  font-size:.82rem;
  font-weight:800;
  letter-spacing:.12em;
  text-transform:uppercase;
}
.mdh-eyebrow::before {
    content: "";
    width: 28px;
    height: 2px;
    border-radius: 99px;
    background: var(--mdh-primary);
}
.mdh-title{
  margin:0 0 1rem;
  color:var(--mdh-primary-dark);
  font-size:clamp(2rem,4vw,3rem);
  line-height:1.15;
	font-weight: bold;
}

.mdh-title--center {
    text-align: center;
    font-weight: bold;
    letter-spacing: 1px;
}
.mdh-title--white{color:#fff }

.mdh-lead{
  max-width:850px;
  margin:0 auto 2.25rem;
  color:var(--mdh-muted);
  font-size:1.05rem;
  line-height:1.8;
  text-align:center;
}

.mdh-section--primary .mdh-lead{color:rgba(255,255,255,.9)}

.mdh-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:.55rem;
  min-height:48px;
  padding:.78rem 1.2rem;
  border:2px solid var(--mdh-primary);
  border-radius:9px;
  background:var(--mdh-primary);
  color:#fff!important;
  font-weight:700;
  line-height:1.2;
  text-decoration:none!important;
  transition:transform .2s ease,background .2s ease,border-color .2s ease;
}

.mdh-btn:hover{
  border-color:var(--mdh-primary-dark);
  background:var(--mdh-primary-dark);
  color:#fff!important;
  transform:translateY(-2px);
}

.mdh-btn--outline{
  border-color:#fff;
  background:transparent;
}

.mdh-btn--outline:hover{
  border-color:#fff;
  background:#fff;
  color:var(--mdh-primary-dark)!important;
}

.mdh-btn--light{
  border-color:#fff;
  background:#fff;
  color:var(--mdh-primary-dark)!important;
}

.mdh-btn--light:hover{
  border-color:#edf7f7;
  background:#edf7f7;
  color:var(--mdh-primary-dark)!important;
}

/* Hero */
.mdh-hero{
  position:relative;
  min-height:clamp(520px,65vw,680px);
  overflow:hidden;
  background:#163e4a;
}

.mdh-hero-slider,
.mdh-hero-slide{height:100%;min-height:100%;}

.mdh-hero-slide{
  position:absolute;
  inset:0;
  display:none;
  background-position:center;
  background-size:cover;
}

.mdh-hero-slide::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(90deg,rgba(5,39,49,.82) 0%,rgba(5,39,49,.62) 47%,rgba(5,39,49,.18) 100%);
}

.mdh-hero-slide.is-active{display:block;animation:mdhHeroFade .8s ease}

@keyframes mdhHeroFade{
  from{opacity:0;transform:scale(1.015)}
  to{opacity:1;transform:scale(1)}
}

.mdh-hero-content{
  position:relative;
  z-index:2;
  display:flex;
  min-height:inherit;
  align-items:center;
  padding:clamp(5rem,10vw,8rem) 0;
}

.mdh-hero-copy{max-width:760px}

.mdh-hero-kicker{
  display:inline-flex;
  align-items:center;
  gap:.5rem;
  margin-bottom:1rem;
  padding:.42rem .75rem;
  border:1px solid rgba(255,255,255,.35);
  border-radius:999px;
  background:rgba(255,255,255,.1);
  color:#fff;
  font-size:.86rem;
  font-weight:700;
  backdrop-filter:blur(8px);
}

.mdh-hero h1{
      max-width: 820px;
    margin: 0 0 1.15rem;
    color: #fff;
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    line-height: 1.05;
    font-weight: bold;
    letter-spacing: 1px;
}

.mdh-hero p{
  max-width:680px;
  margin:0 0 1.75rem;
  color:rgba(255,255,255,.92);
  font-size:clamp(1rem,2vw,1.2rem);
  line-height:1.75;
}

.mdh-hero-actions{display:flex;flex-wrap:wrap;gap:.8rem}

.mdh-hero-controls{
  position:absolute;
  z-index:3;
  right:max(16px,calc((100% - 1200px)/2));
  bottom:80px;
  display:flex;
  align-items:center;
  gap:.65rem;
}

.mdh-hero-arrow{
  display:grid;
  width:42px;
  height:42px;
  place-items:center;
  border:1px solid rgba(255,255,255,.5);
  border-radius:50%;
  background:rgba(0,0,0,.22);
  color:#fff;
  cursor:pointer;
}

.mdh-hero-dots{display:flex;gap:.4rem}
.mdh-hero-dot{
  width:9px;height:9px;padding:0;border:0;border-radius:50%;
  background:rgba(255,255,255,.5);cursor:pointer
}
.mdh-hero-dot.is-active{width:26px;border-radius:999px;background:#fff}

/* Trust strip */
.mdh-trust-strip{
  position:relative;
  z-index:4;
  margin-top:-55px;
}

.mdh-trust-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  border-radius:16px;
  background:#fff;
  box-shadow:var(--mdh-shadow);
  overflow:hidden;
}

.mdh-trust-item{
  display:flex;
  min-height:150px;
  align-items:center;
  gap:1rem;
  padding:1.6rem;
  border-right:1px solid var(--mdh-border);
}

.mdh-trust-item:last-child{border-right:0}
.mdh-trust-icon{
  display:grid;
  flex:0 0 62px;
  width:62px;height:62px;
  place-items:center;
  border-radius:50%;
  background:rgba(52,152,153,.12);
  color:var(--mdh-primary);
  font-size:1.7rem;
}
.mdh-trust-item h3{margin:0 0 .35rem;color:var(--mdh-primary-dark);font-size:1.05rem; font-weight: 700}
.mdh-trust-item p{margin:0;color:var(--mdh-muted);font-size:.9rem;line-height:1.55}

/* Split content */
.mdh-split{
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(0,1fr);
  align-items:center;
  gap:clamp(2rem,5vw,4.5rem);
}

.mdh-media-card{
  position:relative;
  overflow:hidden;
  border-radius:20px;
  box-shadow:var(--mdh-shadow);
}

.mdh-media-card img{display:block;width:100%;height:auto;min-height:420px;object-fit:cover}

.mdh-stat-badge{
  position:absolute;
  right:1.25rem;
  bottom:1.25rem;
  max-width:230px;
  padding:1rem 1.1rem;
  border-radius:12px;
  background:rgba(255,255,255,.94);
  color:var(--mdh-primary-dark);
  font-weight:700;
  box-shadow:0 10px 30px rgba(0,0,0,.18);
}

.mdh-copy p{margin:0 0 1rem;color:var(--mdh-muted);line-height:1.8}
.mdh-copy-actions{display:flex;flex-wrap:wrap;gap:.75rem;margin-top:1.5rem}

/* Services */
.mdh-services{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:1.25rem;
}

.mdh-service-card{
  display:flex;
  min-height:100%;
  flex-direction:column;
  padding:1.7rem;
  border:1px solid var(--mdh-border);
  border-radius:15px;
  background:#fff;
  box-shadow:0 8px 24px rgba(15,66,76,.06);
  transition:transform .2s ease,box-shadow .2s ease;
}

.mdh-service-card:hover{transform:translateY(-5px);box-shadow:var(--mdh-shadow)}
.mdh-service-icon{
  display:grid;width:58px;height:58px;margin-bottom:1rem;place-items:center;
  border-radius:12px;background:rgba(52,152,153,.11);color:var(--mdh-primary);font-size:1.55rem
}
.mdh-service-card h3{margin:0 0 .7rem;color:var(--mdh-primary-dark);font-size:1.2rem; font-weight: 700;
    letter-spacing: 0.3px}
.mdh-service-card p{flex:1;margin:0 0 1.2rem;color:var(--mdh-muted);line-height:1.7}
.mdh-service-link{color:var(--mdh-primary-dark)!important;font-weight:800;text-decoration:none!important}
.mdh-service-link:hover{color:var(--mdh-primary)!important}

/* Why choose */
.mdh-feature-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.2rem}
.mdh-feature-card{
  padding:1.7rem;
  border:1px solid rgba(255,255,255,.25);
  border-radius:14px;
  background:rgba(255,255,255,.10);
  text-align:center;
  backdrop-filter:blur(6px);
}
.mdh-feature-icon{
  display:grid;width:68px;height:68px;margin:0 auto 1rem;place-items:center;
  border-radius:50%;background:#fff;color:var(--mdh-primary);font-size:1.8rem
}
.mdh-feature-card h3{margin:0 0 .5rem;color:#fff;font-size:1.1rem; font-weight: 700}
.mdh-feature-card p{margin:0;color:rgba(255,255,255,.88);line-height:1.6}

/* Commitments */
.mdh-commitments{display:grid;grid-template-columns:repeat(3,1fr);gap:1.2rem}
.mdh-commitment{
  padding:1.6rem;border-radius:14px;background:#fff;box-shadow:0 8px 22px rgba(0,0,0,.08)
}
.mdh-commitment:nth-child(2){background:#eaf8eb}
.mdh-commitment:nth-child(3){background:#eaf7ff}
.mdh-commitment:nth-child(4){background:#e6f1ff}
.mdh-commitment:nth-child(5){background:#fff8ec}
.mdh-commitment:nth-child(6){background:#f2edfb}
.mdh-commitment h3{margin:0 0 .75rem;color:var(--mdh-primary-dark);font-size:1.12rem; font-weight:700}
.mdh-commitment p{margin:0;color:var(--mdh-muted);line-height:1.65}

/* Gallery */
.mdh-gallery{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:1rem}
.mdh-gallery-item{min-width:0}
.mdh-gallery-item a{display:block;overflow:hidden;border-radius:13px}
.mdh-gallery-item img{display:block;width:100%;height:300px;object-fit:cover;transition:transform .35s ease}
.mdh-gallery-item a:hover img{transform:scale(1.04)}

/* Tests */
.mdh-tests{display:grid;grid-template-columns:repeat(4,1fr);gap:1.1rem}
.mdh-test-card{
  display:flex;min-height:100%;flex-direction:column;padding:1.35rem;
  border:1px solid var(--mdh-border);border-radius:15px;background:#fff;box-shadow:0 8px 22px rgba(0,0,0,.07)
}
.mdh-test-card h3{min-height:48px;margin:0 0 .8rem;color:var(--mdh-primary-dark);font-size:1rem;line-height:1.4; font-weight: 700}
.mdh-test-meta{margin:0 0 1rem;color:var(--mdh-muted);font-size:.92rem}
.mdh-test-price{margin-top:auto;margin-bottom:.85rem;color:var(--mdh-primary-dark);font-size:1.35rem;font-weight:900}
.mdh-tests-footer{text-align:center;margin-top:1.75rem}

/* Packages */
.mdh-packages{display:grid;grid-template-columns:repeat(4,1fr);gap:1.2rem;align-items:stretch}
.mdh-package{
  position:relative;display:flex;min-height:100%;flex-direction:column;
  padding:1.35rem;border:1px solid var(--mdh-border);border-radius:17px;background:#fff;box-shadow:0 8px 24px rgba(0,0,0,.08)
}
.mdh-package--featured{border:2px solid var(--mdh-primary);transform:translateY(-8px)}
.mdh-package-badge{
  position:absolute;top:-18px;left:50%;padding:.35rem .75rem;border-radius:999px;
  background:var(--mdh-primary);color:#fff;font-size:12px;font-weight:800;transform:translateX(-50%)
}
.mdh-package-head{padding:.9rem;border-radius:10px;background:var(--mdh-primary-dark);text-align:center}
.mdh-package-head h3{margin:0;color:#fff;font-size:1.15rem}
.mdh-package-summary{margin:.9rem 0;color:var(--mdh-muted);font-size:.9rem;line-height:1.55;text-align:center}
.mdh-package ul{flex:1;margin:0 0 1rem;padding:0;list-style:none}
.mdh-package li{position:relative;padding:.45rem 0 .45rem 1.35rem;border-bottom:1px solid #edf1f1;color:#4b5b65;font-size:.9rem;line-height:1.45}
.mdh-package li::before{content:"✓";position:absolute;left:0;color:var(--mdh-primary);font-family:inherit;font-weight:900}
.mdh-package-price{margin:.25rem 0 1rem;color:var(--mdh-primary-dark);font-size:1.6rem;font-weight:900;text-align:center}

/* Reviews placeholder */
.mdh-review-note{
  max-width:850px;margin:auto;padding:1.4rem;border:1px dashed var(--mdh-primary);
  border-radius:12px;background:rgba(52,152,153,.06);color:var(--mdh-muted);line-height:1.7;text-align:center
}

/* Contact */
.mdh-contact{display:grid;grid-template-columns:1fr 1fr;gap:2.5rem;align-items:center}
.mdh-contact-image img{display:block;width:100%;border-radius:18px;box-shadow:var(--mdh-shadow)}
.mdh-form{display:grid;grid-template-columns:1fr 1fr;gap:.9rem}
.mdh-field--full{grid-column:1/-1}
.mdh-form input,.mdh-form select,.mdh-form textarea{
  width:100%;padding:.9rem 1rem;border:1px solid #cddddd;border-radius:8px;background:#fff;color:var(--mdh-text);font:inherit
}
.mdh-form textarea{min-height:130px;resize:vertical}
.mdh-form input:focus,.mdh-form select:focus,.mdh-form textarea:focus{
  border-color:var(--mdh-primary);outline:3px solid rgba(52,152,153,.14)
}
.mdh-consent{display:flex;gap:.6rem;align-items:flex-start;color:var(--mdh-muted);font-size:.86rem;line-height:1.5}
.mdh-consent input{    height: 18px;
    width: 18px; margin-top:.18rem}

@media(max-width:1100px){
  .mdh-trust-grid{grid-template-columns:repeat(2,1fr)}
  .mdh-trust-item:nth-child(2){border-right:0}
  .mdh-trust-item:nth-child(-n+2){border-bottom:1px solid var(--mdh-border)}
  .mdh-services,.mdh-feature-grid,.mdh-commitments{grid-template-columns:repeat(2,1fr)}
  .mdh-tests,.mdh-packages{grid-template-columns:repeat(2,1fr)}
  .mdh-package--featured{transform:none}
}

@media(max-width:767px){
  .mdh-hero{min-height:610px}
  .mdh-hero-slide::before{background:rgba(5,39,49,.72)}
  .mdh-hero-controls{right:16px;bottom:18px}
  .mdh-trust-strip{margin-top:0;padding-top:1rem}
  .mdh-trust-grid,.mdh-services,.mdh-feature-grid,.mdh-commitments,.mdh-tests,.mdh-packages,.mdh-split,.mdh-contact{grid-template-columns:1fr}
  .mdh-trust-item{border-right:0;border-bottom:1px solid var(--mdh-border)}
  .mdh-trust-item:last-child{border-bottom:0}
  .mdh-media-card img{min-height:300px}
  .mdh-form{grid-template-columns:1fr}
  .mdh-field--full{grid-column:auto}
}

@media(prefers-reduced-motion:reduce){
  .mdh-home *,.mdh-home *::before,.mdh-home *::after{
    animation-duration:.01ms!important;animation-iteration-count:1!important;scroll-behavior:auto!important;transition-duration:.01ms!important
  }
}


.mdh-ui-icon{display:inline-grid;place-items:center;font-style:normal;line-height:1;font-weight:800}
@media(max-width:991px){.mdh-gallery{grid-template-columns:repeat(2,minmax(0,1fr))}}
@media(max-width:600px){.mdh-gallery{grid-template-columns:1fr}}
[data-mdh-reveal]{opacity:0;transform:translateY(22px);transition:opacity .7s ease,transform .7s ease}
[data-mdh-reveal].mdh-is-visible{opacity:1;transform:none}
.title-cont {
    text-align: center;
}
