﻿/* ================= SERVICE PAGE SECTION ================= */
.service-page-section{
  padding:30px 0;
  background:#f5f5f5;
}

/* GRID */
.service-page-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:30px;
  margin-top:50px;
}

/* CARD */
.service-page-card{
  background:#fff;
  border-radius:18px;
  overflow:hidden;
  transition:0.4s;
  box-shadow:0 10px 30px rgba(0,0,0,0.06);
  border:1px solid #eee;
}

/* HOVER */
.service-page-card:hover{
  transform:translateY(-8px);
  box-shadow:0 18px 45px rgba(0,0,0,0.12);
}

/* IMAGE */
.service-page-image{
  height:240px;
  overflow:hidden;
}

.service-page-image img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:0.5s;
}

.service-page-card:hover img{
  transform:scale(1.08);
}

/* CONTENT */
.service-page-content{
  padding:28px;
}

/* TITLE */
.service-page-content h3{
  font-size:22px;
  color:#111;
  margin-bottom:15px;
  line-height:1.4;
}

/* TEXT */
.service-page-content p{
  font-size:14px;
  color:#666;
  line-height:1.8;
  margin-bottom:22px;
}

/* BUTTON */
.service-btn{
  display:inline-block;
  background:#D42716;
  color:#fff;
  padding:13px 22px;
  border-radius:8px;
  text-decoration:none;
  font-size:14px;
  font-weight:600;
  transition:0.3s;
}

.service-btn:hover{
  background:#111827;
}

/* ================= MOBILE ================= */
@media(max-width:768px){

  .service-page-section{
    padding:50px 15px;
  }

  .service-page-grid{
    grid-template-columns:1fr;
    gap:22px;
    margin-top:30px;
  }

  .service-page-image{
    height:210px;
  }

  .service-page-content{
    padding:22px;
  }

  .service-page-content h3{
    font-size:20px;
  }

}


    /* ================= TRUST SECTION ================= */
.trust-section{
  padding:30px 0;
   background:
    linear-gradient(rgba(255,255,255,0.96), rgba(255,255,255,0.96)),
    url('https://images.unsplash.com/photo-1520607162513-77705c0f0d4a?q=80&w=1920&auto=format&fit=crop');

  background-size:cover;
  background-position:center;

  position:relative;
}

/* TOP */
.trust-top{
  display:flex;
  justify-content:space-between;
  gap:60px;
  margin-bottom:60px;
  align-items:flex-end;
}

/* LEFT */
.trust-left{
  flex:1;
}

.trust-left .sub{
  color:#D42716;
  font-size:13px;
  font-weight:600;
  letter-spacing:2px;
  text-transform:uppercase;
  margin-bottom:15px;
}

.trust-left h2{
  font-size:48px;
  line-height:1.3;
  color:#111827;
  max-width:650px;
}

/* RIGHT */
.trust-right{
  flex:1;
}

.trust-right p{
  font-size:16px;
  line-height:1.9;
  color:#5f6773;
  max-width:520px;
}

/* GRID */
.trust-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:25px;
}

/* CARD */
.trust-card{
  background:#fff;
  padding:40px 30px;
  border-radius:18px;

  transition:0.35s;

  border:1px solid #ececec;

  position:relative;
  overflow:hidden;
}

/* GOLD LINE */
.trust-card::before{
  content:"";
  position:absolute;
  left:0;
  bottom:0;
  width:100%;
  height:4px;
  background:#D42716;

  transform:scaleX(0);
  transform-origin:left;
  transition:0.35s;
}

/* HOVER */
.trust-card:hover{
  transform:translateY(-8px);
  box-shadow:0 20px 50px rgba(0,0,0,0.08);
}

.trust-card:hover::before{
  transform:scaleX(1);
}

/* ICON */
.trust-icon{
  width:72px;
  height:72px;

  background:#f7f1e2;
  color:#D42716;

  border-radius:16px;

  display:flex;
  align-items:center;
  justify-content:center;

  font-size:32px;

  margin-bottom:25px;
}

/* TITLE */
.trust-card h3{
  font-size:22px;
  color:#111827;
  margin-bottom:14px;
  line-height:1.4;
}

/* TEXT */
.trust-card p{
  font-size:14px;
  color:#667085;
  line-height:1.8;
}

/* ================= MOBILE ================= */
@media(max-width:768px){

  .trust-section{
    padding:60px 15px;
  }

  .trust-top{
    flex-direction:column;
    gap:20px;
    margin-bottom:35px;
  }

  .trust-left h2{
    font-size:30px;
  }

  .trust-right p{
    font-size:15px;
  }

  .trust-grid{
    grid-template-columns:1fr;
    gap:20px;
  }

  .trust-card{
    padding:30px 22px;
  }

  .trust-icon{
    width:62px;
    height:62px;
    font-size:26px;
  }

  .trust-card h3{
    font-size:20px;
  }

}

    /* ================= HORIZONTAL PROCESS ================= */
.horizontal-process{
  padding:30px 0;
  background:#f8f8f8;
}

/* ================= HEADING ================= */
.process-heading{
  text-align:center;
  margin-bottom:60px;
}

.process-heading .sub{
  color:#D42716;
  font-size:13px;
  letter-spacing:2px;
  text-transform:uppercase;
  margin-bottom:14px;
}

.process-heading h2{
  font-size:46px;
  color:#111827;
  line-height:1.3;
}

/* ================= GRID ================= */
.horizontal-process-wrap{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:22px;
  align-items:stretch;
}

/* ================= BOX ================= */
.process-box{
  background:#fff;
  padding:35px 24px;
  border-radius:18px;

  min-height:240px;

  border:1px solid #ececec;

  transition:0.35s;

  position:relative;

  overflow:hidden;

  box-shadow:0 10px 30px rgba(0,0,0,0.04);
}

/* TOP GOLD LINE */
.process-box::before{
  content:"";
  position:absolute;
  left:0;
  top:0;
  width:100%;
  height:4px;
  background:#D42716;

  transform:scaleX(0);
  transform-origin:left;

  transition:0.35s;
}

/* HOVER */
.process-box:hover{
  transform:translateY(-8px);
  box-shadow:0 20px 50px rgba(0,0,0,0.08);
}

.process-box:hover::before{
  transform:scaleX(1);
}

/* NUMBER */
.process-number{
  width:58px;
  height:58px;

  background:#D42716;
  color:#fff;

  border-radius:50%;

  display:flex;
  align-items:center;
  justify-content:center;

  font-size:20px;
  font-weight:700;

  margin-bottom:22px;

  box-shadow:0 10px 25px rgba(180,146,47,0.25);
}

/* TITLE */
.process-box h3{
  font-size:24px;
  color:#111827;
  line-height:1.4;
  margin-bottom:15px;
}

/* TEXT */
.process-box p{
  font-size:14px;
  color:#667085;
  line-height:1.9;
}

/* ================= TABLET ================= */
@media(max-width:992px){

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

}

/* ================= MOBILE ================= */
@media(max-width:768px){

  .horizontal-process{
    padding:60px 15px;
  }

  .process-heading{
    margin-bottom:40px;
  }

  .process-heading h2{
    font-size:30px;
  }

  .horizontal-process-wrap{
    grid-template-columns:repeat(2,1fr);
    gap:15px;
  }

  .process-box{
    padding:22px 16px;
    min-height:auto;
  }

  .process-number{
    width:48px;
    height:48px;
    font-size:16px;
    margin-bottom:15px;
  }

  .process-box h3{
    font-size:17px;
    line-height:1.5;
  }

  .process-box p{
    font-size:13px;
    line-height:1.7;
  }

}

    /* ================= SERVICE CTA ================= */
.service-cta{
  padding:30px 0;
  background:#ffffff;
}

/* WRAP */
.service-cta-wrap{
  background:
    linear-gradient(rgba(7,15,28,0.92), rgba(7,15,28,0.92)),
    url('https://images.unsplash.com/photo-1520607162513-77705c0f0d4a?q=80&w=1920&auto=format&fit=crop');

  background-size:cover;
  background-position:center;

  border-radius:24px;

  padding:70px 60px;

  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:50px;

  overflow:hidden;
  position:relative;
}

/* GOLD GLOW */
.service-cta-wrap::before{
  content:"";
  position:absolute;
  width:320px;
  height:320px;

  background:rgba(180,146,47,0.15);

  border-radius:50%;

  top:-120px;
  right:-80px;

  filter:blur(20px);
}

/* CONTENT */
.service-cta-content{
  max-width:700px;
  position:relative;
  z-index:2;
}

/* SUB */
.service-cta-content .sub{
  color:#D42716;
  font-size:13px;
  letter-spacing:2px;
  text-transform:uppercase;
  margin-bottom:15px;
}

/* TITLE */
.service-cta-content h2{
  font-size:48px;
  line-height:1.3;
  color:#fff;
  margin-bottom:18px;
}

/* TEXT */
.service-cta-content p{
  font-size:16px;
  color:#d0d5dd;
  line-height:1.9;
}

/* BUTTONS */
.service-cta-btns{
  display:flex;
  flex-direction:column;
  gap:16px;

  min-width:250px;

  position:relative;
  z-index:2;
}

/* CALL */
.cta-call-btn{
  background:#D42716;
  color:#fff;

  padding:16px 28px;

  border-radius:10px;

  text-decoration:none;

  font-size:15px;
  font-weight:600;

  text-align:center;

  transition:0.35s;
}

.cta-call-btn:hover{
  background:#fff;
  color:#111827;
}

/* WHATSAPP */
.cta-wa-btn{
  border:2px solid #25D366;
  color:#25D366;

  padding:15px 28px;

  border-radius:10px;

  text-decoration:none;

  font-size:15px;
  font-weight:600;

  text-align:center;

  transition:0.35s;
}

.cta-wa-btn:hover{
  background:#25D366;
  color:#fff;
}

/* ================= MOBILE ================= */
@media(max-width:768px){

  .service-cta{
    padding:60px 15px;
  }

  .service-cta-wrap{
    padding:40px 25px;

    flex-direction:column;
    text-align:center;

    gap:35px;
  }

  .service-cta-content h2{
    font-size:30px;
  }

  .service-cta-content p{
    font-size:15px;
  }

  .service-cta-btns{
    width:100%;
    min-width:100%;
  }

  .cta-call-btn,
  .cta-wa-btn{
    width:100%;
  }

}