body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #f7f7f7;
  color: #333;
  position: relative;
}

.hero {
  height: 70vh;
  background: url("images/hero.jpg") center/cover no-repeat;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  position: relative;
}

.hero-text {
  background: linear-gradient(135deg, rgba(0,0,0,0.75), rgba(0,0,0,0.45));
  color: white;
  padding: 28px 40px;
  text-align: center;
  border-radius: 12px 12px 0 0;
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,0.15);
  border-bottom: none;
  max-width: 420px;
}

.hero-text h1 {
  margin: 0;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 4rem;
  font-weight: 900;
  letter-spacing: 3px;
  text-transform: uppercase;
  background: linear-gradient(135deg, #ffffff 0%, #e0c97f 50%, #ffffff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

.hero-text p {
  margin-top: 14px;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.35rem;
  font-style: italic;
  letter-spacing: 2px;
  opacity: 0.9;
}

/* ===== Top-Right Contact Bar ===== */
.top-contact {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 10;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.top-contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: bold;
  text-decoration: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.top-contact-btn:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.top-contact-btn svg {
  flex-shrink: 0;
}

.top-contact-call {
  background: #0066cc;
  color: #fff;
}

.top-contact-wa {
  background: #25D366;
  color: #fff;
}

.top-contact-email {
  background: #ea4335;
  color: #fff;
}

/* ===== Slideshow Carousel ===== */
.slideshow-section {
  padding: 50px 0 40px;
  text-align: center;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  overflow: hidden;
}

.slideshow-section h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: #ffffff;
  margin: 0 0 30px;
}

.slideshow-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.slideshow-wrapper::before,
.slideshow-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}

.slideshow-wrapper::before {
  left: 0;
  background: linear-gradient(to right, #1a1a2e, transparent);
}

.slideshow-wrapper::after {
  right: 0;
  background: linear-gradient(to left, #0f3460, transparent);
}

.slideshow-track {
  display: flex;
  gap: 20px;
  animation: slideLeft 30s linear infinite;
  width: max-content;
}

.slideshow-track:hover {
  animation-play-state: paused;
}

.slide {
  flex-shrink: 0;
  width: 280px;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 8px 25px rgba(0,0,0,0.3);
  transition: transform 0.3s ease;
}

.slide:hover {
  transform: scale(1.05);
}

.slide img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.slide-caption {
  background: linear-gradient(135deg, rgba(0,0,0,0.85), rgba(0,0,0,0.6));
  color: #fff;
  padding: 10px 14px;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  text-align: center;
}

@keyframes slideLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ===== Sections ===== */
.section {
  padding: 50px 20px;
  text-align: center;
}

.section h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: #2c2c2c;
  margin-bottom: 15px;
}

.section p {
  font-size: 1.05rem;
  color: #555;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

/* ===== Services Grid ===== */
.services-section {
  background: #ffffff;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
  max-width: 900px;
  margin: 30px auto 0;
  padding: 0 20px;
}

.service-card {
  background: #f9f9fb;
  border-radius: 12px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.service-icon {
  font-size: 2.5rem;
  margin-bottom: 12px;
}

.service-card h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.2rem;
  color: #2c2c2c;
  margin: 0 0 10px;
}

.service-card p {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.6;
  margin: 0;
}

/* ===== Why Choose Us Grid ===== */
.why-section {
  background: linear-gradient(135deg, #f0f4ff 0%, #e8edf5 100%);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  max-width: 900px;
  margin: 30px auto 0;
  padding: 0 20px;
}

.why-item {
  background: #ffffff;
  border-radius: 10px;
  padding: 25px 20px;
  text-align: center;
  box-shadow: 0 3px 12px rgba(0,0,0,0.06);
  transition: transform 0.3s ease;
}

.why-item:hover {
  transform: translateY(-3px);
}

.why-item strong {
  display: block;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.1rem;
  color: #2c2c2c;
  margin-bottom: 8px;
}

.why-item p {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.6;
  margin: 0;
}

/* ===== Contact Card ===== */
.contact-card {
  background: #ffffff;
  max-width: 420px;
  margin: 30px auto 0;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.1);
}

.contact-card p {
  margin: 12px 0;
  font-size: 1.05rem;
}

.contact-card a {
  color: #0066cc;
  text-decoration: none;
  font-weight: bold;
}

.contact-card a:hover {
  text-decoration: underline;
}

.whatsapp-btn {
  display: inline-block;
  margin-top: 15px;
  background-color: #25D366;
  color: white !important;
  padding: 12px 20px;
  border-radius: 30px;
  text-decoration: none !important;
  font-weight: bold;
  font-size: 1rem;
}

.whatsapp-btn:hover {
  background-color: #1ebe5d;
  text-decoration: none !important;
}

/* ===== Footer ===== */
.footer {
  background: #1a1a2e;
  color: #aaa;
  text-align: center;
  padding: 25px 20px;
  font-size: 0.9rem;
}

.footer p {
  margin: 5px 0;
}

.unsplash-credit {
  font-size: 0.8rem;
  color: #777;
}

.unsplash-credit a {
  color: #8899aa;
  text-decoration: underline;
}

/* ===== Responsive ===== */
@media (max-width: 600px) {
  .hero-text h1 {
    font-size: 2.5rem;
  }

  .hero-text {
    padding: 20px 24px;
    max-width: 280px;
  }

  .top-contact {
    top: 10px;
    right: 10px;
    gap: 6px;
  }

  .top-contact-btn {
    padding: 6px 10px;
    font-size: 0.75rem;
  }

  .slide {
    width: 220px;
  }

  .slide img {
    height: 160px;
  }

  .services-grid,
  .why-grid {
    grid-template-columns: 1fr;
    padding: 0 15px;
  }

  .slideshow-section h2,
  .section h2 {
    font-size: 1.7rem;
  }
}
