*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

:root{
  --primary:#07285a;
  --secondary:#11b98f;
  --mint:#72ffd6;
  --gold:#c99216;
  --white:#fff;
  --light:#f4fbf9;
  --dark:#06152c;
  --text:#233044;
  --muted:#6b7a90;
  --shadow:0 18px 45px rgba(7,40,90,.14);
  --radius:24px;
}

html{scroll-behavior:smooth;}

body{
  font-family:"Poppins","Segoe UI",Arial,sans-serif;
  background:var(--light);
  color:var(--text);
  line-height:1.7;
  overflow-x:hidden;
}

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

a{
  text-decoration:none;
  color:inherit;
}

.container{
  width:min(1180px,92%);
  margin:auto;
}

/* TOP BAR */
.top-bar{
  background:var(--primary);
  color:var(--white);
  padding:10px 0;
  font-size:14px;
}

.top-bar-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:15px;
  flex-wrap:wrap;
}

.online{
  display:inline-flex;
  align-items:center;
  gap:7px;
  font-weight:600;
}

.online-dot{
  width:11px;
  height:11px;
  background:#00d26a;
  border-radius:50%;
  box-shadow:0 0 0 0 rgba(0,210,106,.8);
  animation:pulseDot 1.4s infinite;
}

@keyframes pulseDot{
  70%{box-shadow:0 0 0 13px rgba(0,210,106,0);}
  100%{box-shadow:0 0 0 0 rgba(0,210,106,0);}
}

/* HEADER */
.header{
  background:rgba(255,255,255,.95);
  position:sticky;
  top:0;
  z-index:999;
  box-shadow:0 8px 30px rgba(7,40,90,.09);
  backdrop-filter:blur(12px);
}

.navbar{
  min-height:82px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:22px;
}

.logo h2{
  font-size:21px;
  color:var(--primary);
  line-height:1.2;
}

.logo span{
  color:var(--secondary);
  font-size:13px;
  font-weight:700;
}

.nav-menu{
  display:flex;
  align-items:center;
  gap:26px;
  list-style:none;
}

.nav-menu a{
  color:var(--primary);
  font-weight:700;
  font-size:15px;
}

.header-btn{
  background:linear-gradient(135deg,var(--secondary),#0aa77f);
  color:#fff!important;
  padding:12px 20px;
  border-radius:999px;
}

/* FINAL SLIDER - NO CONFLICT */
.slider{
  width:100%;
  overflow:hidden;
  background:#fff;
}

.slides{
  display:flex;
  width:400%;
  animation:slideMove 18s infinite;
}

.slide{
  width:25%;
  flex:0 0 25%;
}

.slide img{
  width:100%;
  height:auto;
  object-fit:contain;
  display:block;
  background:#fff;
}

@keyframes slideMove{
  0%,20%{transform:translateX(0);}
  25%,45%{transform:translateX(-25%);}
  50%,70%{transform:translateX(-50%);}
  75%,95%{transform:translateX(-75%);}
  100%{transform:translateX(0);}
}

/* COMMON */
.section{
  padding:90px 0;
}

.section-title{
  text-align:center;
  max-width:850px;
  margin:0 auto 48px;
}

.section-title span{
  display:inline-block;
  background:rgba(17,185,143,.12);
  color:var(--secondary);
  padding:8px 18px;
  border-radius:999px;
  font-weight:800;
  margin-bottom:14px;
}

.section-title h1,
.section-title h2{
  font-size:clamp(30px,4vw,52px);
  color:var(--primary);
  line-height:1.15;
  margin-bottom:18px;
}

.section-title p{
  color:var(--muted);
  font-size:17px;
}

/* SEO */
.seo-content{
  background:#fff;
}

.seo-box{
  background:linear-gradient(180deg,#fff,#f6fffc);
  padding:36px;
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  margin-bottom:30px;
  border:1px solid rgba(17,185,143,.13);
}

.seo-box h3{
  font-size:28px;
  color:var(--primary);
  margin-bottom:16px;
}

.seo-box p{
  font-size:16px;
  color:#34445a;
  text-align:justify;
}

.seo-box strong{
  color:var(--secondary);
}

/* CARE */
.care-section{
  background:linear-gradient(135deg,var(--primary),#061a3c);
  color:#fff;
  overflow:hidden;
}

.care-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:45px;
  align-items:center;
}

.care-content h2{
  font-size:clamp(32px,4vw,54px);
  line-height:1.15;
  margin-bottom:20px;
}

.care-content p{
  color:#dce9f5;
  margin-bottom:25px;
}

.care-list{
  display:grid;
  gap:15px;
}

.care-list li{
  list-style:none;
  background:rgba(255,255,255,.1);
  padding:16px 18px;
  border-radius:16px;
}

.care-card{
  background:#fff;
  color:var(--primary);
  padding:35px;
  border-radius:var(--radius);
  box-shadow:0 25px 60px rgba(0,0,0,.24);
}

.care-card p{
  color:var(--muted);
}

/* GALLERY */
.gallery-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:22px;
}

.gallery-grid img{
  width:100%;
  height:260px;
  object-fit:cover;
  border-radius:var(--radius);
  box-shadow:var(--shadow);
}

/* SERVICES */
.services{
  background:#eefbf8;
}

.service-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:25px;
}

.service-card{
  background:#fff;
  padding:32px;
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  border-bottom:5px solid var(--secondary);
}

.service-icon{
  width:64px;
  height:64px;
  background:linear-gradient(135deg,var(--secondary),var(--primary));
  color:#fff;
  display:grid;
  place-items:center;
  border-radius:18px;
  font-size:30px;
  margin-bottom:22px;
}

.service-card h3{
  color:var(--primary);
  font-size:24px;
  margin-bottom:12px;
}

.service-card p{
  color:var(--muted);
}

/* REVIEWS */
.review-section{
  background:#fff;
  overflow:hidden;
}

.review-track{
  display:flex;
  gap:22px;
  width:max-content;
  animation:reviewScroll 35s linear infinite;
}

.review-card{
  width:330px;
  background:#f7fffc;
  padding:26px;
  border-radius:var(--radius);
  box-shadow:var(--shadow);
}

.stars{
  color:var(--gold);
  font-size:20px;
  margin-bottom:13px;
}

.review-user{
  display:flex;
  align-items:center;
  gap:12px;
}

.review-avatar{
  width:46px;
  height:46px;
  background:var(--secondary);
  color:#fff;
  border-radius:50%;
  display:grid;
  place-items:center;
  font-weight:800;
}

@keyframes reviewScroll{
  from{transform:translateX(0);}
  to{transform:translateX(-50%);}
}

/* CTA */
.pre-plan{
  background:linear-gradient(135deg,var(--secondary),var(--primary));
  color:#fff;
}

.pre-plan-box{
  display:grid;
  grid-template-columns:1.4fr .8fr;
  gap:35px;
  align-items:center;
  background:rgba(255,255,255,.1);
  padding:45px;
  border-radius:32px;
}

.pre-plan h2{
  font-size:clamp(32px,4vw,52px);
  line-height:1.15;
}

.cta-btns{
  display:flex;
  gap:15px;
  flex-wrap:wrap;
  justify-content:flex-end;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:14px 24px;
  border-radius:999px;
  font-weight:800;
}

.btn-light{
  background:#fff;
  color:var(--primary);
}

.btn-dark{
  background:var(--dark);
  color:#fff;
}

/* FAQ */
.faq-grid{
  display:grid;
  gap:18px;
  max-width:950px;
  margin:auto;
}

.faq-item{
  background:#fff;
  border-radius:18px;
  padding:22px 26px;
  box-shadow:var(--shadow);
  border-left:5px solid var(--secondary);
}

.faq-item h3{
  color:var(--primary);
  font-size:20px;
  margin-bottom:8px;
}

.faq-item p{
  color:var(--muted);
}

/* CONTACT */
.contact-section{
  background:#f6fffc;
}

.contact-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:28px;
}

.contact-card{
  background:#fff;
  padding:34px;
  border-radius:var(--radius);
  box-shadow:var(--shadow);
}

.contact-list{
  display:grid;
  gap:16px;
}

.contact-list p{
  padding:15px;
  background:#f3fbf8;
  border-radius:14px;
  font-weight:600;
}

.map-box{
  overflow:hidden;
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  min-height:420px;
}

.map-box iframe{
  width:100%;
  height:100%;
  min-height:420px;
  border:0;
}

/* FOOTER */
.footer{
  background:var(--dark);
  color:#fff;
  padding:70px 0 22px;
}

.footer-grid{
  display:grid;
  grid-template-columns:1.4fr .8fr .9fr 1fr;
  gap:28px;
  margin-bottom:38px;
}

.footer h3,
.footer h4{
  margin-bottom:18px;
}

.footer p,
.footer li,
.footer a{
  color:#c8d4e4;
  font-size:15px;
}

.footer ul{
  list-style:none;
  display:grid;
  gap:10px;
}

.social{
  display:flex;
  gap:10px;
  margin-top:18px;
}

.social a{
  width:38px;
  height:38px;
  display:grid;
  place-items:center;
  border-radius:50%;
  background:rgba(255,255,255,.1);
}

.footer-bottom{
  border-top:1px solid rgba(255,255,255,.12);
  padding-top:18px;
  text-align:center;
}

/* STICKY BUTTONS */
.sticky-buttons{
  position:fixed;
  right:22px;
  bottom:24px;
  display:grid;
  gap:14px;
  z-index:1000;
}

.sticky-buttons a{
  width:58px;
  height:58px;
  border-radius:50%;
  color:#fff;
  display:grid;
  place-items:center;
  font-size:24px;
  box-shadow:0 15px 35px rgba(0,0,0,.22);
}

.call-btn{background:#1f7cff;}
.whatsapp-btn{background:#16c765;}

/* RESPONSIVE */
@media(max-width:1024px){
  .care-grid,
  .contact-grid,
  .pre-plan-box{
    grid-template-columns:1fr;
  }

  .gallery-grid,
  .service-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .footer-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .cta-btns{
    justify-content:flex-start;
  }
}

@media(max-width:768px){
  .top-bar-inner{
    justify-content:center;
    text-align:center;
  }

  .navbar{
    flex-direction:column;
    padding:16px 0;
    min-height:auto;
  }

  .logo{
    text-align:center;
  }

  .logo h2{
    font-size:18px;
  }

  .nav-menu{
    flex-wrap:wrap;
    justify-content:center;
    gap:12px;
  }

  .nav-menu a{
    font-size:14px;
  }

  .header{
    position:relative;
  }

  .section{
    padding:60px 0;
  }

  .seo-box{
    padding:22px;
  }

  .seo-box h3{
    font-size:22px;
  }

  .seo-box p{
    font-size:15px;
    text-align:left;
  }

  .gallery-grid,
  .service-grid,
  .footer-grid{
    grid-template-columns:1fr;
  }

  .gallery-grid img{
    height:auto;
  }

  .pre-plan-box{
    padding:28px;
  }

  .contact-card{
    padding:24px;
  }

  .map-box,
  .map-box iframe{
    min-height:320px;
  }

  .sticky-buttons{
    right:14px;
    bottom:16px;
  }

  .sticky-buttons a{
    width:52px;
    height:52px;
  }
}

@media(max-width:480px){
  .container{
    width:94%;
  }

  .section-title h1,
  .section-title h2{
    font-size:28px;
  }

  .care-content h2,
  .pre-plan h2{
    font-size:30px;
  }

  .service-card{
    padding:24px;
  }

  .review-card{
    width:280px;
  }
}