/* =========================
FILE : /css/style.css
========================= */

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  background:#020b18;
  color:#fff;
  font-family:'Poppins',sans-serif;
  overflow-x:hidden;
}

.container{
  width:90%;
  max-width:1400px;
  margin:auto;
}

/* =========================
NAVBAR
========================= */

.header{
  position:fixed;
  width:100%;
  top:0;
  z-index:999;
  backdrop-filter:blur(12px);
  background:rgba(1,10,25,.82);
  border-bottom:1px solid rgba(255,196,0,.2);
}

.nav-wrapper{
  height:90px;
  display:flex;
  align-items:center;
  justify-content:space-between;
}

.logo{
  display:flex;
  align-items:center;
  gap:14px;
}

.logo img{
  width:60px;
}

.logo h2{
  font-family:'Bebas Neue';
  letter-spacing:2px;
  font-size:34px;
}

.logo span{
  font-size:12px;
  color:#b9c3d1;
}

.navbar{
  display:flex;
  gap:40px;
}

.navbar a{
  color:#fff;
  text-decoration:none;
  font-weight:500;
  position:relative;
  transition:.4s;
}

.navbar a:hover{
  color:#ffbf00;
  text-shadow:
    0 0 10px #ffbf00,
    0 0 20px #ffbf00;
}

.call-btn{
  padding:14px 22px;
  border-radius:12px;
  background:linear-gradient(135deg,#f0b000,#ffcf40);
  color:#000;
  text-decoration:none;
  font-weight:600;
  transition:.4s;
}

.call-btn:hover{
  transform:translateY(-3px);
  box-shadow:
  0 0 20px rgba(255,191,0,.8);
}

.hamburger{
  display:none;
  flex-direction:column;
  gap:6px;
  cursor:pointer;
}

.hamburger span{
  width:28px;
  height:3px;
  background:#fff;
}

/* =========================
HERO
========================= */

.hero{
  min-height:100vh;
  position:relative;
  display:flex;
  align-items:center;
  background:
  linear-gradient(to right,#010915 35%,rgba(1,9,21,.2)),
  url('../assets/img/bg.webp');
  background-size:cover;
  background-position:center;
}

.hero-overlay{
  position:absolute;
  inset:0;
  background:
  radial-gradient(circle at right,
  rgba(0,102,255,.3),
  transparent 50%);
}

.hero-content{
  position:relative;
  z-index:2;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:40px;
  align-items:center;
  padding-top:120px;
}

.mini-title{
  color:#ffbf00;
  letter-spacing:2px;
  font-weight:600;
}

.hero-left h1{
  font-family:'Oswald';
  font-size:95px;
  line-height:1;
  margin:20px 0;
}

.hero-left h1 span{
  color:#ffbf00;
}

.hero-left p{
  max-width:600px;
  line-height:1.8;
  color:#d3dbe7;
}

.hero-icons{
  display:flex;
  gap:20px;
  margin:40px 0;
}

.icon-box{
  border:1px solid rgba(255,191,0,.3);
  padding:20px;
  border-radius:18px;
  transition:.4s;
  background:rgba(255,255,255,.03);
}

.icon-box:hover{
  transform:translateY(-10px);
  box-shadow:
  0 0 25px rgba(255,191,0,.6);
}

.icon{
  font-size:28px;
  color:#ffbf00;
  margin-bottom:10px;
}

.hero-buttons{
  display:flex;
  gap:20px;
}

.btn{
  padding:16px 30px;
  border-radius:14px;
  text-decoration:none;
  transition:.4s;
  display:inline-block;
}

.primary-btn{
  background:linear-gradient(135deg,#e8a900,#ffcc2a);
  color:#000;
  font-weight:700;
}

.primary-btn:hover{
  box-shadow:
  0 0 25px rgba(255,191,0,.9);
  transform:translateY(-4px);
}

.secondary-btn{
  border:1px solid #ffbf00;
  color:#fff;
}

.secondary-btn:hover{
  background:#ffbf00;
  color:#000;
}

.hero-right img{
  width:100%;
  animation:floatCar 4s ease-in-out infinite;
}

@keyframes floatCar{
  0%,100%{
    transform:translateY(0px);
  }
  50%{
    transform:translateY(-15px);
  }
}

/* =========================
SERVICES
========================= */

.services{
  padding:120px 0;
}

.section-title{
  margin-bottom:60px;
}

.section-title span{
  color:#ffbf00;
}

.section-title h2{
  font-family:'Oswald';
  font-size:60px;
  max-width:700px;
}

.service-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:25px;
}

.service-card{
  overflow:hidden;
  border-radius:22px;
  background:#071427;
  border:1px solid rgba(255,191,0,.15);
  transition:.5s;
}

.service-card:hover{
  transform:translateY(-12px);
  box-shadow:
  0 0 30px rgba(255,191,0,.5);
}

.service-card img{
  width:100%;
  height:240px;
  object-fit:cover;
}

.service-content{
  padding:30px;
}

.service-content h3{
  margin-bottom:15px;
}

.service-content p{
  color:#c6cfdb;
  line-height:1.8;
}

.service-content a{
  display:inline-block;
  margin-top:20px;
  color:#ffbf00;
  text-decoration:none;
}

/* =========================
PROMO
========================= */

.promo{
  padding-bottom:120px;
}

.promo-wrapper{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:40px;
  background:#071427;
  border-radius:30px;
  overflow:hidden;
}

.promo-left img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.promo-right{
  padding:60px;
}

.promo-right span{
  color:#ffbf00;
}

.promo-right h2{
  font-family:'Oswald';
  font-size:70px;
  margin:20px 0;
}

.promo-right p{
  line-height:1.9;
  margin-bottom:30px;
}

/* =========================
FOOTER
========================= */

.footer{
  border-top:1px solid rgba(255,191,0,.2);
  padding-top:80px;
  background:#010915;
}

.footer-grid{
  display:grid;
  grid-template-columns:2fr 1fr 1fr;
  gap:40px;
  padding-bottom:60px;
}

.footer h2,
.footer h3{
  margin-bottom:20px;
}

.footer ul{
  list-style:none;
}

.footer li{
  margin-bottom:14px;
}

.footer a{
  color:#d6dce7;
  text-decoration:none;
}

.footer a:hover{
  color:#ffbf00;
}

.copyright{
  text-align:center;
  border-top:1px solid rgba(255,255,255,.08);
  padding:25px;
  color:#9fb0c6;
}

/* =========================
REVEAL ANIMATION
========================= */

.reveal{
  opacity:0;
  transform:translateY(70px);
  transition:1s;
}

.reveal.active{
  opacity:1;
  transform:translateY(0);
}

/* =========================
RESPONSIVE
========================= */

@media(max-width:1100px){

  .hero-content,
  .promo-wrapper{
    grid-template-columns:1fr;
  }

  .service-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .hero-left h1{
    font-size:75px;
  }
}

@media(max-width:768px){

  .navbar{
    position:absolute;
    top:90px;
    left:0;
    width:100%;
    background:#020b18;
    flex-direction:column;
    padding:30px;
    display:none;
  }

  .navbar.active{
    display:flex;
  }

  .hamburger{
    display:flex;
  }

  .call-btn{
    display:none;
  }

  .hero-left h1{
    font-size:58px;
  }

  .section-title h2{
    font-size:42px;
  }

  .service-grid{
    grid-template-columns:1fr;
  }

  .footer-grid{
    grid-template-columns:1fr;
  }

  .promo-right h2{
    font-size:52px;
  }

  .hero-icons{
    flex-direction:column;
  }
}