/* Contact Hero Section */
.contact-hero {
  height: 50vh;
  background-image: url('../assets/images/hero-bg-contact.jpg');
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}

.contact-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
}

.contact-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 0 20px;
  margin-top: 100px;
}

.contact-content h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.contact-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

/* Contact Section */
.contact-section {
  padding: 5rem 0;
  background-color: #f8f9fa;
}

.contact-container {
  display: flex;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.contact-form {
  flex: 1;
  background: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.contact-form h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #2A2A2A;
}

.form-group {
  margin-bottom: 1.5rem;
  position: relative;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input.error,
.form-group textarea.error {
  border-color: #ff6b6b;
}

.error-message {
  display: block;
  color: #ff6b6b;
  font-size: 0.875rem;
  margin-top: 0.5rem;
  min-height: 1.25rem;
}

.form-status {
  margin: 1rem 0;
  padding: 1rem;
  border-radius: 5px;
  text-align: center;
  font-weight: 500;
}

.form-status.success {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.form-status.error {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

.submit-btn {
  position: relative;
  width: 100%;
  padding: 1rem;
  background-color: #FF6B6B;
  color: white;
  border: none;
  border-radius: 5px;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  overflow: hidden;
}

.submit-btn:disabled {
  background-color: #ff8585;
  cursor: not-allowed;
}

.button-text {
  display: inline-block;
  transition: opacity 0.3s ease;
}

.loading-spinner {
  display: none;
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: white;
  animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
  to {
    transform: translateY(-50%) rotate(360deg);
  }
}

.submit-btn:hover:not(:disabled) {
  background-color: #ff8585;
  transform: translateY(-2px);
}

.contact-info {
  flex: 1;
  background: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact-info h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #2A2A2A;
  text-align: center;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-bottom: 2rem;
}

.info-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.5rem;
  background: #f8f9fa;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.info-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.info-item i {
  font-size: 2rem;
  color: #FF6B6B;
  margin-bottom: 1rem;
}

.info-content h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: #2A2A2A;
}

.info-content p {
  margin-bottom: 0.5rem;
  color: #666;
}

.info-content a {
  color: #666;
  text-decoration: none;
  transition: color 0.3s ease;
}

.info-content a:hover {
  color: #FF6B6B;
}

.social-media {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
}

.social-media a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: #FF6B6B;
  color: white;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.social-media a:hover {
  background-color: #ff8585;
  transform: translateY(-3px);
}

/* Maps Section */
.maps-container {
  max-width: 1200px;
  margin: 3rem auto 0;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.map {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.map h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #2A2A2A;
}

/* Responsive Design */
@media (max-width: 768px) {
  body{
    overflow-y: hidden;
  }
  .contact-container {
    flex-direction: column;
  }

  .info-grid {
    grid-template-columns: 1fr;
  }

  .maps-container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  body{
    overflow-y: hidden;
  }

  .contact-form,
  .contact-info {
    padding: 1.5rem;
  }

  .info-item {
    padding: 1rem;
  }
} 