/* ====================================
   INDEX PAGE SPECIFIC STYLES
   ==================================== */

.hero-contact-btn {
  display: inline-block;
  margin-top: 30px;
  padding: 7px 30px;
  background-color: #a1c570;
  color: white;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.2rem;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(161, 197, 112, 0.4);
}

.hero-contact-btn:hover {
  background-color: #1d3f47;
  color: #e5decc;
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(29, 63, 71, 0.5);
  text-decoration: none;
}

.hero-contact-btn i {
  margin-right: 8px;
}

@media (max-width: 768px) {
  .hero-contact-btn {
    font-size: 1rem;
    padding: 12px 30px;
  }
}

.floor-overlay-mobile {
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background: linear-gradient(
    to left,
    rgba(29, 63, 71, 0.95) 0%,
    rgba(29, 63, 71, 0.7) 50%,
    transparent 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  padding-right: 20px;
}

.floor-overlay-mobile h3 {
  color: #e5decc;
  font-size: clamp(1.2rem, 5vw, 2rem);
  font-weight: 700;
  margin: 0;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  text-align: center;
  writing-mode: horizontal-tb;
}
