
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:Arial, sans-serif;
}

body{
  background:#050505;
  color:white;
}

header{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:20px 5%;
  background:black;
  border-bottom:2px solid red;
  position:sticky;
  top:0;
}

.logo{
  font-size:28px;
  font-weight:bold;
}

.logo span{
  color:red;
}

nav a{
  color:white;
  text-decoration:none;
  margin:0 12px;
}

.call-btn,.main-btn,.ig-btn{
  background:red;
  color:white;
  text-decoration:none;
  padding:12px 22px;
  border-radius:8px;
  display:inline-block;
  margin-top:15px;
}

.hero{
  height:70vh;
  background:linear-gradient(to right, rgba(0,0,0,.85), rgba(0,0,0,.6)),
  url('https://images.unsplash.com/photo-1503376780353-7e6692767b70?q=80&w=1400') center/cover;
  display:flex;
  align-items:center;
  padding:0 8%;
}

.hero-text h1{
  font-size:64px;
  max-width:700px;
}

.hero-text p{
  margin-top:15px;
  font-size:22px;
}

.pricing,.addons,.contact{
  padding:70px 8%;
}

h2{
  font-size:42px;
  margin-bottom:30px;
  color:red;
}

.selector{
  margin-bottom:25px;
}

.selector label{
  display:block;
  margin-bottom:10px;
  font-size:20px;
}

select{
  width:100%;
  padding:15px;
  background:#111;
  color:white;
  border:1px solid red;
  border-radius:8px;
  font-size:18px;
}

.quote-box{
  background:#111;
  border:2px solid red;
  padding:40px;
  border-radius:12px;
  margin-top:30px;
  text-align:center;
}

#price{
  font-size:80px;
  font-weight:bold;
  color:red;
  margin:15px 0;
}

.cards{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:20px;
}

.card{
  background:#111;
  border:1px solid red;
  padding:25px;
  border-radius:10px;
}

.card h3{
  margin-bottom:15px;
}

.contact{
  text-align:center;
}

footer{
  text-align:center;
  padding:20px;
  background:black;
  border-top:1px solid red;
}

@media(max-width:768px){
  header{
    flex-direction:column;
    gap:15px;
  }

  .hero-text h1{
    font-size:42px;
  }

  #price{
    font-size:56px;
  }
}
