


/* GLOBAL RESET */
html,body{
  margin:0;
  padding:0;
  overflow-x:hidden;
  font-family:system-ui,-apple-system,"Segoe UI",Roboto,Arial,sans-serif;
}



.full-width{
  width:100%;
  max-width:100%;
}

.hidden{

  display: none !important;
}


/* ================= HERO ================= */

.hero-section{
  position:relative;
  padding:90px 20px;
  background:url('assets/images/hero-bg.jpg') center/cover no-repeat;
  text-align:center;
  color:#fff;
}

.hero-overlay{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.75);
}

.hero-container{
  position:relative;
  z-index:2;
  max-width:1200px;
  margin:auto;
}

.hero-section h2{
  font-size:42px;
  font-weight:800;
  margin-bottom:20px;
}

.hero-section h2 span{
  color:#ff5f13;
  display:block;
}

.hero-section p{
  font-size:18px;
  line-height:1.8;
  max-width:900px;
  margin:0 auto 35px auto;
  color:#e6e6e6;
}

.hero-btn{
  display:inline-block;
  background:#ff5f13;
  color:#fff;
  padding:14px 32px;
  border-radius:40px;
  text-decoration:none;
  font-weight:700;
  transition:.3s ease;
}

.hero-btn:hover{
  background:#ff7a3d;
  transform:translateY(-4px);
  box-shadow:0 15px 35px rgba(255,95,19,.4);
}

/* ================= WHY CHOOSE ================= */

.lb-why-section{
  padding:90px 20px;
  background:#efefe3;
}

.lb-container{
  max-width:1200px;
  margin:auto;
}

.lb-why-section h2{
  text-align:center;
  font-size:38px;
  margin-bottom:60px;
  color:#3f3f3f;
}

.lb-why-section h2 span{
  color:#ff5f13;
}

.lb-why-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:30px;
}

.lb-why-card{
  background:#fff;
  padding:40px 20px;
  border-radius:18px;
  text-align:center;
  color:#3f3f3f;
  position:relative;
  overflow:hidden;
  transition:.35s ease;
  border-bottom:4px solid transparent;
}

.lb-why-card:hover{
  transform:translateY(-10px);
  border-bottom:4px solid #ff5f13;
  box-shadow:0 20px 50px rgba(255,95,19,.25);
}

.lb-why-card::before{
  content:"";
  position:absolute;
  top:0;
  left:-100%;
  width:100%;
  height:100%;
  background:linear-gradient(
    120deg,
    transparent,
    rgba(255,95,19,.15),
    transparent
  );
  transition:.6s ease;
}

.lb-why-card:hover::before{
  left:100%;
}

.lb-why-card h3{
  font-size:18px;
  font-weight:700;
}



/* ================= REPAIR SECTION ================= */

.lb-repair-section{
  padding:90px 20px;
  background:#efefe3;
}

.lb-repair-inner{
  max-width:1200px;
  margin:auto;
}

.lb-repair-section h2{
  font-size:38px;
  color:#3f3f3f;
  margin-bottom:30px;
}

.lb-repair-section p{
  font-size:17px;
  line-height:1.8;
  margin-bottom:25px;
  color:#3f3f3f;
}

.lb-repair-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:40px;
  margin:50px 0;
}

.lb-repair-card{
  background:#fff;
  padding:40px;
  border-radius:18px;
  border-left:6px solid #ff5f13;
  transition:.35s ease;
}

.lb-repair-card:hover{
  transform:translateY(-8px);
  box-shadow:0 20px 50px rgba(255,95,19,.2);
}

.lb-repair-card h3{
  color:#ff5f13;
  margin-bottom:20px;
}

.lb-repair-card ul{
  list-style:none;
  padding:0;
}

.lb-repair-card li{
  margin-bottom:12px;
  padding-left:22px;
  position:relative;
}

.lb-repair-card li::before{
  content:"✔";
  position:absolute;
  left:0;
  color:#ff5f13;
}

/* ================= MOBILE ================= */

@media(max-width:992px){
  .hero-section h2{font-size:28px;}
  .lb-why-grid{grid-template-columns:repeat(2,1fr);}
  .lb-repair-grid{grid-template-columns:1fr;}
}

@media(max-width:600px){
  .lb-why-grid{grid-template-columns:1fr;}
}

/* ===== MOBILE OVERFLOW FIX ===== */

*{
box-sizing:border-box;
}

html,body{
margin:0;
padding:0;
overflow-x:hidden;
}

/* FIX HERO WIDTH */
.full-width{
width:100%;
margin:0;
}

/* CONTAINER SAFE WIDTH */
.hero-container{
max-width:1100px;
margin:auto;
padding:0 20px;
width:100%;
}

/* FORM + INPUT MOBILE FIX */
.hero-container form,
.hero-container input,
.hero-container textarea,
.hero-container select{
max-width:100%;
width:100%;
}

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

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

.hero-container{
padding:0 15px;
}

.hero-container h1{
font-size:26px;
}

.hero-container h1 span{
font-size:18px;
}


.hero-container h2{
font-size:26px;
}

.hero-container h2 span{
font-size:18px;
}

.hero-container p{
font-size:15px;
}

.hero-btn{
display:block;
width:100%;
text-align:center;
margin-top:15px;
}

}


