*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  text-decoration:none;
  list-style:none;
  font-family:'Readex Pro', sans-serif;
}

body{
  background:#000;
  color:#fff;
  overflow-x:hidden;
}

/* NAVIGATION */

.nav{
  padding:20px 5%;
  background:#000;
}

.nav-top{
  display:flex;
  justify-content:space-between;
  align-items:center;
  font-size:14px;
}

.call-btn{
  background:#FFD700;
  color:#000;
  padding:8px 18px;
  border-radius:30px;
  display:flex;
  align-items:center;
  gap:8px;
  font-weight:600;
  transition:0.3s;
}

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

.nav-main{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-top:20px;
}

.logo{
  width:60px;
}

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

.nav-links a{
  color:#fff;
  transition:0.3s;
}

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

.menu-btn{
  display:none;
  background:none;
  border:none;
  color:#FFD700;
  font-size:28px;
}

/* MOBILE MENU */

.mobile-menu{
  position:fixed;
  top:0;
  left:-100%;
  width:100%;
  height:100%;
  background:#000;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  transition:0.4s;
  z-index:1000;
}

.mobile-menu.active{
  left:0;
}

.mobile-menu ul{
  text-align:center;
}

.mobile-menu li{
  margin:20px 0;
  font-size:24px;
}

.close-btn{
  position:absolute;
  top:20px;
  right:20px;
  background:none;
  border:none;
  color:#FFD700;
  font-size:30px;
}

/* HERO */

.hero{
  position:relative;
  height:85vh;
  display:flex;
  justify-content:center;
  align-items:center;
  text-align:center;
}

.hero-video{
  position:absolute;
  width:100%;
  height:100%;
  z-index:-1;
  overflow:hidden;
}

.hero-video video{
  width:100%;
  height:100%;
  object-fit:cover;
  opacity:0.35;
}

.hero-content h1{
  font-size:3.5rem;
  font-weight:700;
}

.hero-content h2{
  margin-top:15px;
  font-weight:400;
  font-size:1rem;
}

.cta-btn{
  margin-top:30px;
  display:inline-flex;
  align-items:center;
  gap:10px;
  background:#FFD700;
  color:#000;
  padding:12px 35px;
  border-radius:50px;
  font-weight:500;
  transition:0.3s;
}

.cta-btn:hover{
  background:#fff;
  transform:scale(1.05);
}

/* ABOUT */

.about{
  padding:80px 5%;
  text-align:center;
}

.about h1{
  font-size:2.5rem;
  margin-bottom:40px;
}

.offer-box{
  max-width:800px;
  margin:0 auto 60px;
  background:#FFD700;
  color:#000;
  padding:40px;
  border-radius:20px;
}

.offer-box h2{
  margin-bottom:15px;
}

.about-grid{
  display:flex;
  justify-content:center;
  gap:40px;
  flex-wrap:wrap;
}

.about-card{
  background:#111;
  padding:40px;
  border-radius:20px;
  width:350px;
}

/* FOOTER */

.footer{
  background:#111;
  padding:40px 5%;
  display:flex;
  justify-content:space-between;
  flex-wrap:wrap;
  gap:20px;
}

.footer h4{
  color:#FFD700;
  margin-bottom:10px;
}

/* RESPONSIVE */

@media(max-width:768px){

  .nav-links{
    display:none;
  }

  .menu-btn{
    display:block;
  }

  .hero-content h1{
    font-size:2.2rem;
  }

}