/* ===== Contact Page ===== */

.contact-hero {
  background: linear-gradient(rgba(22,45,76,0.78), rgba(22,45,76,0.82)),
              url("/static/img/contact-hero.jpg") center/cover no-repeat;
  color: #fff;
  text-align: center;
  padding: 120px 20px 100px;
}

.contact-hero h1 {
  font-size: 3rem;
  font-weight: 700;
  color: #e9c46a;
}

.contact-hero p {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.9);
  margin-top: 10px;
}

/* ===== Section ===== */
.contact-section {
  background: #0f1a2c;
  color: #fff;
}

/* ===== Cards (Both Columns) ===== */
.contact-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  box-shadow: 0 4px 25px rgba(0,0,0,0.25);
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.35);
}

/* ===== Info Items ===== */
.info-item i {
  font-size: 1.6rem;
  color: #e9c46a;
  width: 40px;
  text-align: center;
  margin-right: 10px;
}

.info-item h4 {
  margin-bottom: 4px;
  font-weight: 600;
  color: #e9c46a;
}

.info-item p {
  margin: 0;
  color: rgba(255,255,255,0.85);
}


.get-in-touch{
  color: white !important;
  text-decoration: none !important;
}

.get-in-touch:hover {
  color: #D4AF37 !important;
  text-decoration: underline;
}




/* ===== Hours Box ===== */
.hours-box h3 {
  color: #e9c46a;
}

.hours-box ul {
  padding: 0;
  margin: 0;
}

.hours-box li {
  font-size: 1.05rem;
  margin-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding-bottom: 8px;
  color: rgba(255,255,255,0.9);
}

.hours-box li span {
  font-weight: 600;
  color: #e9c46a;
}

/* ===== Map Section ===== */
.map-section {
  position: relative;
  height: 400px;
  overflow: hidden;
}

.map-section iframe {
  border: 0;
  width: 100%;
  height: 400px;
  display: block;
  filter: grayscale(20%) contrast(1.1);
}

.map-section .map-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 26, 44, 0.2);
  pointer-events: none;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .contact-hero {
    padding: 100px 20px 80px;
  }
  .contact-hero h1 {
    font-size: 2rem;
  }

  .contact-card {
    height: auto;
  }

  .map-section {
    height: 300px;
  }

  .map-section iframe {
    height: 300px;
  }
}
