*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  font-family:Arial,sans-serif;
  background:#f8fafc;
  color:#111827;
  line-height:1.7;
}

.container{
  width:90%;
  max-width:1200px;
  margin:auto;
}

a{
  text-decoration:none;
}

/* HEADER */

header{
  background:#0f172a;
  position:sticky;
  top:0;
  z-index:999;
}

.navbar{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:20px 0;
}

.logo{
  color:white;
  font-size:2rem;
  font-weight:bold;
}

.logo span{
  color:#d4a017;
}

nav ul{
  display:flex;
  list-style:none;
  gap:22px;
  align-items:center;
}

nav a{
  color:white;
  font-weight:600;
  transition:.3s;
}

nav a:hover{
  color:#d4a017;
}

.payments-btn{
  background:#d4a017;
  color:#111 !important;
  padding:10px 18px;
  border-radius:6px;
}

.payments-btn:hover{
  background:#f0bc2f;
}

/* HERO */

.hero{
  height:90vh;

  background:
  linear-gradient(rgba(0,0,0,.65),rgba(0,0,0,.65)),
  url('https://images.unsplash.com/photo-1514119412350-e174d90d280e?q=80&w=1600&auto=format&fit=crop');

  background-size:cover;
  background-position:center;

  display:flex;
  align-items:center;
  text-align:center;
  color:white;
}

.hero-content{
  width:100%;
}

.hero h1{
  font-size:4rem;
  margin-bottom:20px;
}

.hero p{
  max-width:800px;
  margin:0 auto 35px;
  font-size:1.2rem;
}

.btn{
  display:inline-block;
  background:#d4a017;
  color:#111827;
  padding:15px 30px;
  border-radius:8px;
  font-weight:bold;
  transition:.3s;
}

.btn:hover{
  background:#f0bc2f;
  transform:translateY(-2px);
}

/* PAGE HERO */

.page-hero{
  background:#0f172a;
  color:white;
  padding:120px 20px;
  text-align:center;
}

.page-hero h1{
  font-size:3.5rem;
  margin-bottom:15px;
}

.page-hero p{
  max-width:800px;
  margin:auto;
  color:#cbd5e1;
}

/* SECTIONS */

section{
  padding:100px 0;
}

.section-title{
  text-align:center;
  margin-bottom:60px;
}

.section-title h2{
  font-size:3rem;
  margin-bottom:20px;
  color:#0f172a;
}

.section-title p{
  color:#475569;
  max-width:800px;
  margin:auto;
}

/* GRID */

.grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:30px;
}

/* CARD */

.card{
  background:white;
  border-radius:16px;
  overflow:hidden;
  box-shadow:0 10px 30px rgba(0,0,0,0.08);
  transition:.3s;
}

.card:hover{
  transform:translateY(-8px);
}

.card img{
  width:100%;
  height:260px;
  object-fit:cover;
}

.card-content{
  padding:30px;
}

.card-content h3{
  margin-bottom:15px;
  color:#0f172a;
}

/* CONTENT */

.content{
  max-width:900px;
  margin:auto;
}

.content h2{
  margin-bottom:20px;
}

.content p{
  margin-bottom:20px;
}

/* CONTACT FORM */

.contact-form{
  background:white;
  padding:40px;
  border-radius:16px;
  box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

.contact-form input,
.contact-form textarea,
.contact-form select{
  width:100%;
  padding:15px;
  margin-bottom:20px;
  border:1px solid #ddd;
  border-radius:8px;
  font-size:16px;
}

.contact-form textarea{
  min-height:160px;
}

.contact-form button{
  border:none;
  cursor:pointer;
}

/* FOOTER */

footer{
  background:#020617;
  color:white;
  text-align:center;
  padding:60px 20px;
}

footer h3{
  margin-bottom:15px;
}

.footer-links{
  margin:25px 0;
}

.footer-links a{
  color:#cbd5e1;
  margin:0 12px;
}

.footer-links a:hover{
  color:#d4a017;
}

/* MOBILE */

@media(max-width:900px){

  .navbar{
    flex-direction:column;
    gap:20px;
  }

  nav ul{
    flex-wrap:wrap;
    justify-content:center;
  }

  .hero h1{
    font-size:2.7rem;
  }

  .page-hero h1{
    font-size:2.5rem;
  }

  .section-title h2{
    font-size:2.2rem;
  }

}