:root{
  --gold:#c8a46b;
  --dark:#0f1115;
  --dark2:#171a20;
  --light:#f5f5f5;
  --text:#b7b7b7;
}

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family:'Inter',sans-serif;
  background:#fff;
  color:#555;
  line-height:1.8;
}

h1,h2,h3,h4,h5{
  font-family:'Playfair Display',serif;
  font-weight:700;
}

.topbar{
  background:#000;
  color:#ccc;
  padding:10px 0;
  font-size:14px;
}

.navbar{
  background:rgba(0,0,0,0.92);
  padding:18px 0;
}

.navbar-brand{
  color:#fff !important;
  font-weight:700;
  font-size:24px;
  display:flex;
  align-items:center;
  gap:12px;
}

.navbar-brand span{
  color:var(--gold);
}

.navbar-brand img{
  width:45px;
}

.nav-link{
  color:#ddd !important;
  margin-left:18px;
  font-weight:500;
}

.nav-link:hover{
  color:var(--gold) !important;
}

.hero{
  height:100vh;
  background:url('https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?q=80&w=1600&auto=format&fit=crop') center/cover;
  position:relative;
  display:flex;
  align-items:center;
}

.overlay{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.72);
}

.hero-content{
  position:relative;
  z-index:2;
}

.hero h5{
  color:var(--gold);
  letter-spacing:3px;
  margin-bottom:20px;
}

.hero h1{
  color:#fff;
  font-size:70px;
  line-height:1.15;
  margin-bottom:25px;
}

.hero p{
  color:#ddd;
  font-size:18px;
  max-width:700px;
}

.hero-buttons{
  margin-top:35px;
  display:flex;
  gap:15px;
}

.btn-gold{
  background:var(--gold);
  color:#fff;
  padding:14px 34px;
  border:none;
  border-radius:0;
  font-weight:600;
}

.btn-gold:hover{
  background:#ad8851;
  color:#fff;
}

.section{
  padding:100px 0;
}

.section-title{
  text-align:center;
  margin-bottom:60px;
}

.section-title.left{
  text-align:left;
}

.section-title span{
  color:var(--gold);
  font-size:14px;
  letter-spacing:3px;
  font-weight:700;
}

.section-title h2{
  margin-top:14px;
  font-size:46px;
}

.about-image{
  border-radius:10px;
}

.feature-box{
  display:flex;
  gap:18px;
  margin-top:25px;
}

.feature-box i{
  color:var(--gold);
  font-size:24px;
}

.dark-section{
  background:var(--dark);
  color:#ccc;
}

.dark-section h2,
.dark-section h4{
  color:#fff;
}

.service-card{
  background:var(--dark2);
  padding:40px 30px;
  height:100%;
  border:1px solid rgba(255,255,255,0.05);
  transition:0.4s;
}

.service-card:hover{
  transform:translateY(-10px);
  border-color:var(--gold);
}

.service-icon{
  width:70px;
  height:70px;
  background:rgba(200,164,107,0.1);
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom:25px;
}

.service-icon i{
  color:var(--gold);
  font-size:28px;
}

.stats-section{
  background:url('https://images.unsplash.com/photo-1520607162513-77705c0f0d4a?q=80&w=1600&auto=format&fit=crop') center/cover fixed;
  position:relative;
  padding:100px 0;
}

.stats-section::before{
  content:'';
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.82);
}

.stats-section .container{
  position:relative;
  z-index:2;
}

.stats-section h2{
  color:var(--gold);
  font-size:52px;
}

.stats-section p{
  color:#fff;
}

.contact-section{
  background:#f8f8f8;
}

.contact-info span{
  color:var(--gold);
  letter-spacing:3px;
  font-weight:700;
}

.contact-info h2{
  margin:15px 0 25px;
  font-size:42px;
}

.contact-item{
  display:flex;
  gap:20px;
  margin-top:30px;
}

.contact-item i{
  color:var(--gold);
  font-size:24px;
}

.contact-form{
  background:#fff;
  padding:40px;
  box-shadow:0 10px 40px rgba(0,0,0,0.06);
}

.form-control{
  border-radius:0;
  padding:14px;
  border:1px solid #ddd;
}

.form-control:focus{
  box-shadow:none;
  border-color:var(--gold);
}

footer{
  background:#0b0c0f;
  color:#999;
  padding:70px 0 30px;
}

.footer-logo{
  width:70px;
  margin-bottom:20px;
}

footer h4{
  color:#fff;
}

.footer-links{
  margin:30px 0;
}

.footer-links a{
  color:#ccc;
  margin:0 12px;
  text-decoration:none;
}

.footer-links a:hover{
  color:var(--gold);
}

footer hr{
  border-color:#222;
  margin:30px 0;
}

@media(max-width:991px){

  .hero{
    height:auto;
    padding:140px 0 100px;
  }

  .hero h1{
    font-size:48px;
  }

}

@media(max-width:768px){

  .hero h1{
    font-size:38px;
  }

  .section-title h2{
    font-size:34px;
  }

  .hero-buttons{
    flex-direction:column;
  }

}