/* ============================================
   CONTACTO PAGE STYLES
   Estilos específicos para la página de contacto
   ============================================ */

/* Contact Section */
.contact-section {
  min-height: calc(100vh - 70px);
  padding: 100px 20px 80px;
  background: linear-gradient(135deg, #007bff 0%, #1f2bc5 100%);
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Contact Header */
.contact-header {
  text-align: center;
  color: #fff;
  margin-bottom: 60px;
}

.contact-header h1 {
  font-size: 56px;
  font-weight: 700;
  margin-bottom: 16px;
}

.contact-header p {
  font-size: 20px;
  opacity: 0.9;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Contact Content Grid */
.contact-content {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: start;
}

/* Contact Info Card */
.contact-info {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 40px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
}

.contact-info h2 {
  font-size: 32px;
  margin-bottom: 30px;
  font-weight: 600;
}

/* Info Items */
.info-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 30px;
}

.info-icon {
  flex-shrink: 0;
}

.info-icon i {
  font-size: 32px;
  color: #fff;
  vertical-align: middle;
}

.info-item h3 {
  font-size: 18px;
  margin-bottom: 6px;
  font-weight: 600;
}

.info-item p {
  font-size: 16px;
  opacity: 0.9;
  margin: 0;
}

/* Social Links */
.social-links-contact {
  display: flex;
  gap: 15px;
  margin-top: 30px;
}

.social-link {
  text-decoration: none;
  transition: all 0.3s ease;
  padding: 12px;
  border-radius: 12px;
  display: inline-block;
  background: rgba(255, 255, 255, 0.25);
}

.social-link i {
  font-size: 32px;
  color: #fff;
  vertical-align: middle;
}

.social-link:hover {
  transform: translateY(-5px) scale(1.05);
  background: rgba(255, 255, 255, 0.35);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Contact Form Wrapper */
.contact-form-wrapper {
  background: #fff;
  padding: 50px;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

/* Form Styles */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 16px;
  font-weight: 600;
  color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 14px 18px;
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  font-size: 16px;
  font-family: 'Poppins', sans-serif;
  transition: all 0.3s ease;
  background: #fff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

/* Custom Select Styling */
.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 20px;
  padding-right: 45px;
}

/* Submit Button */
.submit-button {
  background: #007bff ;
  color: #fff;
  border: none;
  padding: 16px 40px;
  border-radius: 10px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.submit-button i {
  font-size: 20px;
  vertical-align: middle;
  transition: transform 0.3s ease;
}

.submit-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(102, 126, 234, 0.4);
}

.submit-button:hover i {
  transform: translateX(3px);
}

.submit-button:active {
  transform: translateY(0);
}

/* Logo Link Style */
.logo a {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo img:hover {
  opacity: 0.8;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 768px) {
  /* Contact Section Mobile */
  .contact-section {
    padding: 60px 15px 50px;
  }

  /* Header Mobile */
  .contact-header h1 {
    font-size: 36px;
    margin-bottom: 12px;
  }

  .contact-header p {
    font-size: 16px;
  }

  /* Content Grid Mobile */
  .contact-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  /* Info Card Mobile */
  .contact-info {
    padding: 30px;
  }

  .contact-info h2 {
    font-size: 26px;
    margin-bottom: 24px;
  }

  .info-item {
    margin-bottom: 24px;
  }

  .info-icon {
    font-size: 28px;
  }

  .social-links-contact {
    justify-content: center;
  }

  /* Form Mobile */
  .contact-form-wrapper {
    padding: 30px;
  }

  .form-group label {
    font-size: 15px;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 12px 16px;
    font-size: 15px;
  }

  .submit-button {
    padding: 14px 32px;
    font-size: 16px;
  }
}
