/* HERO */
.hero {
  display: flex;
  align-items: center;
  padding: 60px 40px;
  background: linear-gradient(to right, #000 50%, transparent),
              url('https://images.unsplash.com/photo-1517524008697-84bbe3c3fd98') no-repeat right/cover;
  position: relative;
}

.hero-text {
  max-width: 500px;
}

.hero h1 {
  font-size: 50px;
}

.hero span {
  color: red;
}

/* HOURS */
.hours-overlay {
  position: absolute;
  right: 50px;
  top: 35%;
  transform: translateY(-50%);
}

/* SERVICES */
.services {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.card {
  background: #111;
  padding: 20px;
  border-radius: 14px;
  text-align: center;
  width: 240px;
}

.card .more {
  display: none;
}

.card.active {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.card.active .more {
  display: block;
}

/* OVERLAY */
#cardOverlay {
  position: fixed;
  width: 100%;
  height: 100%;
}

/* REVIEWS */
.reviews {
  text-align: center;
}

.reviews-box {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.review-buttons {
  margin-top: 20px;
}

.review-buttons .btn {
  margin: 5px;
}

.card {
  background: #111;
  padding: 20px;
  border-radius: 14px;
  text-align: center;
  width: 240px;

  transition: all 0.3s ease;
}

/* Hover glow */
.card:hover {
  transform: translateY(-5px) scale(1.03);
  box-shadow: 0 0 20px rgba(255,0,0,0.4);
}

/* MODAL BACKGROUND */
#serviceModal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(4px);

  display: none;
  justify-content: center;
  align-items: center;

  z-index: 9999;
}

#serviceModal.active {
  display: flex;
}

/* MODAL CARD */
.modal-content {
  background: #111;
  padding: 30px;
  border-radius: 16px;
  max-width: 500px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;

  box-shadow: 0 0 40px rgba(255,0,0,0.6);
}

/* MODAL BOX */
.modal-box {
  position: relative;
  background: #111;
  padding: 30px;
  border-radius: 16px;
  max-width: 500px;
  width: 90%;
  box-shadow: 0 0 40px rgba(255,0,0,0.6);
}

/* CLOSE BUTTON (FIXED SIZE + STYLE) */
#closeModal {
  position: absolute;
  top: 15px;
  right: 20px;

  font-size: 28px;
  font-weight: bold;
  color: #fff;

  cursor: pointer;
  transition: 0.3s;
}

#closeModal:hover {
  color: red;
  transform: scale(1.2);
}

.hours-overlay {
  position: absolute;
  right: 50px;
  top: 35%;
  transform: translateY(-50%);

  background: rgba(0,0,0,0.75);
  padding: 25px;
  border-radius: 12px;

  backdrop-filter: blur(5px);

  /* 🔥 THIS IS WHAT YOU LOST */
  box-shadow: 0 0 25px rgba(255,0,0,0.4);
}

.reviews-box p {
  background: #111;
  padding: 20px;
  border-radius: 12px;

  box-shadow: 0 0 15px rgba(255,0,0,0.2);
  transition: all 0.3s ease;
}

.reviews-box p:hover {
  transform: scale(1.03);
  box-shadow: 0 0 25px rgba(255,0,0,0.5);
}

