/* style.css */

:root {
  --bg: #070707;
  --bg-secondary: #101010;
  --gold: #c9a86a;
  --gold-light: #e0c28d;
  --text: #ffffff;
  --text-muted: #b8b8b8;
  --border: rgba(255,255,255,0.08);
  --glass: rgba(255,255,255,0.04);
  --shadow: 0 20px 60px rgba(0,0,0,0.45);
  --transition: all 0.35s ease;
}

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  background:var(--bg);
  color:var(--text);
  font-family:'Inter',sans-serif;
  overflow-x:hidden;
  line-height:1.7;
}

img{
  width:100%;
  display:block;
}

a{
  text-decoration:none;
  color:inherit;
}

ul{
  list-style:none;
}

.container{
  width:min(1200px,90%);
  margin:auto;
}

.section{
  padding:120px 0;
}

h1,h2,h3,h4{
  font-family:'Cormorant Garamond',serif;
  font-weight:600;
}

.section-label{
  display:inline-block;
  color:var(--gold);
  letter-spacing:4px;
  text-transform:uppercase;
  margin-bottom:16px;
  font-size:0.9rem;
}

.section-heading{
  text-align:center;
  margin-bottom:70px;
}

.section-heading h2{
  font-size:clamp(2.5rem,4vw,4.5rem);
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:16px 34px;
  border-radius:100px;
  font-weight:600;
  transition:var(--transition);
}

.btn-primary{
  background:linear-gradient(
    135deg,
    var(--gold),
    var(--gold-light)
  );
  color:#111;
}

.btn-primary:hover{
  transform:translateY(-4px);
  box-shadow:0 15px 35px rgba(201,168,106,.25);
}

.btn-secondary{
  border:1px solid rgba(201,168,106,.4);
  color:var(--gold);
  backdrop-filter:blur(15px);
}

.btn-secondary:hover{
  background:rgba(201,168,106,.1);
  transform:translateY(-4px);
}

/* HEADER */

.header{
  position:fixed;
  top:0;
  width:100%;
  z-index:1000;
  background:rgba(0,0,0,.2);
  backdrop-filter:blur(14px);
  border-bottom:1px solid rgba(255,255,255,.05);
}

.nav-wrapper{
  height:90px;
  display:flex;
  align-items:center;
  justify-content:space-between;
}

.logo img{
  width:90px;
}

.nav{
  display:flex;
  gap:35px;
}

.nav a{
  color:#d8d8d8;
  transition:var(--transition);
  font-size:0.95rem;
}

.nav a:hover{
  color:var(--gold);
}

.menu-toggle{
  display:none;
  background:none;
  border:none;
  cursor:pointer;
}

.menu-toggle span{
  width:30px;
  height:2px;
  background:white;
  display:block;
  margin:7px 0;
}

/* HERO */

.hero{
  min-height:100vh;
  position:relative;
  display:flex;
  align-items:center;
}

.hero-bg{
  position:absolute;
  inset:0;
}

.hero-bg img{
  width:100%;
  height:100%;
  object-fit:cover;
  filter:brightness(30%);
}

.hero-overlay{
  position:absolute;
  inset:0;
  background:
    linear-gradient(
      to bottom,
      rgba(0,0,0,.4),
      rgba(0,0,0,.92)
    );
}

.hero-content{
  position:relative;
  z-index:10;
}

.hero-text{
  max-width:750px;
}

.hero-tag{
  display:inline-block;
  color:var(--gold);
  letter-spacing:5px;
  margin-bottom:25px;
}

.hero h1{
  font-size:clamp(4rem,8vw,7rem);
  line-height:0.95;
  margin-bottom:30px;
}

.hero p{
  color:var(--text-muted);
  font-size:1.1rem;
  max-width:650px;
}

.hero-buttons{
  display:flex;
  gap:20px;
  margin-top:45px;
  flex-wrap:wrap;
}

/* FEATURES */

.features{
  margin-top:-80px;
  position:relative;
  z-index:20;
}

.features-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:25px;
}

.feature-card{
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.08);
  backdrop-filter:blur(20px);
  border-radius:30px;
  padding:35px 25px;
  text-align:center;
  transition:var(--transition);
}

.feature-card:hover{
  transform:translateY(-10px);
}

.feature-icon{
  width:60px;
  height:60px;
  border-radius:50%;
  background:rgba(201,168,106,.12);
  color:var(--gold);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:1.3rem;
  margin:0 auto 18px;
}

.feature-card h3{
  font-size:1.3rem;
}

/* ABOUT */

.about-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:70px;
  align-items:center;
}

.about-image{
  border-radius:35px;
  overflow:hidden;
}

.about-image img{
  height:650px;
  object-fit:cover;
}

.about-content h2{
  font-size:clamp(2.8rem,5vw,4.5rem);
  margin-bottom:30px;
}

.about-content p{
  color:var(--text-muted);
  margin-bottom:20px;
}

/* SERVICES */

.services{
  background:linear-gradient(
    to bottom,
    #080808,
    #101010
  );
}

.services-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:30px;
}

.service-card{
  background:var(--glass);
  border:1px solid var(--border);
  overflow:hidden;
  border-radius:30px;
  transition:var(--transition);
}

.service-card:hover{
  transform:translateY(-10px);
}

.service-card img{
  height:240px;
  object-fit:cover;
}

.service-card h3{
  padding:28px;
  text-align:center;
  font-size:1.5rem;
}

/* PACKAGES */

.packages-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:35px;
}

.package-card{
  position:relative;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.08);
  border-radius:35px;
  padding:50px 40px;
  transition:var(--transition);
}

.package-card:hover{
  transform:translateY(-10px);
}

.package-card h3{
  font-size:2rem;
  margin-bottom:25px;
}

.package-card ul{
  margin-bottom:35px;
}

.package-card li{
  color:var(--text-muted);
  padding:14px 0;
  border-bottom:1px solid rgba(255,255,255,.06);
}

.featured{
  border:1px solid rgba(201,168,106,.35);
  background:
    linear-gradient(
      180deg,
      rgba(201,168,106,.12),
      rgba(255,255,255,.04)
    );
}

.package-badge{
  position:absolute;
  top:20px;
  right:20px;
  background:var(--gold);
  color:black;
  padding:8px 14px;
  border-radius:100px;
  font-size:.75rem;
  font-weight:700;
}

.btn-card{
  display:inline-block;
  width:100%;
  text-align:center;
  padding:16px;
  border-radius:16px;
  background:rgba(201,168,106,.12);
  color:var(--gold);
  border:1px solid rgba(201,168,106,.3);
  transition:var(--transition);
}

.btn-card:hover{
  background:var(--gold);
  color:black;
}

/* PROCESS */

.process{
  background:#0d0d0d;
}

.process-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:25px;
}

.process-card{
  text-align:center;
  padding:45px 30px;
  background:rgba(255,255,255,.03);
  border:1px solid rgba(255,255,255,.08);
  border-radius:30px;
  transition:var(--transition);
}

.process-card:hover{
  transform:translateY(-10px);
}

.process-card span{
  display:flex;
  align-items:center;
  justify-content:center;
  width:70px;
  height:70px;
  margin:auto;
  border-radius:50%;
  background:rgba(201,168,106,.12);
  color:var(--gold);
  font-size:1.2rem;
  margin-bottom:20px;
}

.process-card h3{
  font-size:2rem;
  margin-bottom:10px;
}

.process-card p{
  color:var(--text-muted);
}

/* CONTACT */

.contact-banner img{
  height:420px;
  object-fit:cover;
  filter:brightness(.45);
}

.contact-wrapper{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:50px;
  margin-top:-90px;
  position:relative;
  z-index:10;
}

.contact-left,
.contact-right{
  background:rgba(18,18,18,.9);
  border:1px solid rgba(255,255,255,.08);
  backdrop-filter:blur(25px);
  border-radius:35px;
  padding:55px;
}

.contact-left h2{
  font-size:clamp(2.5rem,5vw,4rem);
  margin-bottom:20px;
}

.contact-left p{
  color:var(--text-muted);
}

.contact-box{
  margin-bottom:30px;
}

.contact-box h4{
  color:var(--gold);
  margin-bottom:10px;
  font-size:1.4rem;
}

.contact-box a{
  color:var(--text-muted);
}

/* FOOTER */

.footer{
  padding:70px 0;
  border-top:1px solid rgba(255,255,255,.08);
  text-align:center;
}

.footer img{
  width:90px;
  margin:auto auto 18px;
}

.footer h3{
  font-size:2rem;
}

.footer p{
  color:var(--text-muted);
}

/* RESPONSIVE */

@media(max-width:1100px){

  .services-grid,
  .features-grid,
  .packages-grid,
  .process-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .about-grid,
  .contact-wrapper{
    grid-template-columns:1fr;
  }

}

@media(max-width:768px){

  .section{
    padding:90px 0;
  }

  .nav{
    position:fixed;
    top:90px;
    right:-100%;
    width:280px;
    height:calc(100vh - 90px);
    background:#101010;
    flex-direction:column;
    padding:40px;
    transition:.4s;
  }

  .nav.active{
    right:0;
  }

  .menu-toggle{
    display:block;
  }

  .hero h1{
    font-size:4rem;
  }

  .features-grid,
  .services-grid,
  .packages-grid,
  .process-grid{
    grid-template-columns:1fr;
  }

  .hero-buttons{
    flex-direction:column;
  }

  .btn{
    width:100%;
  }

  .contact-left,
  .contact-right{
    padding:35px;
  }

}

@media(max-width:480px){

  .hero h1{
    font-size:3rem;
  }

  .about-content h2,
  .section-heading h2{
    font-size:2.4rem;
  }

  .contact-banner img{
    height:300px;
  }

}