.contact-page {
  padding-top: 20px;
}

.contact-container {
  max-width: 1000px;
}

.contact-section {
  padding: 40px 0 60px 0;
}

.contact-hero {
  padding: 60px 0 30px 0;
}

.contact-hero-title {
  font-size: 42px;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 16px;
}

.contact-hero-text {
  font-size: 18px;
  color: #555;
  max-width: 600px;
  margin: 0 auto;
}

.contact-info-card {
  background: #ffffff;
  border: 1px solid #eeeeee;
  border-radius: 16px;
  padding: 28px;
  text-align: center;
  height: 100%;
}

.contact-info-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(
    135deg,
    rgba(183, 28, 28, 0.1) 0%,
    rgba(183, 28, 28, 0.05) 100%
  );
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.contact-info-icon i {
  font-size: 26px;
  color: var(--red);
}

.contact-info-card h5 {
  font-weight: 700;
  color: var(--black);
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.contact-info-card p {
  color: #666;
  margin: 0;
  line-height: 1.7;
  font-size: 0.95rem;
}

.contact-form-card {
  background: #ffffff;
  border: 1px solid #eee;
  border-radius: 20px;
  padding: 36px;
}

.contact-form-card h4 {
  font-weight: 700;
  color: var(--black);
  font-size: 1.3rem;
}

.contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

@media (min-width: 992px) {
  .contact-info-card {
    min-height: 150px;
  }
}

.contact-support-card {
  background: #ffffff;
  border: 1px solid #eee;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

.contact-support-card h5 {
  font-weight: 700;
  color: var(--black);
  font-size: 1.05rem;
}

.contact-social-card {
  background: #ffffff;
  border: 1px solid #eee;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

.contact-social-card h6 {
  font-weight: 700;
  color: var(--black);
  margin-bottom: 12px;
}

.contact-social-link {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid #e8e8e8;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--black);
  font-size: 1.1rem;
  transition: all 0.2s ease;
}

.contact-social-link:hover {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
  transform: translateY(-2px);
}

.contact-map-section {
  padding: 0 0 60px 0;
}

.contact-map-card {
  background: #ffffff;
  border: 1px solid #eee;
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

.contact-map-card h5 {
  font-weight: 700;
  color: var(--black);
  font-size: 1.1rem;
}

@media (max-width: 991px) {
  .contact-hero-title {
    font-size: 32px;
  }

  .contact-hero-text {
    font-size: 16px;
  }

  .contact-form-card {
    padding: 28px;
  }

  .contact-sidebar {
    margin-top: 6px;
  }
}

@media (min-width: 992px) {
  .contact-sidebar {
    position: sticky;
    top: 96px;
  }
}

@media (max-width: 767px) {
  .contact-hero {
    padding: 40px 0 20px 0;
  }

  .contact-hero-title {
    font-size: 28px;
  }

  .contact-info-card {
    padding: 20px;
  }

  .contact-form-card {
    padding: 24px;
  }

  .contact-support-card {
    padding: 20px;
  }

  .contact-map-card {
    padding: 20px;
  }
}
