*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  font-family:'Inter',sans-serif;
  background:#f7f7f7;
  color:#111;
  overflow-x:hidden;
}

/* NAVBAR */

.navbar{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  padding:24px 8%;
  display:flex;
  justify-content:space-between;
  align-items:center;
  z-index:1000;

  background:rgba(255,255,255,0.75);
  backdrop-filter:blur(14px);

  border-bottom:1px solid rgba(0,0,0,0.06);
}

.logo img{
  height:58px;
}

.nav-links{
  display:flex;
  gap:34px;
  list-style:none;
}

.nav-links a{
  text-decoration:none;
  color:#111;
  font-weight:600;
  transition:0.3s;
}

.nav-links a:hover{
  color:#c59b48;
}

/* HERO */

.hero{
  min-height:130vh;
  position:relative;

  display:flex;
  justify-content:center;
  align-items:center;

  overflow:hidden;
}

.hero-video{
  position:absolute;
  width:100%;
  height:100%;
  object-fit:cover;
}

.hero-overlay{
  position:absolute;
  width:100%;
  height:100%;

  background:
  linear-gradient(
    to bottom,
    rgba(255,255,255,0.45),
    rgba(247,247,247,0.92)
  );
}

.hero-content{
  position:relative;
  z-index:2;
  text-align:center;
  max-width:1100px;
  padding:40px;
}

.hero-tag{
  display:inline-block;

  padding:12px 22px;

  border-radius:999px;

  background:rgba(255,255,255,0.75);

  border:1px solid rgba(0,0,0,0.08);

  margin-bottom:35px;

  font-weight:600;

  color:#444;
}

.hero-content h1{
  font-size:100px;
  line-height:0.95;
  margin-bottom:30px;
  font-weight:800;
}

.hero-content p{
  font-size:24px;
  line-height:1.8;

  max-width:850px;

  margin:auto;
  margin-bottom:45px;

  color:#555;
}

.hero-buttons{
  display:flex;
  justify-content:center;
  gap:20px;
  flex-wrap:wrap;
}

.btn{
  padding:18px 38px;
  border-radius:999px;
  text-decoration:none;
  font-weight:700;
  transition:0.35s;
}

.btn-gold{
  background:#c59b48;
  color:white;
}

.btn-white{
  background:white;
  color:#111;

  border:1px solid rgba(0,0,0,0.08);
}

.btn:hover{
  transform:translateY(-5px);
}

/* HERO EXTRA */

.hero-scroll{
  position:absolute;
  bottom:40px;
  left:50%;
  transform:translateX(-50%);

  font-size:14px;
  letter-spacing:2px;
  text-transform:uppercase;

  color:#555;

  animation:bounce 2s infinite;
}

@keyframes bounce{
  0%,100%{
    transform:translate(-50%,0);
  }

  50%{
    transform:translate(-50%,10px);
  }
}

/* STATS */

.stats{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));

  gap:30px;

  padding:140px 8%;
}

.stat-box{
  background:white;

  border-radius:30px;

  padding:60px 40px;

  text-align:center;

  box-shadow:0 15px 40px rgba(0,0,0,0.05);

  transition:0.4s;
}

.stat-box:hover{
  transform:translateY(-10px);
}

.stat-box h2{
  font-size:70px;
  color:#c59b48;
  margin-bottom:10px;
}

.stat-box p{
  color:#666;
  font-size:18px;
}

/* SERVICES */

.services{
  display:grid;

  grid-template-columns:
  repeat(auto-fit,minmax(320px,1fr));

  gap:35px;

  padding:0 8% 140px;
}

.service-card{
  background:white;

  padding:60px 45px;

  border-radius:32px;

  box-shadow:0 15px 40px rgba(0,0,0,0.05);

  transition:0.4s;
}

.service-card:hover{
  transform:translateY(-12px);
}

.service-card h3{
  font-size:32px;
  margin-bottom:20px;
}

.service-card p{
  color:#666;
  line-height:1.9;
  font-size:17px;
}

/* SHOWCASE */

.showcase{
  display:grid;

  grid-template-columns:
  repeat(auto-fit,minmax(320px,1fr));

  gap:80px;

  align-items:center;

  padding:140px 8%;
}

.showcase-left span{
  color:#c59b48;

  text-transform:uppercase;

  letter-spacing:3px;

  font-size:14px;

  font-weight:700;
}

.showcase-left h2{
  font-size:72px;
  line-height:1.05;

  margin-top:20px;
}

.showcase-right p{
  color:#555;

  line-height:2;

  font-size:20px;
}

/* PAGE HEADER */

.page-header{
  padding-top:220px;
  padding-bottom:90px;
  text-align:center;
}

.page-header h1{
  font-size:80px;
  margin-bottom:20px;
}

.page-header p{
  color:#666;
  font-size:22px;
}

/* VIDEO GRID */

.video-grid{
  display:grid;

  grid-template-columns:
  repeat(auto-fit,minmax(350px,1fr));

  gap:35px;

  padding:0 8% 140px;
}

.video-card{
  background:white;

  border-radius:30px;

  overflow:hidden;

  box-shadow:0 15px 40px rgba(0,0,0,0.06);

  transition:0.4s;
}

.video-card:hover{
  transform:translateY(-10px);
}

.video-card iframe{
  width:100%;
  height:650px;
  border:none;
}

/* ABOUT */

.about-section{
  display:grid;

  grid-template-columns:
  repeat(auto-fit,minmax(340px,1fr));

  gap:80px;

  align-items:center;

  padding:220px 8% 140px;
}

.about-image img{
  width:100%;
  border-radius:32px;
}

.about-content h1{
  font-size:72px;
  margin-bottom:35px;
}

.about-content p{
  color:#555;

  line-height:2;

  font-size:19px;

  margin-bottom:24px;
}

/* PRICING */

.pricing-section{
  display:grid;

  grid-template-columns:
  repeat(auto-fit,minmax(300px,1fr));

  gap:35px;

  padding:220px 8% 140px;
}

.price-card{
  background:white;

  border-radius:32px;

  padding:60px 40px;

  text-align:center;

  box-shadow:0 15px 40px rgba(0,0,0,0.05);

  transition:0.4s;
}

.price-card:hover{
  transform:translateY(-12px);
}

.price-card h2{
  font-size:30px;
  margin-bottom:20px;
}

.price-card h3{
  font-size:64px;

  color:#c59b48;

  margin-bottom:30px;
}

.price-card p{
  margin-bottom:16px;

  color:#666;

  font-size:17px;
}

.featured{
  transform:scale(1.05);
}

/* CONTACT */

.contact-section{
  padding:220px 8% 140px;
  text-align:center;
}

.contact-section h1{
  font-size:76px;
  margin-bottom:50px;
}

.contact-form{
  max-width:800px;

  margin:auto;

  display:flex;
  flex-direction:column;

  gap:24px;
}

.contact-form input,
.contact-form textarea{
  padding:24px;

  border:none;

  border-radius:24px;

  background:white;

  box-shadow:0 10px 30px rgba(0,0,0,0.05);

  font-size:16px;
}

.contact-form textarea{
  min-height:220px;
}

.contact-form button{
  padding:22px;

  border:none;

  border-radius:999px;

  background:#c59b48;

  color:white;

  font-size:17px;

  font-weight:700;

  cursor:pointer;

  transition:0.3s;
}

.contact-form button:hover{
  transform:translateY(-5px);
}

/* FOOTER */

footer{
  padding:50px;
  text-align:center;
  color:#777;
}

/* ANIMATION */

.fade-up{
  opacity:0;
  transform:translateY(40px);
  animation:fadeUp 1s ease forwards;
}

@keyframes fadeUp{
  to{
    opacity:1;
    transform:translateY(0);
  }
}

/* MOBILE */

@media(max-width:768px){

  .navbar{
    padding:20px 5%;
  }

  .nav-links{
    gap:15px;
    font-size:14px;
  }

  .hero{
    min-height:110vh;
  }

  .hero-content h1{
    font-size:54px;
  }

  .hero-content p{
    font-size:18px;
  }

  .showcase-left h2,
  .about-content h1,
  .contact-section h1,
  .page-header h1{
    font-size:46px;
  }

  .video-card iframe{
    height:500px;
  }

}