/* ========== CONTACT PAGE - PROFESSIONAL DESIGN ========== */

.contact-page {
  min-height: 80vh;
}

/* Hero Section */
.contact-hero {
  background: linear-gradient(135deg, rgba(116, 102, 205, 0.95) 0%, rgba(90, 78, 170, 0.95) 50%, rgba(74, 64, 150, 0.95) 100%);
  padding: 2.5rem 0 2rem;
  position: relative;
  overflow: hidden;
}

.contact-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 80%, rgba(255,255,255,0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255,255,255,0.06) 0%, transparent 50%);
}

.contact-hero::after {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.9);
  padding: 5px 16px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  margin-bottom: 0.75rem;
  border: 1px solid rgba(255,255,255,0.15);
  backdrop-filter: blur(4px);
}

.hero-title {
  color: #fff;
  font-size: 1.75rem;
  font-weight: 800;
  margin-bottom: 0.35rem;
  letter-spacing: -0.5px;
}

.hero-subtitle {
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  max-width: 500px;
  margin: 0 auto;
}

/* Contact Grid */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2rem;
  margin-top: 2.5rem;
  padding-bottom: 4rem;
}

/* Section Labels */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #fff;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  color: #1a1a2e;
  margin-bottom: 1rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.section-label i {
  color: #feb139;
  font-size: 1rem;
}

/* Map Section */
.map-section .map-wrapper {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  height: 450px;
  background: #e9ecef;
}

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

/* Info Section */
.info-section {
  display: flex;
  flex-direction: column;
}

/* Contact Cards */
.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: #fff;
  padding: 1.1rem 1.25rem;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  border: 1px solid #f0f0f0;
  transition: all 0.25s ease;
}

.contact-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  border-color: #feb139;
}

.card-icon {
  width: 42px;
  height: 42px;
  min-width: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #fef3cd, #feb139);
  border-radius: 10px;
  color: #fff;
  font-size: 1.1rem;
  box-shadow: 0 3px 10px rgba(254, 177, 57, 0.3);
}

.card-content h6 {
  font-size: 0.85rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 0.2rem;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.card-content p,
.card-content a {
  font-size: 0.9rem;
  color: #4b5563;
  margin-bottom: 0;
  text-decoration: none;
  line-height: 1.5;
}

.card-content a:hover {
  color: #feb139;
}

.card-content .text-muted {
  font-size: 0.8rem;
  color: #9ca3af !important;
}

.address-card {
  align-items: flex-start;
}

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

  .map-section .map-wrapper {
    height: 350px;
  }
}

@media (max-width: 768px) {
  .contact-hero {
    padding: 2rem 0 1.5rem;
  }

  .hero-title {
    font-size: 1.4rem;
  }

  .hero-subtitle {
    font-size: 0.85rem;
  }

  .map-section .map-wrapper {
    height: 280px;
  }

  .contact-card {
    padding: 1rem;
  }
}

@media (max-width: 480px) {
  .contact-hero {
    padding: 1.5rem 0 1.25rem;
  }

  .hero-title {
    font-size: 1.15rem;
  }

  .section-label {
    font-size: 0.85rem;
    padding: 0.4rem 0.8rem;
  }
}
