/* Contact Page Specific Styles */

/* Page Header */
.page-header {
  padding: 80px 60px 60px;
  background: linear-gradient(135deg, #fff5f2 0%, #ffffff 100%);
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.page-header h1 {
  font-size: 48px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.page-header p {
  font-size: 18px;
  color: var(--text);
  max-width: 700px;
  margin: 0 auto;
}

/* Contact Section */
.contact-section {
  padding: 80px 60px;
  max-width: 1400px;
  margin: 0 auto;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
}

/* Contact Info */
.contact-info h2 {
  font-size: 32px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 24px;
}

.contact-info p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 40px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px;
  background: #fafafa;
  border-radius: 12px;
  margin-bottom: 20px;
  transition: var(--transition);
}

.contact-item:hover {
  background: linear-gradient(135deg, #fff5f2 0%, #ffffff 100%);
  transform: translateX(8px);
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}

.contact-details h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.contact-details p {
  font-size: 15px;
  color: var(--text);
  margin: 0;
}

/* Social Links */
.social-links {
  display: flex;
  gap: 16px;
  margin-top: 40px;
}

.social-link {
  width: 50px;
  height: 50px;
  background: white;
  border: 2px solid var(--border);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transition: var(--transition);
}

.social-link:hover {
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  border-color: transparent;
  color: white;
  transform: translateY(-4px);
}

/* Contact Form */
.contact-form {
  background: white;
  padding: 48px;
  border-radius: 16px;
  box-shadow: var(--shadow-md);
}

.contact-form h2 {
  font-size: 28px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 32px;
}

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

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

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid var(--border);
  border-radius: 8px;
  font-size: 15px;
  font-family: inherit;
  color: var(--text-dark);
  transition: var(--transition);
  background: #fafafa;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--accent);
  background: white;
  box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.1);
}

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

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

.form-submit {
  width: 100%;
  padding: 16px 32px;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  color: white;
  font-size: 16px;
  font-weight: 600;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.form-submit:active {
  transform: translateY(0);
}

/* Map Section */
.map-section {
  padding: 80px 60px;
  background: #fafafa;
}

.map-container {
  max-width: 1400px;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height: 450px;
  background: #e0e0e0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  font-size: 18px;
}

/* Success Message */
.success-message {
  display: none;
  padding: 20px;
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
  border-radius: 8px;
  margin-bottom: 24px;
  text-align: center;
  font-weight: 500;
}

.success-message.show {
  display: block;
}

/* Responsive */
@media (max-width: 768px) {
  .page-header {
    padding: 60px 20px 40px;
  }
  
  .page-header h1 {
    font-size: 32px;
  }
  
  .contact-section {
    padding: 60px 20px;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .contact-form {
    padding: 32px 24px;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .map-section {
    padding: 60px 20px;
  }
  
  .map-container {
    height: 350px;
  }
}
