:root {
  --navy: #0A1F44;
  --gold: #C9A94B;
  --muted: #6b7280;
  --soft: #f6f7fb;
  --card-bg: #ffffff;
  --radius: 12px;
  --max-width: 1150px;
}

/* ---------- Banner Section ---------- */
.service-banner {
  position: relative;
  margin-top: 90px;
  height: 60vh;
  background: url("https://images.unsplash.com/photo-1554224154-22dec7ec8818?auto=format&fit=crop&w=1400&q=80")
    center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
}

.service-banner .banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(10, 31, 68, 0.8), rgba(10, 31, 68, 0.5));
  z-index: 1;
}

.service-banner .banner-content {
  position: relative;
  z-index: 2;
}

.service-banner h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  margin-bottom: 10px;
}

.service-banner p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
}

/* ---------- Service Section ---------- */
.service-section {
  background: var(--soft);
  padding: 80px 20px;
}

.service-container {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}

/* ---------- Left Content ---------- */
.service-content {
  flex: 1 1 50%;
  animation: fadeInLeft 1s ease forwards;
}

.service-content h2 {
  font-family: "Playfair Display", serif;
  color: var(--navy);
  font-size: 2rem;
  margin-bottom: 20px;
}

.service-content p {
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 15px;
}

/* ---------- Right Image ---------- */
.service-image {
  flex: 1 1 45%;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeInRight 1s ease forwards;
  height: 500px;
}

.service-image img {
  width: 100%;
  height: 100%;
  max-width: 520px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.service-image img:hover {
  transform: scale(1.02);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

/* ---------- Reveal + Animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 1s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ---------- Responsive Design ---------- */

/* Large Tablets */
@media (max-width: 1024px) {
  .service-content h2 {
    font-size: 1.8rem;
  }
  .service-image img {
    max-width: 480px;
    height: 340px;
  }
}

/* Tablets and Mobiles */
@media (max-width: 768px) {
  .service-container {
    flex-direction: column-reverse;
    text-align: center;
  }

  .service-image,
  .service-content {
    flex-basis: 100%;
  }

  .service-image img {
    width: 90%;
    height: auto;
    max-height: 320px;
    margin: 0 auto;
  }

  .service-content h2 {
    margin-top: 30px;
  }
}

/* Small Mobiles */
@media (max-width: 480px) {
  .service-section {
    padding: 60px 15px;
  }

  .service-image img {
    width: 100%;
    height: auto;
    max-height: 260px;
  }
  .service-banner{
    height: 30vh;
  }
}

.service-actions.service-detail{
    justify-content: flex-start;
}
