
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family:Arial,sans-serif;
  background:#0b0b0b;
  color:white;
  line-height:1.6;
}

.hero{
  min-height:100vh;
  background:
    linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.75)),
    url('https://images.unsplash.com/photo-1513694203232-719a280e022f?q=80&w=1600&auto=format&fit=crop') center/cover;
  padding:40px 8%;
}

nav{
  display:flex;
  justify-content:space-between;
  align-items:center;
}

.logo{
  color:#f0c14b;
  font-size:32px;
  font-weight:bold;
  letter-spacing:4px;
}

.menu{
  display:flex;
  gap:30px;
}

.menu a{
  color:white;
  text-decoration:none;
}

.hero-content{
  max-width:700px;
  margin-top:140px;
}

.premium{
  color:#f0c14b;
  letter-spacing:3px;
}

.hero-content h1{
  font-size:64px;
  margin:20px 0;
}

.hero-content p{
  color:#ddd;
  font-size:20px;
  margin-bottom:40px;
}

.hero-buttons{
  display:flex;
  gap:20px;
}

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

.btn{
  background:linear-gradient(45deg,#f0c14b,#ffd700);
  color:black;
}

.btn-outline{
  border:2px solid #f0c14b;
  color:#f0c14b;
}

.stats{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
  gap:20px;
  padding:60px 8%;
  background:#111;
}

.stat{
  text-align:center;
  background:#1a1a1a;
  padding:30px;
  border-radius:14px;
}

.stat h3{
  color:#ffd700;
  font-size:40px;
}

.services,
.prices,
.contact{
  padding:100px 8%;
}

h2{
  text-align:center;
  color:#ffd700;
  font-size:48px;
  margin-bottom:60px;
}

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

.card{
  background:#161616;
  border-radius:18px;
  overflow:hidden;
  transition:0.3s;
}

.card:hover{
  transform:translateY(-10px);
}

.card img{
  width:100%;
  height:240px;
  object-fit:cover;
}

.card-content{
  padding:30px;
}

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

.card-content span{
  display:block;
  margin-top:20px;
  color:#ffd700;
  font-weight:bold;
}

.premium-section{
  display:grid;
  grid-template-columns:1fr 1fr;
  min-height:600px;
}

.premium-image{
  background:url('https://images.unsplash.com/photo-1484154218962-a197022b5858?q=80&w=1600&auto=format&fit=crop') center/cover;
}

.premium-text{
  background:linear-gradient(135deg,#111,#1f1f1f);
  padding:80px;
  display:flex;
  flex-direction:column;
  justify-content:center;
}

.premium-text ul{
  margin-top:30px;
}

.premium-text li{
  margin-bottom:14px;
}

.price-table{
  max-width:800px;
  margin:auto;
  background:#161616;
  border-radius:18px;
  overflow:hidden;
}

.price-row{
  display:flex;
  justify-content:space-between;
  padding:24px 30px;
  border-bottom:1px solid #2a2a2a;
}

.price-row strong{
  color:#ffd700;
}

.contact{
  background:
    linear-gradient(rgba(0,0,0,0.8),rgba(0,0,0,0.8)),
    url('https://images.unsplash.com/photo-1521791136064-7986c2920216?q=80&w=1600&auto=format&fit=crop') center/cover;
}

.contact-text{
  text-align:center;
  font-size:20px;
  margin-bottom:40px;
}

form{
  max-width:650px;
  margin:auto;
  display:flex;
  flex-direction:column;
  gap:20px;
}

input,
textarea{
  padding:18px;
  border:none;
  border-radius:10px;
  font-size:16px;
}

button{
  padding:18px;
  border:none;
  border-radius:10px;
  background:linear-gradient(45deg,#f0c14b,#ffd700);
  font-size:18px;
  font-weight:bold;
  cursor:pointer;
}

footer{
  background:#0a0a0a;
  text-align:center;
  padding:40px;
}

.footer-logo{
  color:#ffd700;
  font-size:28px;
  letter-spacing:4px;
  margin-bottom:10px;
}

@media(max-width:900px){

  .premium-section{
    grid-template-columns:1fr;
  }

  .premium-image{
    min-height:300px;
  }

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

  .menu{
    display:none;
  }

  .hero-buttons{
    flex-direction:column;
  }

  h2{
    font-size:36px;
  }
}
