/* ============================================
   HAFA Technical Services — Contact Page Styles
   ============================================ */

.contact-hero {
  padding: 140px 0 80px;
  text-align: center;
  position: relative;
  background: var(--bg-secondary);
}

.contact-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(to bottom, transparent, var(--bg-primary));
}

.contact-hero h1 {
  margin-bottom: 16px;
}

.contact-hero p {
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.1rem;
}

/* Contact Grid */
.contact-section {
  position: relative;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  margin-bottom: 60px;
}

.contact-card {
  background: var(--bg-glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: all var(--transition-normal);
  cursor: pointer;
}

.contact-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}

.contact-card-icon {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-full);
  background: var(--gold-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-size: 1.3rem;
  color: var(--gold-primary);
  transition: all var(--transition-normal);
}

.contact-card:hover .contact-card-icon {
  background: var(--gold-gradient);
  color: var(--bg-primary);
}

.contact-card h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
  font-weight: 600;
}

.contact-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.contact-card a {
  color: var(--gold-light);
  font-weight: 500;
}

.contact-card a:hover {
  color: var(--gold-lighter);
}

/* Operating Hours */
.hours-section {
  background: var(--bg-secondary);
  position: relative;
}

.hours-card {
  max-width: 600px;
  margin: 0 auto;
  background: var(--bg-glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 40px;
}

.hours-list {
  list-style: none;
}

.hours-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid var(--border-glass);
}

.hours-item:last-child {
  border-bottom: none;
}

.hours-day {
  font-weight: 600;
  color: var(--text-primary);
}

.hours-time {
  color: var(--gold-light);
  font-weight: 500;
}

.hours-time.closed {
  color: var(--text-muted);
}

/* Map Container */
.map-section {
  position: relative;
}

.map-container {
  width: 100%;
  height: 400px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-glass);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(0.3) brightness(0.8);
}

/* ============================================
   Responsive — Contact
   ============================================ */
@media (max-width: 768px) {
  .contact-hero {
    padding: 120px 0 60px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hours-card {
    padding: 28px 20px;
  }

  .map-container {
    height: 300px;
  }
}
