/* True Core Services */
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  font-family:Arial, Helvetica, sans-serif;
  background:#0f172a;
  color:white;
}

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

.navbar{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  background:rgba(10,18,38,.9);
  backdrop-filter:blur(10px);
  z-index:1000;
}

.navbar .container{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:20px 0;
}

.logo{
  color:white;
  font-size:1.8rem;
  font-weight:900;
}

.logo span{
  color:#e11d2e;
}

.nav-links{
  display:flex;
  gap:30px;
}

.nav-links a{
  color:white;
  text-decoration:none;
  transition:.3s;
}

.nav-links a:hover{
  color:#e11d2e;
}

.call-button{
  background:#e11d2e;
  color:white;
  text-decoration:none;
  padding:12px 22px;
  border-radius:8px;
  font-weight:bold;
}

.hero{
  min-height:75vh;
  display:flex;
  justify-content:center;
  align-items:center;
  text-align:center;
  padding:80px 20px;
  background:
    linear-gradient(rgba(5,10,20,.72),rgba(5,10,20,.72)),
    url("/hero-bg.svg");
  background-size:cover;
  background-position:center top;
}

.tagline{
  color:#e11d2e;
  letter-spacing:2px;
  margin-bottom:20px;
  font-weight:bold;
}

.hero h1{
  font-size:4rem;
  max-width:900px;
  margin:auto;
}

.hero-text{
  max-width:700px;
  margin:30px auto;
  color:#d4d4d4;
  font-size:1.2rem;
  line-height:1.7;
}

.hero-buttons{
  display:flex;
  justify-content:center;
  gap:20px;
  flex-wrap:wrap;
}

.primary-btn,
.secondary-btn{
  padding:16px 30px;
  text-decoration:none;
  border-radius:10px;
  font-weight:bold;
}

.primary-btn{
  background:#e11d2e;
  color:white;
}

.secondary-btn{
  border:2px solid white;
  color:white;
}

section:not(.hero){
  padding:35px 5%;
}

footer{
  height:120px;
}

@media(max-width:900px){

.nav-links{
display:none;
}

.hero h1{
font-size:2.6rem;
}

.hero-text{
font-size:1rem;
}

.call-button{
display:none;
}

}
 .services{
 background:#111827;
 text-align:center;
 }

 .services h2{
 font-size:2.8rem;
 margin-bottom:15px;
 }

.section-text{
  color:#bdbdbd;
  margin-bottom:30px;
}

.service-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:14px;
}

.service-card{
  background:#1f2937;
  padding:20px 12px;
  border-radius:15px;
  transition:.35s;
  border:1px solid rgba(255,255,255,.08);
}

 .service-card:hover{
 transform:translateY(-10px);
 border-color:#e11d2e;
 }

.service-card h3{
  margin-bottom:10px;
  font-size:1.05rem;
}

 .service-card p{
 line-height:1.6;
 color:#d4d4d4;
 }
.service-card{
position:relative;
overflow:hidden;
background:#1f2937;
padding:40px 35px;
border-radius:18px;
border-top:5px solid #e11d2e;
transition:.35s ease;
}

.service-card::before{
content:"";
position:absolute;
top:0;
left:-100%;
width:100%;
height:100%;
background:linear-gradient(90deg,transparent,rgba(255,255,255,.08),transparent);
transition:.6s;
}

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

.service-card:hover{
transform:translateY(-12px);
box-shadow:0 20px 45px rgba(225,29,46,.25);
}

.service-card h3{
font-size:1.6rem;
margin-bottom:18px;
}

.service-card p{
font-size:1.05rem;
line-height:1.7;
color:#cfcfcf;
}

.service-card a{
display:inline-block;
margin-top:25px;
color:#ff3b4f;
font-weight:bold;
text-decoration:none;
}

.service-card a:hover{
color:white;
}
.about{
background:#0b1220;
text-align:center;
}

.about h2{
font-size:2.8rem;
margin-bottom:60px;
}

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

.feature{
padding:35px;
background:#182233;
border-radius:18px;
transition:.3s;
}

.feature:hover{
background:#1f2d45;
transform:translateY(-8px);
}

.feature h3{
margin-bottom:15px;
font-size:1.4rem;
}

.feature p{
color:#c9c9c9;
line-height:1.7;
}
.stats{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(140px,1fr));
gap:25px;
padding:80px 20px;
background:#e11d2e;
text-align:center;
}

.stat{
  transition:.3s;
  cursor:pointer;
  border-radius:16px;
padding:30px;
}
.stat:hover{
transform:translateY(-8px);
background:rgba(255,255,255,.12);
}

.stat h2{
font-size:3rem;
margin:0;
color:white;
}

.stat p{
margin-top:10px;
font-size:1.1rem;
color:white;
opacity:.9;
}
.navbar{
position:sticky;
top:0;
display:flex;
justify-content:space-between;
align-items:center;
padding:20px 40px;
background:#0d1328;
z-index:1000;
}

.logo{
font-size:2.5rem;
font-weight:900;
line-height:1;
white-space:nowrap;
}

.logo span{
color:#e11d2e;
}

.nav-links{
display:flex;
list-style:none;
gap:18px;
margin:0;
padding:0;
font-size:1rem;
}

.nav-links a{
color:white;
text-decoration:none;
font-weight:600;
transition:.3s;
}

.nav-links a:hover{
color:#e11d2e;
}
@media (max-width:768px){

.navbar{
flex-direction:column;
gap:18px;
padding:20px;
}

.nav-links{
flex-wrap:wrap;
justify-content:center;
}

}
.company-about{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:50px;
  align-items:center;
  padding:100px 10%;
  background:#10192e;
}

.about-text h2{
  font-size:3rem;
  color:#fff;
  margin-bottom:20px;
}

.about-text p{
  color:#bfc6d4;
  line-height:1.8;
  margin-bottom:30px;
  font-size:1.05rem;
}

.about-image img{
  width:100%;
  border-radius:18px;
  display:block;
  box-shadow:0 20px 50px rgba(0,0,0,.35);
}

@media (max-width:900px){
  .company-about{
    grid-template-columns:1fr;
    text-align:center;
  }

  .about-image{
    order:-1;
  }
}
.reviews{
  background:#111827;
  text-align:center;
}

.reviews h2{
  font-size:2.8rem;
  margin-bottom:50px;
}

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

.review-card{
  background:#1f2937;
  padding:35px;
  border-radius:18px;
  border:1px solid rgba(255,255,255,.08);
}

.review-card p{
  color:#d0d5df;
  line-height:1.8;
  margin-bottom:20px;
}

.review-card h4{
  color:#e11d2e;
  font-size:1.3rem;
  margin-bottom:10px;
}

.review-card span{
  color:#9ca3af;
}

.contact{
  background:
    linear-gradient(rgba(6,12,24,.88),rgba(6,12,24,.88)),
    url("/hero-bg.svg");
  background-size:cover;
  background-position:center top;
  text-align:center;
}

.contact-content{
  max-width:700px;
  margin:auto;
}

.contact-small{
  color:#e11d2e;
  font-weight:bold;
  letter-spacing:2px;
  margin-bottom:15px;
}

.contact h2{
  font-size:3rem;
  margin-bottom:20px;
}

.contact p{
  color:#cbd5e1;
  line-height:1.8;
  margin-bottom:30px;
}

.contact .primary-btn,
.contact .secondary-btn{
  display:inline-block;
  margin:8px;
}
@media(max-width:768px){

  /* COMPACT MOBILE NAV */
  .navbar{
    flex-direction:row;
    justify-content:space-between;
    align-items:center;
    padding:14px 18px;
  }

  .logo{
    font-size:1.6rem;
  }

  .nav-links{
    display:none;
  }

  .call-button{
    display:inline-block;
    padding:10px 16px;
    font-size:.9rem;
  }


  /* SERVICES = SIDEWAYS SWIPE INSTEAD OF HUGE VERTICAL LIST */
  .service-grid{
    display:flex;
    overflow-x:auto;
    gap:14px;
    padding-bottom:12px;
    scroll-snap-type:x mandatory;
  }

  .service-grid::-webkit-scrollbar{
    display:none;
  }

  .service-card{
    flex:0 0 78%;
    min-height:260px;
    padding:24px 20px;
    scroll-snap-align:center;
    display:flex;
    flex-direction:column;
    justify-content:center;
  }

  .service-card h3{
    font-size:1.25rem;
    margin-bottom:12px;
  }

  .service-card p{
    font-size:.95rem;
    line-height:1.5;
  }

  .service-card a{
    margin-top:18px;
  }


  /* SMALLER SECTION SPACING */
  section:not(.hero){
    padding-top:45px;
    padding-bottom:45px;
  }

  .section-text{
    margin-bottom:25px;
  }

  .reviews h2,
  .services h2,
  .company-about h2{
    font-size:2rem;
    margin-bottom:25px;
  }

}
@media(max-width:768px){

  .review-grid{
    display:flex;
    overflow-x:auto;
    gap:14px;
    padding-bottom:12px;
    scroll-snap-type:x mandatory;
  }

  .review-grid::-webkit-scrollbar{
    display:none;
  }

  .review-card{
    flex:0 0 82%;
    min-height:230px;
    padding:25px 20px;
    scroll-snap-align:center;
    display:flex;
    flex-direction:column;
    justify-content:center;
  }

}
@media(max-width:768px){

  .navbar{
    padding:10px 16px;
    min-height:auto;
  }

  .logo{
    font-size:1.35rem;
  }

  .call-button{
    padding:9px 14px;
    font-size:.85rem;
  }

}
@media(max-width:768px){

  .features{
    grid-template-columns:repeat(2,1fr);
    gap:12px;
  }

  .feature{
    padding:16px 10px;
    min-height:150px;
    display:flex;
    flex-direction:column;
    justify-content:center;
  }

  .feature h3{
    font-size:1rem;
    margin-bottom:8px;
  }

  .feature p{
    font-size:.85rem;
    line-height:1.4;
  }

}
@media(max-width:768px){
  #why-choose,
  .why-choose{
    scroll-margin-top:110px;
    padding-top:70px;
  }
}
@media(max-width:768px){

  .company-about{
    padding:40px 6%;
    gap:25px;
  }

  .about-image img{
    max-height:300px;
    object-fit:contain;
  }

  .about-text h2{
    font-size:2rem;
    margin-bottom:14px;
  }

  .about-text p{
    font-size:.95rem;
    line-height:1.55;
    margin-bottom:20px;
  }

  .about-text .primary-btn{
    padding:12px 22px;
    font-size:.95rem;
  }

}
.footer{
  height:auto;
  background:#080e1c;
  padding:55px 8% 25px;
  border-top:1px solid rgba(255,255,255,.08);
}

.footer-grid{
  max-width:1200px;
  margin:auto;
  display:grid;
  grid-template-columns:1.2fr 1fr 1fr;
  gap:50px;
}

.footer-brand h2{
  font-size:1.8rem;
  margin-bottom:15px;
}

.footer-brand span{
  color:#e11d2e;
}

.footer-brand p,
.footer-info p{
  color:#9ca3af;
  line-height:1.6;
}

.footer-info h3{
  margin-bottom:15px;
}

.footer-info a{
  display:block;
  color:#cbd5e1;
  text-decoration:none;
  margin-bottom:10px;
}

.footer-bottom{
  max-width:1200px;
  margin:35px auto 0;
  padding-top:20px;
  border-top:1px solid rgba(255,255,255,.08);
  color:#6b7280;
  font-size:.85rem;
}

.floating-call{
  display:none;
}

.floating-text{
  display:none;
}

@media(max-width:768px){

  .footer{
    padding:35px 6% 90px;
  }

  .footer-grid{
    grid-template-columns:1fr 1fr;
    gap:28px 18px;
  }

  .footer-brand{
    grid-column:1 / -1;
  }

  .footer-brand h2{
    font-size:1.5rem;
  }

  .footer-info{
    font-size:.85rem;
  }

  .footer-bottom{
    margin-top:25px;
  }

  .floating-call{
    display:block;
    position:fixed;
    bottom:18px;
    left:50%;
    transform:translateX(-50%);
    background:#e11d2e;
    color:white;
    text-decoration:none;
    font-weight:800;
    padding:13px 28px;
    border-radius:50px;
    box-shadow:0 8px 30px rgba(0,0,0,.45);
    z-index:2000;
    white-space:nowrap;
  }

  .floating-text{
    display:block;
    position:fixed;
    bottom:76px;
    left:50%;
    transform:translateX(-50%);
    background:#0f1f3d;
    color:white;
    text-decoration:none;
    font-weight:800;
    padding:13px 28px;
    border-radius:50px;
    box-shadow:0 8px 30px rgba(0,0,0,.45);
    border:2px solid rgba(225,29,46,.55);
    z-index:2000;
    white-space:nowrap;
  }

}
.hidden{
  opacity:0;
  transform:translateY(30px);
  transition:opacity .6s ease, transform .6s ease;
}

.show{
  opacity:1;
  transform:translateY(0);
}
.hidden{
  opacity:0;
  transform:translateY(60px);
  transition:opacity .8s ease, transform .8s ease;
}

.show{
  opacity:1;
  transform:translateY(0);
}
.estimate-form{
  max-width:600px;
  margin:30px auto 20px;
  display:grid;
  gap:14px;
}

.estimate-form input,
.estimate-form select,
.estimate-form textarea{
  width:100%;
  padding:15px;
  border:1px solid rgba(255,255,255,.15);
  border-radius:10px;
  background:#111827;
  color:white;
  font-size:1rem;
  font-family:inherit;
  outline:none;
}

.estimate-form input:focus,
.estimate-form select:focus,
.estimate-form textarea:focus{
  border-color:#e11d2e;
}

.estimate-form textarea{
  resize:vertical;
}

.estimate-form button{
  border:0;
  background:#e11d2e;
  color:white;
  padding:16px;
  border-radius:10px;
  font-size:1rem;
  font-weight:800;
  cursor:pointer;
}

.contact-or{
  margin:20px 0 8px !important;
  color:#9ca3af !important;
}

.contact-phone{
  color:white;
  font-size:1.5rem;
  font-weight:900;
  text-decoration:none;
}
.logo small{
  display:block;
  font-size:.38em;
  letter-spacing:4px;
  color:#9ca3af;
  margin-top:4px;
}
.hero-trust{
  margin-top:25px;
  color:#cbd5e1;
  font-size:.9rem;
  font-weight:600;
}

@media(max-width:768px){
  .hero-trust{
    font-size:.78rem;
    line-height:1.7;
  }
}
@media (max-width: 768px) {
  .stats .stat h2 {
    font-size: 2rem !important;
    line-height: 1.05;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .stats .stat p {
    font-size: 1rem !important;
  }
}
@media(max-width:768px){
  .stats .stat h2{
    font-size:1.8rem !important;
    line-height:1;
    white-space:nowrap;
  }

  .stats .stat p{
    font-size:.95rem !important;
    line-height:1.25;
  }
}
.service-modal{
  display:none;
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.75);
  z-index:5000;
  padding:20px;
  align-items:center;
  justify-content:center;
}

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

.service-modal-content{
  width:100%;
  max-width:500px;
  background:#111827;
  border-radius:20px;
  padding:35px 25px;
  position:relative;
  border:1px solid rgba(255,255,255,.1);
  box-shadow:0 25px 70px rgba(0,0,0,.5);
}

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

.service-modal-content p{
  color:#cbd5e1;
  line-height:1.7;
  margin-bottom:25px;
}

.modal-close{
  position:absolute;
  top:12px;
  right:16px;
  border:0;
  background:none;
  color:white;
  font-size:2rem;
  cursor:pointer;
}
