@import url('https://fonts.googleapis.com/css2?family=Vazirmatn:wght@400;700;900&display=swap');

:root{
  --bg:#070707;
  --card:#0f0f0f;
  --text:#ffffff;
  --muted:#cfcfcf;
  --yellow:#f6c91a;
  --border:#222;
}

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

html{
  scroll-behavior:smooth;
}

body{
  font-family:'Vazirmatn',sans-serif;
  background:var(--bg);
  color:var(--text);
  line-height:1.9;
}

.topbar{
  position:sticky;
  top:0;
  z-index:1000;
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:16px 20px;
  background:rgba(10,10,10,.95);
  backdrop-filter:blur(10px);
  border-bottom:1px solid var(--border);
}

.brand{
  display:flex;
  align-items:center;
  gap:10px;
  color:var(--yellow);
  font-weight:900;
}

.brand img{
  width:42px;
  height:42px;
  border-radius:50%;
}

.menu-btn{
  background:none;
  border:none;
  color:#fff;
  font-size:1.8rem;
  cursor:pointer;
}

.mobile-menu{
  display:none;
  flex-direction:column;
  background:#111;
  border-bottom:1px solid var(--border);
}

.mobile-menu a{
  color:#fff;
  text-decoration:none;
  padding:14px 20px;
  border-bottom:1px solid #1a1a1a;
}

.mobile-menu.show{
  display:flex;
}

.hero{
  min-height:88vh;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  text-align:center;
  padding:80px 20px;
  background:
    radial-gradient(circle at top, rgba(246,201,26,.15), transparent 40%),
    linear-gradient(180deg, #0b0b0b 0%, #070707 100%);
}

.hero-badge{
  background:rgba(246,201,26,.1);
  color:var(--yellow);
  border:1px solid rgba(246,201,26,.25);
  padding:8px 18px;
  border-radius:999px;
  margin-bottom:20px;
  font-size:.9rem;
}

.hero h1{
  font-size:2.7rem;
  color:var(--yellow);
  margin-bottom:14px;
  text-shadow:0 0 30px rgba(246,201,26,.25);
}

.hero p{
  color:var(--muted);
  max-width:700px;
  margin-bottom:34px;
}

.hero-buttons{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  justify-content:center;
}

.btn{
  display:inline-block;
  padding:14px 28px;
  border-radius:999px;
  text-decoration:none;
  font-weight:700;
  transition:.3s;
  border:none;
  cursor:pointer;
}

.primary{
  background:var(--yellow);
  color:#111;
}

.secondary{
  background:#151515;
  color:var(--yellow);
  border:1px solid var(--yellow);
}

.btn:hover{
  transform:translateY(-3px);
  box-shadow:0 8px 20px rgba(246,201,26,.15);
}

.full{
  width:100%;
  text-align:center;
}

.section-title{
  text-align:center;
  margin-bottom:40px;
}

.section-title h2{
  color:var(--yellow);
  font-size:2rem;
  margin-bottom:8px;
}

.section-title p{
  color:var(--muted);
}

.services,.packages,.gallery,.about,.contact{
  padding:90px 20px;
}

.services-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:20px;
  max-width:1100px;
  margin:auto;
}

.service-card{
  background:var(--card);
  border:1px solid var(--border);
  border-radius:24px;
  padding:30px 24px;
  text-align:center;
  transition:.3s;
}

.service-card:hover{
  transform:translateY(-5px);
  border-color:rgba(246,201,26,.35);
}

.icon{
  font-size:2.5rem;
  margin-bottom:14px;
}

.service-card h3{
  color:var(--yellow);
  margin-bottom:10px;
}

.service-card p{
  color:var(--muted);
}

.package-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:24px;
  max-width:950px;
  margin:auto;
}

.card{
  position:relative;
  background:var(--card);
  border:1px solid var(--border);
  border-radius:28px;
  padding:32px 24px;
  text-align:center;
  overflow:hidden;
}

.tag{
  position:absolute;
  top:18px;
  right:18px;
  background:#1a1a1a;
  color:var(--yellow);
  padding:6px 12px;
  border-radius:999px;
  font-size:.8rem;
}

.vip{
  border-color:rgba(246,201,26,.45);
  box-shadow:0 0 35px rgba(246,201,26,.12);
}

.vip-tag{
  background:var(--yellow);
  color:#111;
}

.card h3{
  color:var(--yellow);
  font-size:2rem;
  margin:22px 0 10px;
}

.card p{
  color:var(--muted);
}

.price{
  font-size:2rem;
  font-weight:900;
  margin:22px 0;
}

.gallery-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:18px;
  max-width:1100px;
  margin:auto;
}

.gallery-item{
  position:relative;
  aspect-ratio:1/1;
  border-radius:24px;
  overflow:hidden;
  background:linear-gradient(135deg,#2a2110,#f6c91a);
}

.overlay{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.55);
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  font-weight:700;
}

.about{
  max-width:900px;
  margin:auto;
  text-align:center;
}

.about p{
  color:var(--muted);
}

.contact-form{
  max-width:700px;
  margin:auto;
  display:grid;
  gap:16px;
}

.contact-form input,
.contact-form textarea{
  width:100%;
  background:#111;
  border:1px solid var(--border);
  border-radius:18px;
  padding:16px;
  color:#fff;
  font-family:'Vazirmatn',sans-serif;
}

.contact-form input:focus,
.contact-form textarea:focus{
  outline:none;
  border-color:var(--yellow);
}

.footer{
  text-align:center;
  padding:40px 20px;
  border-top:1px solid var(--border);
  color:var(--muted);
}

.footer img{
  width:60px;
  height:60px;
  border-radius:50%;
  margin-bottom:12px;
}

.whatsapp{
  position:fixed;
  left:20px;
  bottom:20px;
  width:74px;
  height:74px;
  border-radius:50%;
  background:#25D366;
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  font-size:2rem;
  box-shadow:0 10px 25px rgba(37,211,102,.35);
}

.reveal{
  opacity:0;
  transform:translateY(30px);
  transition:all .8s ease;
}

.reveal.active{
  opacity:1;
  transform:translateY(0);
}

@media (min-width:768px){
  .hero h1{
    font-size:4rem;
  }

  .hero p{
    font-size:1.1rem;
  }
}
