/* Contact Page Styles */
.contact-page {
  padding: 120px 0 80px;
  min-height: 100vh;
}

/* Hero Section */
.contact-hero {
  text-align: center;
  margin-bottom: 80px;
}

.contact-hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.contact-title {
  font-size: 48px;
  font-weight: 700;
  color: #18181b;
  margin-bottom: 20px;
  line-height: 1.2;
}

.contact-subtitle {
  font-size: 20px;
  color: #6b7280;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

/* Contact Content */
.contact-content {
  margin-bottom: 60px;
}

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

/* Contact Form */
.contact-form-section {
  background: #ffffff;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  border: 1px solid #e5e7eb;
}

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

.form-header h2 {
  font-size: 28px;
  font-weight: 600;
  color: #18181b;
  margin-bottom: 8px;
}

.form-header p {
  color: #6b7280;
  font-size: 16px;
}

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

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

.form-group label {
  font-weight: 500;
  color: #374151;
  font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  font-size: 16px;
  transition: all 0.2s ease;
  background: #ffffff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #10B981;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
  font-family: inherit;
}

.submit-btn {
  background: linear-gradient(135deg, #10B981 0%, #059669 100%);
  color: white;
  border: none;
  padding: 16px 32px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 8px;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
}

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

/* Contact Information */
.contact-info-section {
  background: #f9fafb;
  padding: 40px;
  border-radius: 16px;
  border: 1px solid #e5e7eb;
}

.contact-info-header {
  margin-bottom: 32px;
}

.contact-info-header h2 {
  font-size: 28px;
  font-weight: 600;
  color: #18181b;
  margin-bottom: 8px;
}

.contact-info-header p {
  color: #6b7280;
  font-size: 16px;
}

.contact-info-grid {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-bottom: 40px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: #ecfdf5;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-details h3 {
  font-size: 18px;
  font-weight: 600;
  color: #18181b;
  margin-bottom: 4px;
}

.contact-details a {
  color: #10B981;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.contact-details a:hover {
  color: #059669;
}

.contact-details p {
  color: #6b7280;
  font-size: 14px;
  margin-top: 4px;
}

/* Business Hours */
.business-hours {
  margin-bottom: 32px;
  padding: 24px;
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
}

.business-hours h3 {
  font-size: 18px;
  font-weight: 600;
  color: #18181b;
  margin-bottom: 16px;
}

.hours-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hours-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid #f3f4f6;
}

.hours-item:last-child {
  border-bottom: none;
}

.hours-item span:first-child {
  font-weight: 500;
  color: #374151;
}

.hours-item span:last-child {
  color: #6b7280;
  font-size: 14px;
}

/* Social Links */
.contact-socials h3 {
  font-size: 18px;
  font-weight: 600;
  color: #18181b;
  margin-bottom: 16px;
}

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

.social-links a {
  width: 44px;
  height: 44px;
  background: #ffffff;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.social-links a:hover {
  border-color: #10B981;
  background: #ecfdf5;
  transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 992px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .contact-title {
    font-size: 36px;
  }
  
  .contact-subtitle {
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .contact-page {
    padding: 100px 0 60px;
  }
  
  .contact-hero {
    margin-bottom: 60px;
  }
  
  .contact-title {
    font-size: 32px;
  }
  
  .contact-subtitle {
    font-size: 16px;
  }
  
  .contact-form-section,
  .contact-info-section {
    padding: 24px;
  }
  
  .form-header h2,
  .contact-info-header h2 {
    font-size: 24px;
  }
  
  .contact-info-grid {
    gap: 24px;
  }
  
  .contact-info-item {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }
  
  .contact-icon {
    align-self: center;
  }
  
  .hours-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
  
  .social-links {
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .contact-page {
    padding: 80px 0 40px;
  }
  
  .contact-title {
    font-size: 28px;
  }
  
  .contact-form-section,
  .contact-info-section {
    padding: 20px;
  }
  
  .submit-btn {
    padding: 14px 24px;
    font-size: 14px;
  }
}
