
/* =====================================================
   Mentroid Service Page Styles
   Uses existing style.css as base.
   ===================================================== */

:root{
  --service-max:1200px;
}

body{
  overflow-x:hidden;
}

/* Hero */
.service-hero{
  min-height:85vh;
  display:flex;
  align-items:center;
  position:relative;
  padding:8rem 0 2rem;
}

.service-hero-grid{
    max-width:1200px;
    margin:auto;
    display:grid;
    grid-template-columns:1.2fr .8fr;
    gap:4rem;
    align-items:center;
}

.hero-badge{
  display:inline-flex;
  padding:.6rem 1rem;
  border-radius:999px;
  background:rgba(124,58,237,.15);
  border:1px solid rgba(167,139,250,.25);
  color:var(--purple-light,#c4b5fd);
  margin-bottom:1.5rem;
}


.hero-right{
    display:flex;
    justify-content:center;
    align-items:center;
}

.hero-image{
    width:420px;
    max-width:100%;
    display:block;
}
.hero-content{
    width:100%;
}
.service-hero h1{
  font-size:clamp(2.8rem,6vw,4.8rem);
  line-height:1.1;
  margin-bottom:1.5rem;
}
.hero-stats{
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 60px;
    text-align: center;
}

.service-hero p{
  max-width:650px;
  opacity:.9;
  font-size:1.1rem;
  line-height:1.8;
}

.service-hero img{
  width:100%;
  max-width:420px;
  margin-inline:auto;
  animation:floatLogo 6s ease-in-out infinite;
}

@keyframes floatLogo{
  0%,100%{transform:translateY(0)}
  50%{transform:translateY(-12px)}
}

.hero-btns{
  display:flex;
  gap:1rem;
  margin-top:2rem;
  flex-wrap:wrap;
}

/* Generic section */

.section{
  padding:6rem 0;
}

.section-title{
  text-align:center;
  margin-bottom:3rem;
}

/* Cards */

.svc-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:1.5rem;
}

.svc-card{
  background:rgba(255,255,255,.05);
  backdrop-filter:blur(14px);
  border:1px solid rgba(255,255,255,.08);
  border-radius:22px;
  padding:2rem;
  transition:.35s;
}

.svc-card:hover{
  transform:translateY(-8px);
  border-color:#7c3aed;
  box-shadow:0 20px 50px rgba(124,58,237,.25);
}

.svc-card h3{
  margin-bottom:1rem;
}

.svc-card p{
  opacity:.85;
  line-height:1.7;
}

/* Process */

.process-steps{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:1.5rem;
}

.step-card{
  padding:2rem;
  border-radius:22px;
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.08);
  text-align:center;
}

.step-num{
  width:64px;
  height:64px;
  display:grid;
  place-items:center;
  margin:0 auto 1rem;
  border-radius:50%;
  background:linear-gradient(135deg,#7c3aed,#2563eb);
  color:#fff;
  font-weight:700;
  font-size:1.3rem;
}

/* CTA */

.cta-box{
  max-width:900px;
  margin:auto;
  text-align:center;
  padding:4rem 2rem;
  border-radius:28px;
  background:linear-gradient(135deg,rgba(124,58,237,.15),rgba(37,99,235,.15));
  border:1px solid rgba(255,255,255,.08);
}

.cta-box h2{
  margin-bottom:1rem;
}

.cta-box p{
  max-width:650px;
  margin:0 auto 2rem;
  opacity:.85;
}

/* FAQ */

.faq-item{
  border:1px solid rgba(255,255,255,.08);
  border-radius:18px;
  margin-bottom:1rem;
  overflow:hidden;
}

.faq-question{
  cursor:pointer;
  padding:1.25rem 1.5rem;
  font-weight:600;
}

.faq-answer{
  display:none;
  padding:0 1.5rem 1.5rem;
  opacity:.9;
}

.faq-item.active .faq-answer{
  display:block;
}

/* Footer */

footer{
  margin-top:4rem;
}

/* Responsive */

@media(max-width:992px){

.service-hero .container{
grid-template-columns:1fr;
text-align:center;
}

.hero-btns{
justify-content:center;
}

.service-hero p{
margin-inline:auto;
}

}

@media(max-width:768px){

.service-hero{
padding-top:7rem;
}

.section{
padding:4rem 0;
}

.service-hero h1{
font-size:2.4rem;
}

}
