/* =========================================
   LOCATION PAGE STYLES
   ========================================= */

/* 1. Intro Cards */
.locIntro {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin: 40px 0;
}
@media (min-width: 768px) {
  .locIntro { grid-template-columns: repeat(3, 1fr); }
}

.infoCard {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 24px;
  text-align: center;
  transition: transform 0.3s ease;
}
.infoCard:hover {
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-5px);
  border-color: rgba(209, 0, 108, 0.3);
}
.infoIcon { font-size: 32px; margin-bottom: 12px; display: block; }
.infoCard h3 { margin: 0 0 8px 0; color: #fff; font-size: 18px; }
.infoCard p { margin: 0; color: #aaa; font-size: 14px; line-height: 1.5; }

/* 2. Map Section */
.mapBlock {
  position: relative;
  background: #0b0c10;
  border-radius: 24px;
  overflow: hidden;
  margin-bottom: 40px;
  /* Pink Glow Border */
  box-shadow: 0 0 0 1px rgba(255,255,255,0.1), 0 20px 40px rgba(0,0,0,0.5);
}

/* Top Gradient Line */
.mapBlock::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, #d1006c, #ff2d88);
  z-index: 5;
}

.mapFrame {
  width: 100%;
  height: 400px;
  position: relative;
  background: #222;
}

/* Dark Mode Map Filter */
.mapFrame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(100%) invert(92%) contrast(83%);
  opacity: 0.8;
  transition: opacity 0.3s;
}
.mapFrame:hover iframe { opacity: 1; }

.mapOverlayBtn {
  position: absolute;
  bottom: 20px; right: 20px;
  z-index: 10;
}

/* 3. Details Block */
.detailsBlock {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  margin-bottom: 50px;
}
@media (min-width: 900px) {
  .detailsBlock { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1200px) {
  .detailsBlock { grid-template-columns: 1fr 1fr 1fr; }
}

.detailPanel {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 30px;
}

.detailTitle {
  font-size: 20px; font-weight: 800; color: #fff;
  margin-bottom: 20px; border-bottom: 1px solid rgba(255,255,255,0.1);
  padding-bottom: 10px; display: flex; align-items: center; gap: 10px;
}

.directionStep {
  display: flex; gap: 15px; margin-bottom: 20px;
}
.stepIcon {
  flex: 0 0 32px; height: 32px;
  background: rgba(255, 47, 135, 0.1);
  color: #ff2d88;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 14px;
}
.stepText h4 { margin: 0 0 4px 0; color: #fff; font-size: 16px; }
.stepText p { margin: 0; color: #aaa; font-size: 14px; line-height: 1.5; }

/* 4. Rooms Grid */
.roomsTitle { text-align: center; margin-bottom: 30px; }
.roomsTitle h2 { font-size: 28px; margin-bottom: 10px; }

.roomsGrid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
@media (min-width: 768px) {
  .roomsGrid { grid-template-columns: repeat(4, 1fr); }
}

.roomCard {
  border-radius: 16px; overflow: hidden;
  aspect-ratio: 4/3;
  border: 1px solid rgba(255,255,255,0.15);
  position: relative;
}
.roomCard img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
}
.roomCard:hover img { transform: scale(1.1); }

.roomLabel {
  position: absolute; bottom: 10px; left: 10px;
  background: rgba(0,0,0,0.6); backdrop-filter: blur(4px);
  padding: 4px 10px; border-radius: 8px;
  font-size: 12px; font-weight: 700; color: #fff;
}



/* =========================
   CONTACT BAR (New Section)
   ========================= */
.contactBar {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 40px;
}

@media (min-width: 768px) {
  .contactBar {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
}

.contactBox {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.contactBox:hover {
  transform: translateY(-3px);
  border-color: rgba(209, 0, 108, 0.3);
  background: rgba(255, 255, 255, 0.05);
}

.contactLabel {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #aaa;
  margin-bottom: 10px;
  font-weight: 700;
}

.contactValue {
  font-size: 28px;
  font-weight: 800;
  color: #d1006c; /* Brand Pink */
  margin-bottom: 8px;
  text-decoration: none;
  line-height: 1.2;
}

.contactSub {
  font-size: 15px;
  color: #ccc;
  margin: 0;
  max-width: 300px;
  line-height: 1.5;
}

/* Pulse animation for the phone icon */
.pulseIcon {
  display: inline-block;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.1); opacity: 0.8; }
  100% { transform: scale(1); opacity: 1; }
}