/* Contact Page */
.contact-section {
  padding: 4rem 0;
  background-color: var(--gray-100);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
}

.contact-info {
  background-color: var(--primary-color);
  color: white;
  padding: 2.5rem;
  border-radius: var(--border-radius-lg);
  height: 100%;
}

.contact-info h2 {
  margin-bottom: 2rem;
  font-size: 1.75rem;
}

.info-item {
  display: flex;
  margin-bottom: 1.5rem;
}

.info-item i {
  font-size: 1.5rem;
  color: var(--secondary-color);
  margin-right: 1rem;
  margin-top: 0.25rem;
}

.info-item h3 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.info-item p {
  font-size: 0.95rem;
  opacity: 0.9;
  margin-bottom: 0;
}

.contact-form-container {
  background-color: white;
  padding: 2.5rem;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--box-shadow);
}

.contact-form-container h2 {
  margin-bottom: 2rem;
  font-size: 1.75rem;
}

.contact-form .form-group {
  margin-bottom: 1.5rem;
}

.contact-form .btn {
  width: 100%;
  padding: 0.875rem;
}

/* Form Success */
.form-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3rem 2rem;
}

.form-success i {
  font-size: 4rem;
  color: var(--success);
  margin-bottom: 1.5rem;
}

.form-success h3 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

.form-success p {
  font-size: 1.125rem;
  color: var(--gray-600);
  max-width: 400px;
}

/* Animation */
.contact-info {
  animation: slideInLeft 0.6s ease-out;
}

.contact-form-container {
  animation: slideInRight 0.6s ease-out;
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Responsive Styles */
@media (max-width: 991px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .contact-info {
    padding: 2rem;
  }
  
  .contact-form-container {
    padding: 2rem;
  }
}

@media (max-width: 767px) {
  .contact-section {
    padding: 3rem 0;
  }
  
  .info-item i {
    font-size: 1.25rem;
  }
}

@media (max-width: 576px) {
  .contact-info, 
  .contact-form-container {
    padding: 1.5rem;
  }
  
  .contact-info h2,
  .contact-form-container h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
  }
  
  .form-success i {
    font-size: 3rem;
  }
  
  .form-success h3 {
    font-size: 1.5rem;
  }
  
  .form-success p {
    font-size: 1rem;
  }
}
