body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: #f5f7fb;
  color: #222;
}

/* NAVBAR */
.navbar {
  background: #0f172a;
  color: white;
  padding: 18px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
}

.navbar ul {
  display: flex;
  list-style: none;
  gap: 25px;
}

.navbar a {
  color: white;
  text-decoration: none;
}

.nav-btn {
  background: #6366f1;
  padding: 8px 15px;
  border-radius: 6px;
}

/* HERO */
.hero {
  height: 80vh;
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
  url("https://images.unsplash.com/photo-1517336714731-489689fd1ca8");
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero h1 {
  color: white;
  font-size: 3rem;
}

.hero p {
  color: #ddd;
  margin: 15px 0;
}

/* BUTTON */
.btn {
  background: #6366f1;
  color: white;
  padding: 12px 25px;
  border-radius: 6px;
  text-decoration: none;
}

.btn.light {
  background: white;
  color: #0f172a;
}

/* SECTION */
.section {
  padding: 70px 20px;
  text-align: center;
}

.subtitle {
  color: #666;
}

/* GRID */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
  gap: 25px;
  margin-top: 40px;
}

/* CARD */
.card {
  background: white;
  padding: 20px;
  border-radius: 10px;
  transition: 0.3s;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.card:hover {
  transform: translateY(-8px);
}

.card img {
  width: 100%;
  border-radius: 8px;
}

/* LOCATION */
.location {
  background: #0f172a;
  color: white;
  padding: 60px 20px;
}

.container {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
}

/* MAP */
.map iframe {
  width: 100%;
  height: 300px;
  border: none;
}

/* FOOTER */
footer {
  background: #020617;
  color: white;
  padding: 50px 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
  gap: 30px;
}

footer input {
  padding: 10px;
  width: 100%;
  margin-bottom: 10px;
}

footer button {
  background: #6366f1;
  color: white;
  padding: 10px;
  border: none;
  width: 100%;
}

.copy {
  margin-top: 30px;
  text-align: center;
}

/* MOBILE */
@media(max-width:768px) {
  .container {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 2rem;
  }
}