﻿/* ================= ABOUT HERO ================= */
.about-hero{
   min-height:420px;
  padding-bottom:80px;
  color:#fff;

  background:
    linear-gradient(rgba(4,10,20,0.82), rgba(4,10,20,0.82)),
    url('https://images.unsplash.com/photo-1520607162513-77705c0f0d4a?q=80&w=1920&auto=format&fit=crop');

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

  display:flex;
  flex-direction:column;
}

/* CONTENT */
.about-hero-content{
  padding-top:90px;
  max-width:700px;
}

/* TAG */
.about-tag{
  color:#D42716;
  font-size:14px;
  letter-spacing:1px;
  margin-bottom:15px;
}

/* HEADING */
.about-hero-content h1{
  font-size:54px;
  line-height:1.2;
  margin-bottom:20px;
  font-weight:700;
}

.about-hero-content h1 span{
  color:#D42716;
}

/* DESCRIPTION */
.about-desc{
  font-size:16px;
  color:#ddd;
  line-height:1.7;
  max-width:650px;
}

/* BREADCRUMB */
.breadcrumb{
  display:flex;
  align-items:center;
  gap:10px;
  margin-top:25px;
}

.breadcrumb a{
  color:#D42716;
  text-decoration:none;
  font-size:14px;
}

.breadcrumb span{
  color:#aaa;
}

.breadcrumb p{
  color:#fff;
  font-size:14px;
}

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

  .about-hero{
    min-height:auto;
    padding-bottom:50px;
  }

  .about-hero-content{
    padding-top:50px;
  }

  .about-hero-content h1{
    font-size:30px;
  }

  .about-desc{
    font-size:14px;
  }

  .breadcrumb{
    flex-wrap:wrap;
  }

}

    /* ================= ABOUT COMPANY ================= */
.about-company{
  padding:30px 0;
  background:#fff;
}

/* FLEX */
.about-company-flex{
  display:flex;
  align-items:center;
  gap:60px;
}

/* IMAGE */
.about-company-image{
  flex:1;
}

.about-company-image img{
  width:100%;
  border-radius:12px;
  object-fit:cover;
  box-shadow:0 15px 40px rgba(0,0,0,0.12);
}

/* CONTENT */
.about-company-content{
  flex:1;
}

/* SUB */
.about-company-content .sub{
  color:#D42716;
  font-size:13px;
  margin-bottom:12px;
  letter-spacing:1px;
}

/* HEADING */
.about-company-content h2{
  font-size:38px;
  line-height:1.3;
  margin-bottom:20px;
  color:#111;
}

.about-company-content h2 span{
  color:#D42716;
}

/* TEXT */
.about-text{
  color:#555;
  line-height:1.8;
  margin-bottom:15px;
  font-size:15px;
}

/* POINTS */
.about-points{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:15px;
  margin-top:25px;
}

.about-point{
  background:#f8f8f8;
  padding:14px;
  border-radius:8px;
  font-size:14px;
  color:#222;
  border-left:3px solid #D42716;
}

/* BUTTONS */
.about-btns{
  display:flex;
  gap:15px;
  margin-top:30px;
}

/* BUTTON */
.about-btn{
  background:#D42716;
  color:#000;
  padding:14px 22px;
  border-radius:6px;
  text-decoration:none;
  font-weight:600;
  transition:0.3s;
}

.about-btn:hover{
  background:#000;
  color:#D42716;
}

/* WHATSAPP */
.about-wa{
  border:2px solid #25D366;
  color:#25D366;
  padding:12px 20px;
  border-radius:6px;
  text-decoration:none;
  transition:0.3s;
}

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

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

  .about-company{
    padding:50px 15px;
  }

  .about-company-flex{
    flex-direction:column;
    gap:35px;
  }

  .about-company-content h2{
    font-size:26px;
  }

  .about-points{
    grid-template-columns:1fr;
  }

  .about-btns{
    flex-direction:column;
  }

  .about-btn,
  .about-wa{
    width:100%;
    text-align:center;
  }

}

    /* ================= WHY CHOOSE US ================= */
.about-why{
  padding:30px 0;
  background:#f9f9f9;
}

/* GRID */
.about-why-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:25px;
  margin-top:50px;
}

/* CARD */
.about-why-card{
  background:#fff;
  padding:35px 25px;
  border-radius:12px;
  text-align:center;
  transition:0.3s;
  border:1px solid #eee;
  position:relative;
  overflow:hidden;
}

/* TOP LINE */
.about-why-card::before{
  content:"";
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:3px;
  background:#D42716;
  transform:scaleX(0);
  transition:0.3s;
  transform-origin:left;
}

/* HOVER */
.about-why-card:hover{
  transform:translateY(-6px);
  box-shadow:0 15px 35px rgba(0,0,0,0.08);
}

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

/* ICON */
.why-icon{
  width:70px;
  height:70px;
  margin:auto;
  margin-bottom:20px;
  background:#fff8df;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:28px;
  border:1px solid rgba(245,180,0,0.25);
}

/* TITLE */
.about-why-card h3{
  font-size:20px;
  margin-bottom:12px;
  color:#111;
}

/* TEXT */
.about-why-card p{
  font-size:14px;
  color:#666;
  line-height:1.7;
}

/* HEADING COLOR */
.section-head h2 span{
  color:#D42716;
}

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

  .about-why{
    padding:50px 15px;
  }

  .about-why-grid{
    grid-template-columns:1fr;
    margin-top:30px;
  }

  .about-why-card{
    padding:28px 20px;
  }

}


    /* ================= ABOUT SERVICES ================= */
/* ================= PREMIUM SERVICES ================= */
.premium-services{
  padding:30px 0;
  background:#D42716;
  position:relative;
}

/* HEADING */
.section-head.light{
  text-align:center;
  margin-bottom:50px;
}

.section-head.light .sub{
  color:#fff;
  font-size:13px;
  letter-spacing:1px;
  margin-bottom:10px;
}

.section-head.light h2{
  font-size:38px;
  color:#fff;
}

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

/* CARD */
.premium-service-card{
  background:#fff;
  border-radius:14px;
  overflow:hidden;
  transition:0.4s;
  box-shadow:0 10px 30px rgba(0,0,0,0.12);
}

/* HOVER */
.premium-service-card:hover{
  transform:translateY(-8px);
}

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

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

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

/* CONTENT */
.service-content{
  padding:25px;
  text-align:center;
}

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

/* TEXT */
.service-content p{
  font-size:14px;
  color:#555;
  line-height:1.7;
}

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

  .premium-services{
    padding:50px 15px;
  }

  .section-head.light h2{
    font-size:28px;
  }

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

  .service-image{
    height:200px;
  }

  .service-content{
    padding:20px;
  }

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

}


    /* ================= ABOUT CTA ================= */
.about-cta{
  padding:30px 0;
  background:#fff;
}

/* BOX */
.about-cta-box{
  background:
    linear-gradient(rgba(4,10,20,0.9), rgba(4,10,20,0.9)),
    url('https://images.unsplash.com/photo-1504384308090-c894fdcc538d?q=80&w=1920&auto=format&fit=crop');

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

  border-radius:18px;
  padding:60px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:40px;

  overflow:hidden;
  position:relative;
}

/* LEFT */
.about-cta-content{
  max-width:700px;
}

/* SUB */
.about-cta-content .sub{
  color:#D42716;
  font-size:13px;
  letter-spacing:1px;
  margin-bottom:15px;
}

/* HEADING */
.about-cta-content h2{
  font-size:42px;
  color:#fff;
  line-height:1.3;
  margin-bottom:20px;
}

.about-cta-content h2 span{
  color:#D42716;
}

/* TEXT */
.about-cta-content p{
  color:#ddd;
  line-height:1.8;
  font-size:15px;
}

/* POINTS */
.about-cta-points{
  display:flex;
  gap:25px;
  margin-top:25px;
  flex-wrap:wrap;
}

.cta-point{
  color:#fff;
  font-size:14px;
}

/* BUTTON SIDE */
.about-cta-buttons{
  display:flex;
  flex-direction:column;
  gap:15px;
  min-width:240px;
}

/* CALL BUTTON */
.cta-call-btn{
  background:#D42716;
  color:#000;
  padding:16px 24px;
  border-radius:8px;
  text-align:center;
  text-decoration:none;
  font-weight:700;
  transition:0.3s;
}

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

/* WHATSAPP */
.cta-wa-btn{
  border:2px solid #25D366;
  color:#25D366;
  padding:14px 22px;
  border-radius:8px;
  text-align:center;
  text-decoration:none;
  font-weight:600;
  transition:0.3s;
}

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

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

  .about-cta{
    padding:50px 15px;
  }

  .about-cta-box{
    padding:35px 25px;
    flex-direction:column;
    text-align:center;
  }

  .about-cta-content h2{
    font-size:28px;
  }

  .about-cta-points{
    justify-content:center;
    gap:12px;
  }

  .about-cta-buttons{
    width:100%;
  }

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

}


    /* ================= PREMIUM PROCESS ================= */
.premium-process{
  padding:30px 0;
  background:
    linear-gradient(rgba(4,10,20,0.92), rgba(4,10,20,0.92)),
    url('https://images.unsplash.com/photo-1497366754035-f200968a6e72?q=80&w=1920&auto=format&fit=crop');

  background-size:cover;
  background-position:center;
  position:relative;
  overflow:hidden;
}

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

.process-head .sub{
  color:#D42716;
  font-size:13px;
  letter-spacing:1px;
  margin-bottom:12px;
}

.process-head h2{
  font-size:42px;
  color:#fff;
  margin-bottom:15px;
}

.process-head h2 span{
  color:#D42716;
}

.process-top-desc{
  max-width:700px;
  margin:auto;
  color:#ccc;
  line-height:1.8;
  font-size:15px;
}

/* GRID */
.premium-process-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:30px;
  position:relative;
}

/* CARD */
.premium-process-card{
  background:rgba(255,255,255,0.06);
  backdrop-filter:blur(10px);
  border:1px solid rgba(255,255,255,0.08);

  border-radius:18px;
  padding:40px 28px;
  position:relative;
  transition:0.4s;
  overflow:hidden;
}

/* GOLD GLOW */
.premium-process-card::before{
  content:"";
  position:absolute;
  top:-50%;
  right:-50%;
  width:180px;
  height:180px;
  background:rgba(245,180,0,0.08);
  border-radius:50%;
}

/* HOVER */
.premium-process-card:hover{
  transform:translateY(-10px);
  border-color:#D42716;
  box-shadow:0 20px 50px rgba(0,0,0,0.25);
}

/* ICON */
.process-icon{
  width:75px;
  height:75px;
  border-radius:50%;
  background:#D42716;
  color:#000;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:32px;
  margin-bottom:25px;
  position:relative;
  z-index:2;
}

/* NUMBER */
.process-count{
  position:absolute;
  top:20px;
  right:25px;
  font-size:60px;
  font-weight:700;
  color:rgba(255,255,255,0.05);
  line-height:1;
}

/* TITLE */
.premium-process-card h3{
  font-size:22px;
  color:#fff;
  margin-bottom:15px;
  position:relative;
  z-index:2;
}

/* TEXT */
.premium-process-card p{
  color:#ccc;
  line-height:1.8;
  font-size:14px;
  position:relative;
  z-index:2;
}

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

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

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

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

  .premium-process-card{
    padding:35px 22px;
  }

  .process-icon{
    width:65px;
    height:65px;
    font-size:28px;
  }

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

  .process-count{
    font-size:45px;
  }

}


    /* ================= PROFESSIONAL COUNTER ================= */
.professional-counter{
  padding:30px 0;
  background:#f5f5f5;
}

/* WRAPPER */
.professional-counter-wrap{
  display:flex;
  gap:60px;
  align-items:center;
}

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

.counter-left .sub{
  color:#D42716;
  font-size:13px;
  letter-spacing:1px;
  margin-bottom:12px;
}

.counter-left h2{
  font-size:40px;
  line-height:1.3;
  color:#111;
  margin-bottom:20px;
}

.counter-desc{
  font-size:15px;
  color:#666;
  line-height:1.8;
  max-width:550px;
}

/* RIGHT */
.counter-right{
  flex:1;

  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:25px;
}

/* ITEM */
.counter-item{
  background:#fff;
  padding:35px 30px;
  border-radius:14px;
  border:1px solid #e8e8e8;
  transition:0.3s;
  position:relative;
}

/* GOLD TOP LINE */
.counter-item::before{
  content:"";
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:3px;
  background:#D42716;
  transform:scaleX(0);
  transform-origin:left;
  transition:0.3s;
}

/* HOVER */
.counter-item:hover{
  transform:translateY(-6px);
  box-shadow:0 12px 35px rgba(0,0,0,0.08);
}

.counter-item:hover::before{
  transform:scaleX(1);
}

/* NUMBER */
.counter-item h3{
  font-size:38px;
  color:#D42716;
  margin-bottom:12px;
  line-height:1;
}

/* TEXT */
.counter-item p{
  font-size:14px;
  color:#555;
  line-height:1.7;
}

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

  .professional-counter{
    padding:50px 15px;
  }

  .professional-counter-wrap{
    flex-direction:column;
    gap:35px;
  }

  .counter-left h2{
    font-size:28px;
  }

  .counter-right{ 
    width:100%;
     grid-template-columns:repeat(2,1fr);
    gap:15px;
  }

  .counter-item{
    padding:22px 18px;
    min-height:160px;

    display:flex;
    flex-direction:column;
    justify-content:center;
  }

  .counter-item h3{
     font-size:30px;
    margin-bottom:10px;
  }
   .counter-item p{
    font-size:13px;
    line-height:1.5;
  }

}

    /* ================= FAQ SECTION ================= */
.faq-section{
  padding:30px 0;
  background:#fff;
}

/* WRAPPER */
.faq-wrapper{
  max-width:900px;
  margin:50px auto 0;
}

/* ITEM */
.faq-item{
  border:1px solid #e8e8e8;
  border-radius:12px;
  margin-bottom:18px;
  overflow:hidden;
  transition:0.3s;
  background:#fff;
}

/* ACTIVE */
.faq-item.active{
  border-color:#D42716;
  box-shadow:0 10px 30px rgba(0,0,0,0.05);
}

/* QUESTION */
.faq-question{
  width:100%;
  padding:22px 25px;
  background:#fff;
  border:none;
  outline:none;

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

  font-size:17px;
  font-weight:600;
  color:#111;

  cursor:pointer;
  text-align:left;
}

/* PLUS */
.faq-question span{
  color:#D42716;
  font-size:24px;
  font-weight:700;
}

/* ANSWER */
.faq-answer{
  padding:0 25px 22px;
}

.faq-answer p{
  color:#666;
  line-height:1.8;
  font-size:15px;
}

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

  .faq-section{
    padding:50px 15px;
  }

  .faq-wrapper{
    margin-top:30px;
  }

  .faq-question{
    font-size:15px;
    padding:18px;
  }

  .faq-answer{
    padding:0 18px 18px;
  }

  .faq-answer p{
    font-size:14px;
  }

}

    /* ================= CONTACT STRIP ================= */
.contact-strip{
  padding:0 0 30px;
  background:#fff;
}

/* WRAP */
.contact-strip-wrap{
  background:linear-gradient(135deg,#0b1320,#162235);
  border-radius:18px;
  padding:45px 50px;

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

  position:relative;
  overflow:hidden;
}

/* GOLD GLOW */
.contact-strip-wrap::before{
  content:"";
  position:absolute;
  width:250px;
  height:250px;
  background:rgba(180,146,47,0.12);
  border-radius:50%;
  top:-120px;
  right:-80px;
}

/* LEFT */
.contact-strip-content{
  position:relative;
  z-index:2;
}

.contact-strip-content .sub{
  color:#D42716;
  font-size:13px;
  letter-spacing:1px;
  margin-bottom:12px;
}

.contact-strip-content h2{
  color:#fff;
  font-size:38px;
  line-height:1.4;
  max-width:700px;
}

/* BUTTONS */
.contact-strip-btns{
  display:flex;
  gap:15px;
  position:relative;
  z-index:2;
}

/* CALL */
.strip-call{
  background:#D42716;
  color:#000;
  padding:16px 28px;
  border-radius:8px;
  text-decoration:none;
  font-weight:700;
  transition:0.3s;
}

.strip-call:hover{
  background:#fff;
}

/* WHATSAPP */
.strip-wa{
  border:2px solid #25D366;
  color:#25D366;
  padding:14px 26px;
  border-radius:8px;
  text-decoration:none;
  font-weight:600;
  transition:0.3s;
}

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

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

  .contact-strip{
    padding:0 15px 50px;
  }

  .contact-strip-wrap{
    padding:35px 25px;
    flex-direction:column;
    text-align:center;
  }

  .contact-strip-content h2{
    font-size:26px;
  }

  .contact-strip-btns{
    width:100%;
    flex-direction:column;
  }

  .strip-call,
  .strip-wa{
    width:100%;
    text-align:center;
  }

}