/* Contact Hero */
.contact-hero {
  background: var(--primary-color);
  color: var(--secondary-color);
  padding: 8rem 0 5rem;
  margin-top: 76px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.contact-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
}

.contact-hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
}

.contact-hero-subtitle {
  font-size: 1.2rem;
  opacity: 0.9;
  position: relative;
  z-index: 2;
}

/* Contact Section */
.contact-section {
  padding: 5rem 0;
}

.contact-form-container {
  background: var(--secondary-color);
  padding: 3rem;
  box-shadow: var(--shadow-lg);
}

.form-title {
  color: var(--primary-color);
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 2rem;
  text-align: center;
}

.contact-form .form-label {
  color: var(--text-dark);
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.contact-form .form-control,
.contact-form .form-select {
  border: 2px solid var(--border-color);
  padding: 0.75rem 1rem;
  font-size: 1rem;
  transition: all 0.3s ease;
  border-radius: 0;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(34, 197, 94, 0.25);
}

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

.contact-form .btn {
  width: 100%;
  padding: 1rem;
  font-size: 1.1rem;
  margin-top: 1rem;
}

/* Contact Info */
.contact-info {
  background: var(--secondary-color);
  padding: 3rem 2rem;
  box-shadow: var(--shadow-lg);
  height: fit-content;
}

.info-title {
  color: var(--primary-color);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 2rem;
  text-align: center;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-color);
}

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

.contact-icon {
  width: 50px;
  height: 50px;
  background: var(--primary-color);
  color: var(--secondary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-details h5 {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.contact-details p {
  color: var(--text-light);
  margin: 0;
  line-height: 1.5;
}

.contact-details a {
  color: var(--text-light);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-details a:hover {
  color: var(--primary-color);
}

/* Operating Areas */
.operating-areas {
  padding: 5rem 0;
}

.area-card {
  background: var(--secondary-color);
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: var(--shadow);
  height: 100%;
  transition: all 0.3s ease;
}

.area-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
}

.area-icon {
  width: 70px;
  height: 70px;
  background: var(--primary-color);
  color: var(--secondary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.8rem;
}

.area-card h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-weight: 600;
}

.area-card p {
  color: var(--text-light);
  line-height: 1.6;
}

/* Contact CTA */
.contact-cta {
  background: var(--bg-light);
  padding: 4rem 0;
}

.cta-title {
  color: var(--primary-color);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.cta-description {
  color: var(--text-light);
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.cta-buttons .btn {
  margin: 0.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .contact-hero-title {
    font-size: 2.5rem;
  }

  .contact-form-container {
    padding: 2rem;
  }

  .contact-info {
    padding: 2rem;
    margin-top: 2rem;
  }

  .contact-item {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }

  .contact-icon {
    margin: 0 auto;
  }

  .area-card {
    margin-bottom: 2rem;
  }

  .cta-title {
    font-size: 2rem;
  }

  .cta-buttons .btn {
    display: block;
    width: 100%;
    margin: 0.5rem 0;
  }
}

