/* Contact Hero */
.contact-hero {
  background: linear-gradient(135deg, var(--bs-primary) 0%, var(--bs-primary-dark) 100%);
  padding: 5rem 0 4rem;
  text-align: center;
  color: #fff;
}

.contact-hero-title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
  text-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.contact-hero-subtitle {
  font-size: 1.2rem;
  font-weight: 300;
  opacity: 0.95;
  max-width: 600px;
  margin: 0 auto;
}

/* Office Info Card */
.office-info-card {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  border-radius: 16px;
  padding: 3rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  border-left: 4px solid var(--bs-primary);
}

.office-title {
  font-size: 2rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--bs-primary);
}

.office-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.office-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-size: 1.05rem;
  color: #555;
}

.office-item i {
  color: var(--bs-primary);
  font-size: 1.3rem;
  min-width: 24px;
  margin-top: 0.2rem;
}

/* Contact Form Card */
.contact-form-card {
  background: #fff;
  border-radius: 16px;
  padding: 3rem;
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.form-title {
  font-size: 2rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 2rem;
  text-align: center;
}

.contact-form-card .form-control {
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  padding: 0.75rem 1.25rem;
  transition: all 0.3s ease;
}

.contact-form-card .form-control:focus {
  border-color: var(--bs-primary);
  box-shadow: 0 0 0 0.2rem rgba(46, 204, 113, 0.15);
}

.contact-form-card .form-control::placeholder {
  color: #999;
}

.contact-form-card .btn-primary {
  background: linear-gradient(135deg, var(--bs-primary) 0%, var(--bs-primary-dark) 100%);
  border: none;
  border-radius: 50px;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(46, 204, 113, 0.3);
}

.contact-form-card .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(46, 204, 113, 0.4);
}

/* Responsive */
@media (max-width: 768px) {
  .contact-hero-title {
    font-size: 2rem;
  }
  
  .office-info-card {
    padding: 2rem;
  }
  
  .contact-form-card {
    padding: 2rem;
  }
  
  .office-title,
  .form-title {
    font-size: 1.5rem;
  }
}
