/* =====================================================
   MODERN SERVICES – GOLD LUXURY (FULL CSS)
===================================================== */

/* ===== SECTION ===== */
.modern-services {
  padding: 100px 20px;
  background: #faf7f2; /* soft gold-white */
}

/* ===== HEADER ===== */
.services-header {
  text-align: center;
  max-width: 700px;
  margin: auto;
}

.services-tag {
  color: #966812;              /* GOLD */
  font-weight: 600;
  letter-spacing: 1px;
  font-size: 0.9rem;
}

.services-header h1 {
  font-size: 2.8rem;
  margin: 12px 0;
  color: #1f1f1f;
}

.services-header p {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ===== GRID ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 35px;
  max-width: 1200px;
  margin: 60px auto 0;
}

/* ===== CARD ===== */
.service-card-modern {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 14px 45px rgba(0,0,0,0.1);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.service-card-modern:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 55px rgba(0,0,0,0.15);
}

.service-card-modern img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

/* ===== CONTENT ===== */
.service-content {
  padding: 22px;
}

.service-content h3 {
  font-size: 1.3rem;
  margin-bottom: 6px;
  color: #222;
}

.service-content p {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.5;
}

/* =====================================================
   DURATION BADGES – GOLD
===================================================== */

.duration-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 20px;
}

.duration-badge {
  background: #f5efe4;             /* soft gold */
  border-radius: 14px;
  padding: 14px 10px;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.duration-badge:hover {
  transform: translateY(-4px);
  border-color: #966812;
}

/* Active / Best Offer */
.duration-badge.active {
  background: linear-gradient(135deg, #cfa24d, #966812);
}

/* Time */
.duration-badge .time {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: #7a5a1a;
  margin-bottom: 6px;
}

.duration-badge.active .time {
  color: #ffffff;
}

/* Old Price */
.duration-badge .old-price {
  display: block;
  font-size: 0.75rem;
  color: #999;
  text-decoration: line-through;
}

/* New Price */
.duration-badge .new-price {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: #966812;
}

.duration-badge.active .new-price {
  color: #ffffff;
}

/* =====================================================
   MOBILE – DURATION BADGES
===================================================== */
@media (max-width: 600px) {

  .duration-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .duration-badge {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 14px;
    border-radius: 12px;
  }

  .duration-badge:hover {
    transform: none;
  }

  .duration-badge .time {
    font-size: 0.9rem;
    margin: 0;
    white-space: nowrap;
  }

  .duration-badge .old-price {
    font-size: 0.75rem;
    margin-right: 6px;
  }

  .duration-badge .new-price {
    font-size: 0.9rem;
  }

  .duration-badge .old-price,
  .duration-badge .new-price {
    display: inline-block;
  }

  .duration-badge.active {
    background: linear-gradient(135deg, #cfa24d, #966812);
  }

  .duration-badge.active .time,
  .duration-badge.active .new-price {
    color: #ffffff;
  }

  .duration-badge.active .old-price {
    color: #f1e2c2;
  }
}

/* =====================================================
   MOBILE HEADING FIX
===================================================== */
@media (max-width: 600px) {

  .services-header h1 {
    font-size: 1.6rem;
    line-height: 1.3;
    margin: 10px 0 8px;
    letter-spacing: 0.3px;
  }

  .services-header p {
    font-size: 0.85rem;
    line-height: 1.4;
    padding: 0 10px;
  }

  .services-tag {
    font-size: 0.7rem;
    letter-spacing: 1.2px;
  }
}

/* =====================================================
   ACTION BUTTONS
===================================================== */
.service-actions {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.btn-action {
  flex: 1;
  padding: 10px;
  border-radius: 25px;
  text-align: center;
  text-decoration: none;
  font-size: 0.9rem;
  background: #f5efe4;
  color: #333;
  transition: 0.3s ease;
}

.btn-action:hover {
  background: #e9dcc7;
}

.btn-action.whatsapp {
  background: #25d366;
  color: #ffffff;
}

.btn-action.whatsapp:hover {
  background: #1ebe5d;
}

/* =====================================================
   FOOTER BOTTOM STRIP – GOLD
===================================================== */

.footer-bottom {
  background: #f5efe4;        /* soft gold */
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
}

.footer-bottom .copyright {
  margin: 0;
  font-size: 0.85rem;
  color: #966812;
  line-height: 1;
  white-space: nowrap;
}

/* Mobile Footer */
@media (max-width: 600px) {
  .footer-bottom {
    height: auto;
    padding: 10px 8px;
  }

  .footer-bottom .copyright {
    font-size: 0.75rem;
    white-space: normal;
    text-align: center;
  }
}
