/* Modern Contact Page Styles */

/* Hero Section */
.contact-hero {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  padding: 140px 20px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.contact-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../images/Home/frontbuilding.jpg') center/cover;
  opacity: 0.15;
}

.contact-hero::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(to top right, #f8fafc 49%, transparent 51%);
}

.contact-hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.contact-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(163, 0, 16, 0.9);
  color: #fff;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 24px;
  letter-spacing: 0.5px;
}

.contact-hero h1 {
  font-size: 3.5rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 1.25rem;
  letter-spacing: -1px;
  line-height: 1.1;
}

.contact-hero h1 span {
  background: linear-gradient(135deg, #ff6b6b 0%, #ffa500 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.contact-hero p {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto;
}

/* Contact Container */
.contact-container {
  max-width: 1000px;
  margin: -60px auto 60px;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

/* Contact Cards Grid */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 24px;
}

.contact-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
  padding: 32px 24px;
  text-align: center;
  transition: all 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 50px rgba(0,0,0,0.12);
}

.contact-card-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  background: linear-gradient(135deg, #a30010 0%, #d4001a 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(163, 0, 16, 0.25);
}

.contact-card-icon svg {
  width: 28px;
  height: 28px;
  stroke: #fff;
}

.contact-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1a1a2e;
  margin: 0 0 8px 0;
}

.contact-card p {
  font-size: 1rem;
  color: #64748b;
  margin: 0;
  line-height: 1.6;
}

.contact-card a {
  color: #a30010;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease;
}

.contact-card a:hover {
  color: #d4001a;
}

.contact-card .phone-number {
  font-size: 1.25rem;
  font-weight: 700;
  color: #a30010;
}

/* Hours Section */
.hours-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
  padding: 36px;
  margin-bottom: 24px;
}

.hours-header {
  text-align: center;
  margin-bottom: 28px;
}

.hours-header h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a1a2e;
  margin: 0 0 6px 0;
}

.hours-header p {
  font-size: 0.95rem;
  color: #64748b;
  margin: 0;
}

.hours-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}

.hours-day {
  background: linear-gradient(145deg, #f8fafc 0%, #f1f5f9 100%);
  border: 2px solid #e2e8f0;
  border-radius: 16px;
  padding: 20px 12px;
  text-align: center;
  transition: all 0.3s ease;
}

.hours-day.closed {
  opacity: 0.6;
}

.hours-day.today {
  border-color: #a30010;
  background: linear-gradient(145deg, #fef2f2 0%, #fee2e2 100%);
}

.hours-day-name {
  font-size: 0.8rem;
  font-weight: 700;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.hours-day-time {
  font-size: 0.85rem;
  font-weight: 600;
  color: #1e293b;
  line-height: 1.4;
}

.hours-day.closed .hours-day-time {
  color: #94a3b8;
}

.hours-note {
  text-align: center;
  font-size: 0.85rem;
  color: #64748b;
  font-style: italic;
  padding: 16px;
  background: #f8fafc;
  border-radius: 12px;
}

/* About Section */
.about-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
  padding: 36px;
  margin-bottom: 24px;
}

.about-card h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a1a2e;
  margin: 0 0 16px 0;
}

.about-card p {
  font-size: 1rem;
  color: #475569;
  line-height: 1.8;
  margin: 0 0 12px 0;
}

.about-card p:last-child {
  margin-bottom: 0;
}

/* Map Section */
.map-section {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
  overflow: hidden;
}

.map-header {
  padding: 28px 36px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 2px solid #f0f0f0;
}

.map-header-content h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a1a2e;
  margin: 0 0 4px 0;
}

.map-header-content p {
  font-size: 0.95rem;
  color: #64748b;
  margin: 0;
}

.map-directions-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: linear-gradient(135deg, #a30010 0%, #d4001a 100%);
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(163, 0, 16, 0.25);
}

.map-directions-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(163, 0, 16, 0.35);
}

.map-directions-btn svg {
  width: 18px;
  height: 18px;
}

.map-wrapper {
  position: relative;
  height: 400px;
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* Quick Actions */
.quick-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
}

.quick-action-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.quick-action-btn.primary {
  background: linear-gradient(135deg, #a30010 0%, #d4001a 100%);
  color: #fff;
  box-shadow: 0 6px 20px rgba(163, 0, 16, 0.3);
}

.quick-action-btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(163, 0, 16, 0.4);
}

.quick-action-btn.secondary {
  background: #fff;
  color: #1a1a2e;
  border: 2px solid #e2e8f0;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.quick-action-btn.secondary:hover {
  border-color: #a30010;
  color: #a30010;
  transform: translateY(-2px);
}

.quick-action-btn svg {
  width: 20px;
  height: 20px;
}

/* Responsive */
@media (max-width: 900px) {
  .contact-cards {
    grid-template-columns: 1fr;
  }

  .hours-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 768px) {
  .contact-hero {
    padding: 80px 20px 120px;
  }

  .contact-hero h1 {
    font-size: 2.5rem;
  }

  .hours-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hours-day {
    padding: 16px 10px;
  }

  .map-header {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .quick-actions {
    flex-direction: column;
  }

  .quick-action-btn {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hours-grid {
    grid-template-columns: 1fr 1fr;
  }
}
