.contact-hero {
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--primary-hover) 100%
  );
  padding: 30px 0;
  color: white;
  text-align: center;
}

.contact-hero h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.contact-hero p {
  font-size: 1.1rem;
  opacity: 0.9;
}

.contact-section {
  padding: 60px 0;
  background: #f8f9fa;
}

.contact-card {
  background: white;
  border-radius: 15px;
  padding: 40px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  height: 100%;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
  padding-bottom: 25px;
  border-bottom: 1px solid #eee;
}

.contact-info-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.contact-info-icon {
  width: 50px;
  height: 50px;
  background: var(--primary-color);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-right: 20px;
}

.contact-info-content h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 5px;
}

.contact-info-content p {
  color: #666;
  margin: 0;
  line-height: 1.6;
}

.contact-info-content a {
  color: var(--primary-color);
  text-decoration: none;
}

.contact-info-content a:hover {
  text-decoration: underline;
}

.contact-form-card {
  background: white;
  border-radius: 15px;
  padding: 40px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.contact-form-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 30px;
}

.form-floating {
  margin-bottom: 20px;
}

.form-floating > .form-control,
.form-floating > .form-select {
  border: 2px solid #e9ecef;
  border-radius: 10px;
  height: calc(3.5rem + 2px);
  padding: 1rem 0.75rem;
}

.form-floating > .form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.15);
}

.form-floating > label {
  padding: 1rem 0.75rem;
}

.form-floating > textarea.form-control {
  height: 150px;
}

.btn-send {
  background: var(--primary-color);
  border: none;
  padding: 15px 40px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 10px;
  color: white;
  width: 100%;
  transition: all 0.3s ease;
}

.btn-send:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(102, 126, 234, 0.4);
  background: var(--secondary-color);
  color: #fff;
}

.btn-send i {
  margin-right: 10px;
}

.alert {
  border-radius: 10px;
  border: none;
  padding: 15px 20px;
}

.alert-success {
  background: #d4edda;
  color: #155724;
}

.alert-danger {
  background: #f8d7da;
  color: #721c24;
}

.social-links-contact {
  display: flex;
  gap: 15px;
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid #eee;
}

.social-link-contact {
  width: 45px;
  height: 45px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-link-contact.facebook {
  background: #1877f2;
}
.social-link-contact.instagram {
  background: linear-gradient(
    45deg,
    #f09433,
    #e6683c,
    #dc2743,
    #cc2366,
    #bc1888
  );
}
.social-link-contact.youtube {
  background: #ff0000;
}
.social-link-contact.twitter {
  background: #1da1f2;
}
.social-link-contact.tiktok {
  background: #000000;
}

.social-link-contact:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  color: white;
}

/* Map placeholder */
.map-container {
  margin-top: 40px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.map-placeholder {
  background: linear-gradient(135deg, #e9ecef 0%, #dee2e6 100%);
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6c757d;
}

.map-placeholder i {
  font-size: 3rem;
  margin-bottom: 15px;
}

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

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

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

  .contact-card,
  .contact-form-card {
    padding: 25px;
    margin-bottom: 30px;
  }

  .contact-info-icon {
    width: 40px;
    height: 40px;
    font-size: 1rem;
    margin-right: 15px;
  }
}
