* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  scroll-behavior: smooth;
}

/* NAVBAR */
.navbar {
  position: sticky;
  top: 0;
  display: flex;
  justify-content: space-between;
  padding: 15px 40px;
  background: #111;
  color: white;
  z-index: 1000;
}

.navbar nav a {
  color: white;
  margin-left: 20px;
  text-decoration: none;
}

.navbar nav a:hover {
  color: #ff9800;
}

/* HERO */
.hero {
  height: 90vh;
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
              url('https://images.unsplash.com/photo-1498050108023-c5249f4df085');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}

.hero h1 {
  font-size: 3rem;
}

.btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 25px;
  background: #ff9800;
  color: white;
  text-decoration: none;
  border-radius: 25px;
}

/* SERVICES */
.services {
  padding: 60px 20px;
  text-align: center;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.card {
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-10px);
}

/* ABOUT & CONTACT */
.about, .contact {
  padding: 60px 20px;
  text-align: center;
  background: #f9f9f9;
}

/* FOOTER */
footer {
  background: #111;
  color: white;
  text-align: center;
  padding: 20px;
}

/* INFO SECTION */
.info-section {
  padding: 60px 20px;
  background: #f4f6f8;
}

.info-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
  max-width: 1000px;
  margin: auto;
}

.info-card {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  transition: 0.3s;
}

.info-card:hover {
  transform: translateY(-8px);
}

.info-card h2 {
  margin-bottom: 15px;
}

.info-card p {
  margin: 10px 0;
}

/* Mobile Responsive */
@media(max-width: 768px) {
  .info-container {
    grid-template-columns: 1fr;
  }
}
.map-container {
    margin-top: 15px;
    overflow: hidden;
    border-radius: 12px;
}
.review-btn {
    background: #fbbc05;
    color: black;
}

.review-btn:hover {
    background: #e0a800;
}