/* style.css */
/* Existing styles kept + project plan upgrades added */

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

html{
  scroll-behavior:smooth;
}

body{
  font-family:Arial, Helvetica, sans-serif;
  background:#050505;
  color:#ffffff;
  line-height:1.6;
}

img{
  width:100%;
  display:block;
}

a{
  text-decoration:none;
  color:#ffffff;
}

.container{
  width:90%;
  max-width:1300px;
  margin:auto;
}

/* Header */
.header{
  position:sticky;
  top:0;
  z-index:1000;
  background:rgba(8,8,8,.82);
  backdrop-filter:blur(12px);
  border-bottom:1px solid rgba(255,255,255,.08);
  transition:.3s ease;
}

.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:16px 0;
}

/* Added premium logo styles */
.logo-wrap{
  display:flex;
  align-items:center;
  gap:10px;
}

.logo-badge{
  background:#ffffff;
  color:#0b67c2;
  font-weight:900;
  padding:4px 10px;
  border-radius:8px;
  letter-spacing:.5px;
  box-shadow:0 8px 20px rgba(11,103,194,.18);
}

.logo-text{
  color:#ffffff;
  font-size:15px;
  opacity:.9;
}

.logo{
  font-size:20px;
  font-weight:800;
  color:#e2b04d;
  letter-spacing:.3px;
}

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

.menu a{
  position:relative;
  padding:6px 0;
  transition:.3s;
}

.menu a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-6px;
  width:0%;
  height:2px;
  background:#e2b04d;
  transition:.3s;
}

.menu a:hover::after,
.menu a.active::after{
  width:100%;
}

.menu a:hover,
.menu a.active{
  color:#e2b04d;
}

/* Buttons */
.btn{
  display:inline-block;
  padding:12px 22px;
  border-radius:12px;
  font-weight:700;
  transition:.3s ease;
  cursor:pointer;
}

.btn-gold{
  background:#e2b04d;
  color:#000000;
}

.btn-gold:hover{
  transform:translateY(-2px);
  box-shadow:0 10px 20px rgba(226,176,77,.18);
}

.btn-outline{
  border:1px solid #e2b04d;
  color:#e2b04d;
}

.btn-outline:hover{
  background:#e2b04d;
  color:#000;
}

.small-btn{
  margin-top:14px;
  padding:10px 16px;
  font-size:14px;
}

/* Hero */
.hero{
  padding:80px 0;
}

.hero-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
  align-items:center;
}

.tag{
  color:#e2b04d;
  font-weight:700;
  margin-bottom:12px;
}

.hero h1{
  font-size:64px;
  line-height:1.05;
  margin-bottom:22px;
}

.hero p{
  color:#d7d7d7;
  font-size:20px;
  max-width:700px;
}

.hero-buttons{
  margin-top:28px;
  display:flex;
  gap:14px;
  flex-wrap:wrap;
}

.frame{
  background:linear-gradient(180deg,#111,#0b0b0b);
  border:1px solid rgba(255,255,255,.08);
  border-radius:24px;
  padding:14px;
  box-shadow:0 20px 50px rgba(0,0,0,.45);
}

.frame img{
  border-radius:18px;
  aspect-ratio:1/1;
  object-fit:cover;
}

/* Sections */
.section{
  padding:80px 0;
}

.top-space{
  padding-top:120px;
}

.section-title{
  font-size:52px;
  text-align:center;
  margin-bottom:20px;
}

.center-text{
  text-align:center;
  color:#cfcfcf;
  margin-bottom:34px;
}

/* Cards */
.cards{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:26px;
}

.card{
  background:#0d0d0d;
  border:1px solid rgba(255,255,255,.07);
  border-radius:22px;
  padding:18px;
  transition:.35s ease;
}

.card:hover{
  transform:translateY(-8px);
  border-color:#e2b04d;
  box-shadow:0 20px 35px rgba(0,0,0,.45);
}

.img-wrap{
  overflow:hidden;
  border-radius:16px;
  margin-bottom:16px;
}

.img-wrap img{
  height:240px;
  object-fit:cover;
  transition:transform .45s ease;
}

.card:hover .img-wrap img{
  transform:scale(1.06);
}

.card h3{
  font-size:28px;
  margin-bottom:10px;
}

.card p{
  color:#d0d0d0;
  font-size:17px;
}

.mini-card{
  text-align:center;
}

/* About */
.dark{
  background:#090909;
}

.about-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:50px;
  align-items:center;
}

.about-grid h2{
  font-size:44px;
  margin-bottom:16px;
}

.list{
  list-style:none;
  margin-top:22px;
}

.list li{
  margin-bottom:12px;
  color:#e6e6e6;
}

.stats{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}

.stats div{
  background:#101010;
  border:1px solid rgba(255,255,255,.06);
  padding:30px;
  border-radius:18px;
  text-align:center;
}

.stats span{
  display:block;
  font-size:42px;
  font-weight:800;
  color:#e2b04d;
}

/* Contact */
.contact-box{
  max-width:820px;
}

.contact-box h2{
  font-size:44px;
  margin-bottom:8px;
}

.contact-form{
  margin-top:24px;
  display:grid;
  gap:15px;
}

input,
textarea{
  width:100%;
  padding:15px;
  border-radius:12px;
  border:1px solid #222;
  background:#0c0c0c;
  color:#fff;
  font-size:16px;
}

input:focus,
textarea:focus{
  outline:none;
  border-color:#e2b04d;
}

textarea{
  min-height:140px;
  resize:vertical;
}

.full{
  width:100%;
  border:none;
  cursor:pointer;
}

.contact-details{
  margin-top:22px;
  color:#d0d0d0;
}

.contact-details p{
  margin-bottom:8px;
}

/* Footer */
.footer{
  padding:26px 0;
  border-top:1px solid rgba(255,255,255,.08);
  text-align:center;
  color:#bdbdbd;
  margin-top:20px;
}

/* Floating WhatsApp */
.floating-wa{
  position:fixed;
  right:18px;
  bottom:18px;
  background:#25D366;
  color:#000;
  width:56px;
  height:56px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:26px;
  font-weight:900;
  box-shadow:0 12px 25px rgba(0,0,0,.35);
  z-index:999;
}

/* Responsive */
@media(max-width:980px){

  .hero-grid,
  .about-grid{
    grid-template-columns:1fr;
  }

  .hero h1{
    font-size:48px;
  }

  .hero p{
    font-size:18px;
  }

  .section-title{
    font-size:38px;
  }

  .menu{
    display:none;
  }

  .nav{
    gap:12px;
  }
}

@media(max-width:600px){

  .hero{
    padding:55px 0;
  }

  .hero h1{
    font-size:38px;
  }

  .btn{
    padding:11px 16px;
  }

  .stats{
    grid-template-columns:1fr;
  }

  .logo-text{
    display:none;
  }
}
