/* Contact Page Styles */

/* Hero Section */
.contact-hero-section {
  background: linear-gradient(135deg, #0F172A 0%, #1E293B 50%, #334155 100%);
  padding: 8rem 0 6rem 0;
  position: relative;
  overflow: hidden;
}

.contact-hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23334155" stroke-width="0.5" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.1;
}

.contact-hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.contact-hero-text {
  text-align: center;
  margin-bottom: 4rem;
}

.contact-hero-text .badge {
  display: inline-block;
  background: linear-gradient(135deg, #C1272D 0%, #A81F24 100%);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.contact-hero-text .hero-heading {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  color: white;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  font-family: 'Inter', sans-serif;
}

.contact-hero-text .hero-description {
  font-size: 1.25rem;
  color: #CBD5E1;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
  font-family: 'Inter', sans-serif;
}

/* Contact Info Cards */
.contact-info-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.contact-info-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.contact-info-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(193, 39, 45, 0.3);
}

.contact-info-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #C1272D 0%, #A81F24 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: white;
}

.contact-info-content h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: white;
  margin-bottom: 0.5rem;
  font-family: 'Inter', sans-serif;
}

.contact-info-content p {
  color: #CBD5E1;
  line-height: 1.5;
  font-family: 'Inter', sans-serif;
}

/* Contact Form Section */
.contact-form-section {
  background: #F8FAFC;
  padding: 6rem 0;
}

.contact-form-wrapper {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
}

.contact-form-content {
  background: white;
  border-radius: 1.5rem;
  padding: 3rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  border: 1px solid #E2E8F0;
}

.contact-form-header {
  text-align: center;
  margin-bottom: 3rem;
}

.contact-form-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #0F172A;
  margin-bottom: 1rem;
  font-family: 'Inter', sans-serif;
}

.contact-form-header p {
  font-size: 1.125rem;
  color: #64748B;
  line-height: 1.6;
  font-family: 'Inter', sans-serif;
}

/* Modern Contact Form */
.modern-contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

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

.form-group label {
  font-size: 0.875rem;
  font-weight: 600;
  color: #374151;
  margin-bottom: 0.5rem;
  font-family: 'Inter', sans-serif;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.875rem 1rem;
  border: 2px solid #E5E7EB;
  border-radius: 0.75rem;
  font-size: 1rem;
  font-family: 'Inter', sans-serif;
  transition: all 0.3s ease;
  background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #C1272D;
  box-shadow: 0 0 0 3px rgba(193, 39, 45, 0.1);
}

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

/* Checkbox Styling */
.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
  font-size: 0.875rem;
  color: #6B7280;
  line-height: 1.5;
  font-family: 'Inter', sans-serif;
}

.checkbox-label input[type="checkbox"] {
  display: none;
}

.checkmark {
  width: 20px;
  height: 20px;
  border: 2px solid #D1D5DB;
  border-radius: 4px;
  position: relative;
  flex-shrink: 0;
  margin-top: 2px;
  transition: all 0.3s ease;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
  background: #C1272D;
  border-color: #C1272D;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
  content: '';
  position: absolute;
  left: 6px;
  top: 2px;
  width: 6px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

/* Submit Button */
.modern-contact-form .subrosa-button {
  margin-top: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  font-size: 1.125rem;
  font-weight: 600;
  border-radius: 0.75rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
}

/* Form Success State */
.form-success {
  text-align: center;
  padding: 2rem;
}

.form-success-icon {
  margin-bottom: 1.5rem;
}

.form-success h3 {
  font-size: 1.875rem;
  font-weight: 700;
  color: #059669;
  margin-bottom: 1rem;
  font-family: 'Inter', sans-serif;
}

.form-success p {
  font-size: 1.125rem;
  color: #6B7280;
  line-height: 1.6;
  margin-bottom: 2rem;
  font-family: 'Inter', sans-serif;
}

/* Responsive Design */
@media (max-width: 768px) {
  .contact-hero-section {
    padding: 6rem 0 4rem 0;
  }
  
  .contact-hero-content {
    padding: 0 1rem;
  }
  
  .contact-info-cards {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .contact-form-section {
    padding: 4rem 0;
  }
  
  .contact-form-wrapper {
    padding: 0 1rem;
  }
  
  .contact-form-content {
    padding: 2rem;
  }
  
  .form-row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .contact-form-header h2 {
    font-size: 2rem;
  }
  
  .contact-form-header p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .contact-hero-text .hero-heading {
    font-size: 2rem;
  }
  
  .contact-hero-text .hero-description {
    font-size: 1rem;
  }
  
  .contact-info-card {
    padding: 1.5rem;
  }
  
  .contact-form-content {
    padding: 1.5rem;
  }
} 