/* Contact Us Page Styles */

/* Contact Hero Section - Matching Company Page */
.contact-hero {
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  color: #ffffff;
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}

.contact-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('/images/hero.png') center/cover;
  opacity: 0.1;
  z-index: 0;
}

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

.contact-hero .hero-text {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.contact-hero .breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
}

.contact-hero .breadcrumb a {
  color: inherit;
  text-decoration: none;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.contact-hero .breadcrumb a:hover {
  opacity: 1;
}

.contact-hero .breadcrumb-separator {
  opacity: 0.6;
  margin: 0 8px;
}

.contact-hero .breadcrumb-current {
  opacity: 0.9;
}

.contact-hero .hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
  color: #ffffff;
}

.contact-hero .hero-subtitle {
  max-width: 800px;
  margin: 0 auto;
}

.contact-hero .hero-subtitle p {
  font-size: 1.25rem;
  line-height: 1.7;
  margin: 0;
  color: #ffffff;
  opacity: 0.95;
}

/* Contact Information and Form Section */
.contact-info-section {
  background: #ffffff;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

/* Contact Details */
.contact-details .section-title {
  font-size: 2.25rem;
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 32px;
  text-align: left;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.contact-method {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  background: #f8fafc;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.contact-method:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
  border-color: #3b82f6;
}

.contact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: #2563eb;
  color: #ffffff;
  border-radius: 12px;
  flex-shrink: 0;
}

.contact-info h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 8px;
}

.contact-info a {
  color: #2563eb;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.125rem;
  transition: color 0.3s ease;
}

.contact-info a:hover {
  color: #1d4ed8;
}

.contact-info p {
  color: #64748b;
  font-size: 14px;
  margin: 4px 0 0 0;
  line-height: 1.5;
}

/* Contact Form */
.contact-form-wrapper {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  overflow: hidden;
}

.form-header {
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  padding: 32px;
  border-bottom: 1px solid #e2e8f0;
  text-align: center;
}

.form-header h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 8px;
}

.form-header p {
  color: #64748b;
  margin: 0;
  line-height: 1.6;
}

.contact-form {
  padding: 32px;
}

.executive-contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

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

.form-group label {
  font-weight: 600;
  color: #1e293b;
  font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1px solid #cbd5e1;
  border-radius: 12px;
  font-size: 16px;
  transition: all 0.3s ease;
  background: #ffffff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

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

.form-group select {
  cursor: pointer;
}

.submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  color: #ffffff;
  border: none;
  padding: 16px 32px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
}

.submit-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.4);
}

.form-disclaimer {
  font-size: 12px;
  color: #94a3b8;
  text-align: center;
  margin: 16px 0 0 0;
  line-height: 1.4;
}

/* Process Section */
.process-section {
  background: #f8fafc;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 32px;
  margin-top: 48px;
}

.process-step {
  background: #ffffff;
  padding: 32px 24px;
  border-radius: 16px;
  text-align: center;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
  position: relative;
}

.process-step:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  border-color: #3b82f6;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  color: #ffffff;
  border-radius: 50%;
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 24px;
}

.step-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 16px;
}

.step-description {
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

/* Why Choose Section */
.why-choose-section {
  background: #ffffff;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.benefit-item {
  text-align: center;
  padding: 28px 20px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.benefit-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  border-color: #3b82f6;
}

.benefit-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
  color: #ffffff;
  border-radius: 16px;
  margin-bottom: 24px;
}

.benefit-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 12px;
  line-height: 1.4;
}

.benefit-description {
  color: #64748b;
  line-height: 1.5;
  margin: 0;
  font-size: 0.95rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  
  .contact-details .section-title {
    text-align: center;
  }
  
  .process-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
  }
  
  .contact-hero .hero-title {
    font-size: 2.5rem;
  }
  
  .contact-hero .hero-subtitle p {
    font-size: 1.125rem;
  }
}

@media (max-width: 768px) {
  .contact-hero {
    padding: 100px 0 60px;
  }
  
  .contact-hero .hero-title {
    font-size: 2.25rem;
  }
  
  .contact-hero .hero-subtitle p {
    font-size: 1rem;
  }
  
  .form-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .contact-form {
    padding: 24px;
  }
  
  .form-header {
    padding: 24px;
  }
  
  .contact-method {
    padding: 20px;
  }
  
  .process-step {
    padding: 24px 20px;
  }
  
  .benefit-item {
    padding: 24px 20px;
  }
  
  .benefits-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .contact-hero .hero-title {
    font-size: 2rem;
  }
  
  .contact-details .section-title {
    font-size: 1.875rem;
  }
  
  .contact-method {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }
  
  .step-number {
    width: 48px;
    height: 48px;
    font-size: 1.25rem;
  }
  
  .benefit-icon {
    width: 48px;
    height: 48px;
  }
}