* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f5f5f5;
}

header {
  background: rgba(0, 0, 0, 0.7);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(8px);
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: auto;
  padding: 1rem 2rem;
}

.logo {
  color: white;
  font-size: 1.8rem;
  font-weight: 700;
}

.logo span {
  color: #7bb661;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.nav-links a:hover {
  color: #7bb661;
}

.hero {
  height: 100vh;
  background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
  /* url('https://images.unsplash.com/photo-1506744038136-46273834b3fb?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat; */
  url('images/fauzan-saari-pZXg_ObLOM4-unsplash.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  padding: 2rem;
}

.hero-content {
  max-width: 800px;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.btn {
  background: #7bb661;
  color: white;
  padding: 1rem 2rem;
  border: none;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  transition: 0.3s;
  cursor: pointer;
  display: inline-block;
}

.btn:hover {
  background: #578C40;
  transform: translateY(-3px);
}

section {
  padding: 6rem 2rem;
}

.container {
  max-width: 1200px;
  margin: auto;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
}

.services-grid,
.gallery-grid,
.review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.service-card,
.review-card,
.contact-form {
  background: white;
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: 5px 5px 10px rgba(0,0,0,0.08);
}

.service-card:hover {
  transform: scale(1.1);
  transition: 0.5s;
}

.gallery-grid img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 16px;
}

.about {
  background: white;
}

.about-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  align-items: center;
}

.about-content img {
  width: 100%;
  border-radius: 20px;
}

.reviews {
  background: #F3F9F1;
}

.stars{
  padding-bottom: 15px;
  color: gold; 
  font-size: 24px;
}

h4{
  padding-top: 10px;
}

.form-group {
  margin-bottom: 1.5rem;
}

input,
textarea {
  width: 100%;
  padding: 1rem;
  border-radius: 10px;
  border: 1px solid #ccc;
}

textarea {
  resize: vertical;
  min-height: 150px;
}

footer {
  background: #1f1f1f;
  color: white;
  text-align: center;
  padding: 5rem;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
}

footer p{
  transition: transform 0.3s ease;
  color: white;
}

.facebook-icon {
  width: 35px;
  height: 35px;
  margin-top: 10px;
  transition: transform 0.3s ease;
}

/* Hover Effect */
.facebook-icon:hover {
  transform: scale(1.2);
}

.mobile-menu {
  display: none;
  font-size: 2rem;
  color: white;
  cursor: pointer;
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.8rem;
  }

  .nav-links {
    position: absolute;
    top: 80px;
    right: 0;
    background: rgba(0,0,0,0.95);
    width: 100%;
    flex-direction: column;
    align-items: center;
    padding: 2rem 0;
    display: none;
  }

  .nav-links.active {
    display: flex;
  }

  .mobile-menu {
    display: block;
  }
}