*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family:'Poppins',sans-serif;
  background:#0f0f0f;
  color:#fff;
  overflow-x:hidden;
}

.hero{
  min-height:100vh;
  width:100%;
  background:
    linear-gradient(
      rgba(0,0,0,0.65),
      rgba(0,0,0,0.65)
    ),
    url('https://images.unsplash.com/photo-1517673400267-0251440c45dc?q=80&w=1600&auto=format&fit=crop');
  background-size:cover;
  background-position:center;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:40px 20px;
  position:relative;
}

.content{
  max-width:1100px;
  width:100%;
  text-align:center;
}

.logo{
  font-size:48px;
  font-weight:800;
  letter-spacing:3px;
  color:#ffb703;
  margin-bottom:10px;
}

.tag{
  color:#f1f1f1;
  font-size:14px;
  letter-spacing:4px;
  margin-bottom:20px;
}

.content h1{
  font-size:72px;
  line-height:1.1;
  margin-bottom:20px;
  font-weight:800;
}

.content h1 span{
  color:#ffb703;
}

.description{
  max-width:750px;
  margin:auto;
  font-size:18px;
  line-height:1.8;
  color:#ddd;
}

.cta-buttons{
  display:flex;
  justify-content:center;
  gap:20px;
  margin-top:40px;
  flex-wrap:wrap;
}

.btn{
  padding:16px 34px;
  border-radius:50px;
  text-decoration:none;
  font-weight:600;
  transition:0.3s ease;
}

.primary{
  background:#ffb703;
  color:#111;
}

.primary:hover{
  background:#fff;
  transform:translateY(-3px);
}

.secondary{
  border:2px solid #fff;
  color:#fff;
}

.secondary:hover{
  background:#fff;
  color:#111;
}

.features{
  margin-top:70px;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:25px;
}

.feature-card{
  background:rgba(255,255,255,0.08);
  backdrop-filter:blur(10px);
  padding:30px;
  border-radius:20px;
  border:1px solid rgba(255,255,255,0.1);
  transition:0.3s ease;
}

.feature-card:hover{
  transform:translateY(-5px);
}

.feature-card h3{
  color:#ffb703;
  margin-bottom:10px;
  font-size:22px;
}

.feature-card p{
  color:#ddd;
  line-height:1.7;
}

.enquiry-section{
  padding:80px 20px;
  background:#151515;
}

.form-container{
  max-width:700px;
  margin:auto;
  background:#1f1f1f;
  padding:50px;
  border-radius:25px;
  border:1px solid rgba(255,255,255,0.08);
}

.form-container h2{
  font-size:42px;
  margin-bottom:10px;
  color:#ffb703;
}

.form-container p{
  color:#ccc;
  margin-bottom:35px;
  line-height:1.8;
}

.input-group{
  margin-bottom:20px;
}

.input-group input,
.input-group textarea{
  width:100%;
  padding:18px 20px;
  border:none;
  outline:none;
  border-radius:14px;
  background:#2b2b2b;
  color:#fff;
  font-size:16px;
}

.input-group input::placeholder,
.input-group textarea::placeholder{
  color:#aaa;
}

button{
  width:100%;
  padding:18px;
  border:none;
  border-radius:50px;
  background:#ffb703;
  color:#111;
  font-size:16px;
  font-weight:700;
  cursor:pointer;
  transition:0.3s ease;
}

button:hover{
  background:#fff;
}

@media(max-width:900px){

  .content h1{
    font-size:52px;
  }

  .features{
    grid-template-columns:1fr;
  }

}

@media(max-width:600px){

  .logo{
    font-size:36px;
  }

  .content h1{
    font-size:40px;
  }

  .description{
    font-size:16px;
  }

  .form-container{
    padding:30px 20px;
  }

  .form-container h2{
    font-size:32px;
  }

}