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

html{
  scroll-behavior:smooth;
}

body{
  font-family:'Poppins', sans-serif;
  background:#f8f3eb;
  color:#222;
  line-height:1.6;
  overflow-x:hidden;
}

/* HEADER */

header{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  padding:15px 60px;
  background:rgba(0,0,0,0.18);
  backdrop-filter:blur(10px);
  z-index:1000;
}

nav{
  display:flex;
  gap:18px;
  align-items:center;
  justify-content:flex-start;
  flex-wrap:wrap;
}

nav a{
  color:white;
  text-decoration:none;
  font-weight:700;
  font-size:15px;
  padding:10px 16px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,0.08);
  transition:0.3s ease;
}

nav a:hover{
  color:#facc15;
  background:rgba(255,255,255,0.08);
  border:1px solid rgba(255,255,255,0.18);
  transform:translateY(-2px);
}

/* HERO */

.services-hero{
  min-height:100vh;
  background:
    linear-gradient(rgba(0,0,0,0.42), rgba(0,0,0,0.42)),
    url('images/cover.jpg') center/cover no-repeat;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  color:white;
  padding:130px 20px 80px;
}

.hero-content{
  max-width:900px;
}

.hero-logo-img{
  width:360px;
  max-width:88%;
  display:block;
  margin:0 auto 28px;
}

.services-hero h1{
  font-family:'Cormorant Garamond', serif;
  font-size:72px;
  line-height:1.1;
  margin-bottom:18px;
}

.services-hero p{
  max-width:850px;
  margin:0 auto 28px;
  font-size:22px;
  line-height:1.7;
}

.btn{
  display:inline-block;
  margin-top:22px;
  padding:16px 36px;
  background:#0f766e;
  color:white;
  text-decoration:none;
  border-radius:50px;
  font-weight:700;
  transition:0.3s ease;
}

.btn:hover{
  background:#115e59;
  transform:translateY(-3px);
}

/* INTRO */

.services-intro{
  padding:70px 20px;
  text-align:center;
  background:white;
}

.services-intro h2,
.services-categories h2,
.featured-services h2,
.services-gallery h2,
.services-contact h2{
  font-family:'Cormorant Garamond', serif;
  font-size:52px;
  margin-bottom:18px;
  color:#111;
}

.services-intro p,
.services-categories p,
.featured-services p,
.services-gallery p,
.services-contact p{
  max-width:900px;
  margin:0 auto;
  font-size:20px;
  color:#444;
}

/* SECTIONS */

.services-categories,
.featured-services,
.services-gallery{
  padding:70px 20px;
  text-align:center;
}

.services-categories{
  background:#f8f3eb;
}

.featured-services{
  background:#eef7f2;
}

.services-gallery{
  background:#fff;
}

/* GRID */

.services-grid{
  max-width:1300px;
  margin:45px auto 0;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:28px;
}

.service-card,
.cms-card{
  background:rgba(242,232,220,0.78);
  backdrop-filter:blur(12px);
  -webkit-backdrop-filter:blur(12px);
  border-radius:28px;
  padding:32px 28px;
  box-shadow:0 10px 30px rgba(0,0,0,0.08);
  transition:0.35s ease;
  text-align:left;
  min-height:210px;
}

.service-card:hover,
.cms-card:hover{
  transform:translateY(-8px);
  background:rgba(230,245,235,0.95);
  box-shadow:0 18px 45px rgba(0,0,0,0.14);
}

.service-card h3,
.cms-card h3{
  font-family:'Cormorant Garamond', serif;
  font-size:32px;
  color:#0f766e;
  margin-bottom:12px;
}

.service-card p,
.cms-card p{
  font-size:16px;
  line-height:1.7;
  color:#444;
}

.cms-card img{
  width:100%;
  height:220px;
  object-fit:cover;
  border-radius:18px;
  margin-bottom:16px;
}

.cms-card a{
  display:inline-block;
  margin-top:14px;
  padding:12px 24px;
  border-radius:50px;
  background:#0f766e;
  color:#fff;
  text-decoration:none;
  font-weight:700;
}

/* GALLERY */

.gallery-grid{
  max-width:1300px;
  margin:45px auto 0;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
}

.gallery-grid img{
  width:100%;
  height:260px;
  object-fit:cover;
  border-radius:22px;
  box-shadow:0 10px 28px rgba(0,0,0,0.12);
}

/* CONTACT */

.services-contact{
  padding:70px 20px;
  text-align:center;
  background:#E3F7CB;
}

.contact-btn{
  background:#325904;
}

/* FOOTER */

footer{
  text-align:center;
  padding:18px;
  background:#000;
  color:#fff;
}

/* FLOATING WHATSAPP */

.floating-whatsapp{
  position:fixed;
  right:25px;
  bottom:25px;
  width:62px;
  height:62px;
  background:#25D366;
  color:white;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  font-size:34px;
  z-index:3000;
  box-shadow:0 10px 30px rgba(0,0,0,0.25);
  transition:0.3s ease;
}

.floating-whatsapp:hover{
  transform:translateY(-5px) scale(1.08);
  box-shadow:0 18px 40px rgba(0,0,0,0.35);
}

/* CMS SUPPORT */

.cms-bg-video{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  z-index:0;
}

[data-section]{
  position:relative;
  overflow:hidden;
}

[data-section] > *:not(.cms-bg-video){
  position:relative;
  z-index:1;
}

.cms-animate.fade-up{
  animation:cmsFadeUp .8s ease both;
}

.cms-animate.zoom-in{
  animation:cmsZoomIn .8s ease both;
}

.cms-animate.slide-left{
  animation:cmsSlideLeft .8s ease both;
}

@keyframes cmsFadeUp{
  from{opacity:0;transform:translateY(30px)}
  to{opacity:1;transform:translateY(0)}
}

@keyframes cmsZoomIn{
  from{opacity:0;transform:scale(.95)}
  to{opacity:1;transform:scale(1)}
}

@keyframes cmsSlideLeft{
  from{opacity:0;transform:translateX(40px)}
  to{opacity:1;transform:translateX(0)}
}

/* MOBILE */

@media(max-width:1000px){
  .services-grid,
  .gallery-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:768px){
  header{
    padding:12px 10px;
    overflow-x:auto;
    overflow-y:hidden;
    white-space:nowrap;
  }

  header::-webkit-scrollbar{
    display:none;
  }

  nav{
    flex-wrap:nowrap;
    min-width:max-content;
    gap:10px;
  }

  nav a{
    font-size:13px;
    padding:8px 12px;
    flex:0 0 auto;
  }

  .services-hero{
    padding-top:120px;
  }

  .hero-logo-img{
    width:300px;
  }

  .services-hero h1{
    font-size:46px;
  }

  .services-hero p{
    font-size:18px;
  }

  .services-intro h2,
  .services-categories h2,
  .featured-services h2,
  .services-gallery h2,
  .services-contact h2{
    font-size:38px;
  }

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

  .service-card,
  .cms-card{
    min-height:auto;
  }

  .floating-whatsapp{
    width:56px;
    height:56px;
    right:18px;
    bottom:18px;
    font-size:30px;
  }
}
.service-modal{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.75);
  display:none;
  align-items:center;
  justify-content:center;
  z-index:9999;
  padding:20px;
}

.service-modal.show{
  display:flex;
}

.service-modal-content{
  background:white;
  width:100%;
  max-width:900px;
  max-height:90vh;
  overflow:auto;
  border-radius:24px;
  padding:30px;
  position:relative;
}

.service-modal-close{
  position:absolute;
  top:15px;
  right:20px;
  font-size:34px;
  cursor:pointer;
}

.service-modal-content img{
  width:100%;
  max-height:420px;
  object-fit:cover;
  border-radius:18px;
  margin-bottom:20px;
}

.service-modal-content h2{
  font-size:42px;
  margin-bottom:15px;
}

.service-info{
  margin-top:20px;
}

.service-actions{
  display:flex;
  gap:15px;
  flex-wrap:wrap;
  margin-top:25px;
}
/* SERVICE FILTERS */

.service-filters{
  display:flex;
  justify-content:center;
  gap:15px;
  margin:30px 0;
  flex-wrap:wrap;
}

.service-filters select{
  min-width:220px;
  padding:12px 18px;
  border-radius:12px;
  border:1px solid #d6d6d6;
  background:#fff;
  font-size:15px;
  font-weight:500;
  cursor:pointer;
  box-shadow:0 4px 12px rgba(0,0,0,0.08);
  transition:all .3s ease;
}

.service-filters select:hover{
  border-color:#0f766e;
}

.service-filters select:focus{
  outline:none;
  border-color:#0f766e;
  box-shadow:0 0 0 3px rgba(15,118,110,.15);
}

@media(max-width:768px){

  .service-filters{
    flex-direction:column;
    align-items:center;
  }

  .service-filters select{
    width:100%;
    max-width:350px;
  }

}
.featured-services .services-grid{
  min-height:220px;
}

.featured-services{
  padding-bottom:90px;
}

.service-view-btn{
  border:none;
  cursor:pointer;
}
.service-modal-gallery{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:12px;
  margin:15px 0 20px;
}

.service-modal-gallery img{
  width:100%;
  height:95px;
  object-fit:cover;
  border-radius:12px;
  cursor:pointer;
  box-shadow:0 6px 18px rgba(0,0,0,0.12);
  transition:.25s ease;
}

.service-modal-gallery img:hover{
  transform:scale(1.04);
}

@media(max-width:768px){
  .service-modal-gallery{
    grid-template-columns:repeat(2,1fr);
  }
}
.service-filters input{
  min-width:260px;
  padding:12px 18px;
  border-radius:12px;
  border:1px solid #d6d6d6;
  background:#fff;
  font-size:15px;
  font-weight:500;
  box-shadow:0 4px 12px rgba(0,0,0,0.08);
}

.service-filters input:focus{
  outline:none;
  border-color:#0f766e;
  box-shadow:0 0 0 3px rgba(15,118,110,.15);
}
.footer-links{
  margin-top:12px;
  display:flex;
  justify-content:center;
  gap:20px;
  flex-wrap:wrap;
}

.footer-links a{
  color:inherit;
  text-decoration:none;
  opacity:.85;
  font-size:14px;
}

.footer-links a:hover{
  opacity:1;
  text-decoration:underline;
}
