/* Global */
body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: #fdfdfd;
  color: #222;
}

h1, h2 {
  font-family: 'Playfair Display', serif;
}

/* Navbar */
.navbar {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 3rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  z-index: 1000;
}
.logo {
  font-size: 1.8rem;
  font-weight: 600;
  color: #d4af37;
}
.navbar nav a {
  margin: 0 1rem;
  font-weight: 500;
  transition: color 0.3s;
}
.navbar nav a:hover {
  color: #d4af37;
}

/* Services Section */
.services {
  padding: 3rem 8%;
  text-align: center;
}
.services h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}
.services p {
  margin-bottom: 3rem;
  color: #666;
}

/* Service Layout */
.service {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 4rem;
  gap: 2rem;
}
.service.reverse {
  flex-direction: row-reverse;
}
.service-img {
  position: relative;
  flex: 1;
  overflow: hidden;
  border-radius: 16px;
}
.service-img img {
  width: 100%;
  border-radius: 16px;
  transition: transform 0.5s ease;
}
.service-img:hover img {
  transform: scale(1.1);
}
.service-text {
  flex: 1;
  text-align: left;
}
.service-text h2 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}
.service-text p {
  line-height: 1.6;
  color: #444;
}

/* Quotes */
.quote {
  position: absolute;
  bottom: -100%;
  left: 0;
  width: 100%;
  background: rgba(0,0,0,0.75);
  color: #fff;
  padding: 1rem;
  font-style: italic;
  font-size: 1rem;
  text-align: center;
  border-radius: 0 0 16px 16px;
  transition: bottom 0.6s ease-in-out;
}
.service-img:hover .quote {
  bottom: 0;
}


/* ====== Footer ====== */
footer {
  background: #111;
  color: #eee;
  padding: 2rem 8%;
}
.footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
}
.footer-links a {
  display: block;
  margin: 0.3rem 0;
  color: #eee;
  transition: 0.3s;
}
.footer-links a:hover {
  color: #d4af37;
  text-shadow: 0 0 8px #d4af37;
}
.socials a {
  margin-right: 10px;
  font-size: 1.2rem;
  transition: 0.3s;
}
.socials a:hover {
  color: #d4af37;
}

/* Responsive */
@media (max-width: 900px) {
  .service, .service.reverse {
    flex-direction: column;
  }
  .service-text {
    text-align: center;
  }
}
