/* ===== CONTACT HERO ===== */
.contact-hero {
  padding: 60px 24px 40px;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  animation: fadeUp 1s var(--spring) forwards;
  opacity: 0;
  transform: translateY(20px);
}

.contact-hero h1 {
  font-size: clamp(36px, 6vw, 56px);
  font-weight: 700;
  letter-spacing: -1px;
  line-height: 1.1;
  margin-bottom: 20px;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.contact-hero p {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

/* ===== CONTACT GRID ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 24px 40px;
}

/* Contact Info Cards */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.info-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,0.02);
  transition: all 0.4s var(--spring);
  opacity: 0;
  transform: translateX(-30px);
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.info-card.animate {
  opacity: 1;
  transform: translateX(0);
}

.info-card:hover {
  transform: translateX(8px);
  box-shadow: var(--shadow-md);
}

.info-icon {
  width: 56px;
  height: 56px;
  background: rgba(0,168,107,0.1);
  border-radius: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.info-icon i {
  font-size: 28px;
  color: var(--primary);
}

.info-content h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-tertiary);
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}

.info-content a {
  display: block;
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
  text-decoration: none;
  margin-bottom: 4px;
  transition: color 0.2s;
}

.info-content a:hover {
  color: var(--primary);
}

.info-content p {
  color: var(--text-secondary);
  font-size: 15px;
}

.hours-badge {
  display: inline-block;
  background: rgba(0,168,107,0.08);
  padding: 6px 12px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  margin-top: 8px;
}

/* ===== CONTACT FORM ===== */
.contact-form-container {
  background: white;
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(0,0,0,0.02);
  opacity: 0;
  transform: translateX(30px);
  transition: all 0.6s var(--spring);
}

.contact-form-container.animate {
  opacity: 1;
  transform: translateX(0);
}

.form-header {
  margin-bottom: 28px;
}

.form-header h2 {
  font-size: 28px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.form-header p {
  color: var(--text-secondary);
  font-size: 15px;
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.form-input {
  width: 100%;
  padding: 16px 18px;
  font-size: 16px;
  font-family: 'Inter', sans-serif;
  border: 1.5px solid rgba(0,0,0,0.08);
  border-radius: 16px;
  background: var(--background);
  transition: all 0.2s ease;
  color: var(--text-primary);
}

.form-input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(0,168,107,0.1);
}

.form-input::placeholder {
  color: var(--text-tertiary);
  opacity: 0.6;
}

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

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

.submit-btn {
  width: 100%;
  padding: 18px;
  background: var(--primary-gradient);
  border: none;
  border-radius: 40px;
  font-size: 16px;
  font-weight: 600;
  color: white;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 4px 12px rgba(0,168,107,0.3);
  margin-top: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.submit-btn:active {
  transform: scale(0.98);
  box-shadow: 0 2px 6px rgba(0,168,107,0.3);
}

.submit-btn i {
  font-size: 18px;
  transition: transform 0.2s;
}

.submit-btn:hover i {
  transform: translateX(4px);
}

/* Success message animation */
.success-message {
  background: rgba(0,168,107,0.1);
  border: 1.5px solid var(--primary);
  border-radius: 16px;
  padding: 16px;
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--primary);
  font-weight: 500;
  animation: slideUp 0.4s var(--spring);
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== MAP SECTION ===== */
.map-section {
  max-width: 1200px;
  margin: 20px auto 40px;
  padding: 0 24px;
}

.map-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(0,0,0,0.02);
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s var(--spring);
}

.map-card.animate {
  opacity: 1;
  transform: translateY(0);
}

.map-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.map-header h2 {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-primary);
}

.map-header span {
  background: rgba(0,168,107,0.08);
  padding: 6px 12px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
}

#map {
  height: 300px;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  z-index: 1;
}

/* ===== SOCIAL SECTION ===== */
.social-section {
  max-width: 1200px;
  margin: 0 auto 60px;
  padding: 20px 24px;
  text-align: center;
}

.social-section h2 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--text-primary);
}

.social-grid {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.social-icon {
  width: 60px;
  height: 60px;
  background: white;
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 24px;
  text-decoration: none;
  box-shadow: var(--shadow-sm);
  transition: all 0.4s var(--spring);
  opacity: 0;
  transform: scale(0);
}

.social-icon.animate {
  opacity: 1;
  transform: scale(1);
}

.social-icon:hover {
  transform: translateY(-8px) scale(1.1);
  background: var(--primary);
  color: white;
  box-shadow: var(--shadow-lg);
}

/* ===== FAQ SECTION ===== */
.faq-section {
  max-width: 800px;
  margin: 0 auto 60px;
  padding: 0 24px;
}

.faq-section h2 {
  font-size: 28px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 32px;
  color: var(--text-primary);
}

.faq-item {
  background: white;
  border-radius: var(--radius-md);
  padding: 20px 24px;
  margin-bottom: 12px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,0.02);
  cursor: pointer;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
}

.faq-item.animate {
  opacity: 1;
  transform: translateY(0);
}

.faq-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateX(8px);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  color: var(--text-primary);
  font-size: 16px;
}

.faq-question i {
  color: var(--primary);
  transition: transform 0.3s;
}

.faq-item.active .faq-question i {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  margin-top: 16px;
}

@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

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

  .info-card {
    padding: 20px;
  }

  .contact-form-container {
    padding: 24px;
  }

  .map-header {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }

  #map {
    height: 250px;
  }

  .social-grid {
    gap: 12px;
  }

  .social-icon {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }
}