/* Contact Hero Section */
.contact-hero {
  position: relative;
  height: 400px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

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

.contact-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 2;
}

.contact-hero-content {
  position: relative;
  z-index: 3;
  color: white;
  max-width: 800px;
  padding: 0 20px;
}

.contact-hero-content h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  animation: fadeInUp 1s ease;
}

.contact-hero-content p {
  font-size: 1.3rem;
  opacity: 0.95;
  animation: fadeInUp 1s ease 0.2s both;
}

/* Contact Main Section */
.contact-main-section {
  padding: 80px 20px;
  background: #f9fafb;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  max-width: 1400px;
  margin: 0 auto;
}

/* Contact Info Side */
.contact-info-side h2 {
  font-size: 2.5rem;
  color: #2d3748;
  margin-bottom: 20px;
  font-weight: 700;
}

.contact-intro {
  font-size: 1.1rem;
  color: #718096;
  margin-bottom: 40px;
  line-height: 1.7;
}

.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-bottom: 40px;
}

.contact-card {
  display: flex;
  gap: 20px;
  padding: 25px;
  background: white;
  border-radius: 12px;
  border: 2px solid #e2e8f0;
  transition: all 0.3s ease;
}

.contact-card:hover {
  border-color: #667eea;
  transform: translateX(5px);
  box-shadow: 0 5px 20px rgba(102, 126, 234, 0.15);
}

.contact-icon {
  font-size: 2.5rem;
  min-width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 12px;
}

.contact-icon span {
  font-size: 2rem;
  line-height: 1;
}

.contact-details h3 {
  font-size: 1.3rem;
  color: #2d3748;
  margin-bottom: 10px;
  font-weight: 600;
}

.contact-details p {
  color: #4a5568;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 5px;
}

.contact-details a {
  color: #667eea;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.contact-details a:hover {
  color: #764ba2;
  text-decoration: underline;
}

.availability {
  font-size: 0.9rem;
  color: #a0aec0;
  font-style: italic;
}

.chat-btn {
  margin-top: 10px;
  padding: 8px 20px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}

.chat-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

/* Social Connect */
.social-connect {
  margin-top: 40px;
  padding: 30px;
  background: white;
  border-radius: 12px;
  border: 2px solid #e2e8f0;
}

.social-connect h3 {
  font-size: 1.4rem;
  color: #2d3748;
  margin-bottom: 20px;
  font-weight: 600;
}

.social-links-contact {
  display: flex;
  gap: 15px;
}

.social-btn {
  width: 50px;
  height: 50px;
  background: #f7fafc;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  border: 2px solid #e2e8f0;
}

.social-btn:hover {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

.social-btn img {
  width: 24px;
  height: 24px;
  transition: all 0.3s ease;
}

.social-btn:hover img {
  filter: brightness(0) invert(1);
}

/* Contact Form Side */
.form-container-contact {
  background: white;
  padding: 50px;
  border-radius: 15px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.form-container-contact h2 {
  font-size: 2.2rem;
  color: #2d3748;
  margin-bottom: 10px;
  font-weight: 700;
}

.form-subtitle {
  font-size: 1rem;
  color: #718096;
  margin-bottom: 35px;
}

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

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

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

.form-group label {
  font-size: 0.95rem;
  color: #4a5568;
  margin-bottom: 8px;
  font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 14px 16px;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.3s ease;
  font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.checkbox-group {
  flex-direction: row;
  align-items: flex-start;
  gap: 10px;
}

.checkbox-group input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  cursor: pointer;
}

.checkbox-label {
  font-size: 0.9rem;
  color: #4a5568;
  margin-bottom: 0;
  cursor: pointer;
}

.submit-contact-btn {
  padding: 16px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 10px;
}

.submit-contact-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}

/* Map Section */
.map-section {
  padding: 80px 20px;
  background: white;
}

.map-container {
  max-width: 1200px;
  margin: 0 auto;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

/* FAQ Section */
.faq-section {
  padding: 80px 20px;
  background: #f9fafb;
}

.section-title {
  text-align: center;
  font-size: 2.8rem;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 15px;
}

.section-subtitle {
  text-align: center;
  font-size: 1.2rem;
  color: #718096;
  margin-bottom: 60px;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.faq-item {
  background: white;
  padding: 30px;
  border-radius: 12px;
  border: 2px solid #e2e8f0;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: #667eea;
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.faq-item h3 {
  font-size: 1.3rem;
  color: #2d3748;
  margin-bottom: 15px;
  font-weight: 600;
}

.faq-item p {
  color: #4a5568;
  line-height: 1.7;
  font-size: 1rem;
}

/* CTA Section */
.contact-cta {
  padding: 80px 20px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  text-align: center;
  color: white;
}

.contact-cta h2 {
  font-size: 2.8rem;
  margin-bottom: 20px;
  font-weight: 700;
}

.contact-cta p {
  font-size: 1.2rem;
  margin-bottom: 35px;
  opacity: 0.95;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-primary,
.cta-secondary {
  padding: 15px 40px;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid white;
}

.cta-primary {
  background: white;
  color: #667eea;
}

.cta-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

.cta-secondary {
  background: transparent;
  color: white;
}

.cta-secondary:hover {
  background: white;
  color: #667eea;
  transform: translateY(-3px);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .contact-hero-content h1 {
    font-size: 2.5rem;
  }

  .contact-hero-content p {
    font-size: 1.1rem;
  }

  .form-container-contact {
    padding: 30px 20px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }

  .contact-info-side h2 {
    font-size: 2rem;
  }

  .form-container-contact h2 {
    font-size: 1.8rem;
  }

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

  .social-links-contact {
    flex-wrap: wrap;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .cta-primary,
  .cta-secondary {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .contact-hero-content h1 {
    font-size: 2rem;
  }

  .contact-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .contact-details {
    text-align: center;
  }
}


/* Fix footer contact icon size */
.footer-contact .contact-icon {
  font-size: 1.2rem !important;
  min-width: auto !important;
  width: auto !important;
  height: auto !important;
  background: none !important;
  border-radius: 0 !important;
  display: inline !important;
  margin-right: 8px;
}
