body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  background-color: #111;
  color: #fff;
  scroll-behavior: smooth;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background-color: #000;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: gold;
}

.nav-links {
  display: flex;
  gap: 1rem;
}

.nav-links a {
  color: white;
  text-decoration: none;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: gold;
}

.hamburger {
  display: none;
  font-size: 2rem;
  color: white;
  cursor: pointer;
}

.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.hero-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.hero-text h1 {
  font-size: 3rem;
  color: gold;
}

.btn {
  padding: 0.75rem 1.5rem;
  background-color: gold;
  color: black;
  border: none;
  border-radius: 5px;
  font-weight: bold;
  text-decoration: none;
}

.section {
  padding: 4rem 2rem;
  text-align: center;
}

.service-grid,
.gallery-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  margin-top: 2rem;
}

.service-card {
  background-color: #1a1a1a;
  padding: 1rem;
  border-radius: 10px;
  transition: transform 0.3s;
}

.service-card:hover {
  transform: scale(1.05);
}

.gallery-grid img {
  width: 100%;
  border-radius: 10px;
}

.review-slider {
  display: flex;
  overflow-x: auto;
  gap: 1rem;
  padding: 1rem;
}

.review {
  background: #222;
  padding: 1rem;
  border-radius: 10px;
  min-width: 250px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 600px;
  margin: 2rem auto;
}

.contact-form input,
.contact-form textarea {
  padding: 0.75rem;
  border: none;
  border-radius: 5px;
}

.contact-form button {
  background: gold;
  border: none;
  padding: 0.75rem;
  font-weight: bold;
  border-radius: 5px;
  cursor: pointer;
}

.floating-btn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: green;
  color: white;
  padding: 1rem;
  border-radius: 50%;
  font-size: 1.5rem;
  z-index: 1000;
}

.footer {
  background: #000;
  padding: 2rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  color: white;
  font-size: 0.9rem;
}

.footer a {
  color: gold;
  margin-left: 1rem;
  text-decoration: none;
}

.sticky-book-btn {
  display: none;
  position: fixed;
  bottom: 0;
  width: 100%;
  background: gold;
  color: black;
  text-align: center;
  padding: 1rem;
  font-weight: bold;
  text-decoration: none;
  z-index: 999;
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    background: #000;
    position: absolute;
    top: 60px;
    right: 0;
    padding: 1rem;
  }

  .nav-links.active {
    display: flex;
  }

  .hamburger {
    display: block;
  }

  .sticky-book-btn {
    display: block;
  }
}
.animate {
  opacity: 0;
  transform: translateY(40px) scale(0.98);
  transition: opacity 0.8s cubic-bezier(.77,0,.18,1), transform 0.8s cubic-bezier(.77,0,.18,1);
  will-change: opacity, transform;
}

.animate.visible {
  opacity: 1;
  transform: none;
}