/* Contact Page Specific Styles */
.contact-hero {
  background: linear-gradient(135deg, #0b5aaa, #06b6d4);
  color: white;
  padding: 120px 0 80px;
  text-align: center;
}

.contact-hero .hero-content h1 {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 20px;
}

.contact-hero .hero-content p {
  font-size: 1.25rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
}

.contact-content {
  padding: 80px 0;
  background-color: #f9fafb;
}

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

/* Contact Form Section */
.contact-form-section {
  background: white;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.form-card {
  padding: 40px;
}

.form-header {
  margin-bottom: 30px;
  text-align: center;
}

.form-header h2 {
  font-size: 2rem;
  font-weight: bold;
  color: #1f2937;
  margin-bottom: 10px;
}

.form-header p {
  color: #6b7280;
  font-size: 1.125rem;
}

.contact-form .form-group {
  margin-bottom: 25px;
}

.contact-form label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #374151;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 16px;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background-color: #ffffff;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #0b5aaa;
  box-shadow: 0 0 0 4px rgba(20, 184, 166, 0.1);
  transform: translateY(-1px);
}

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

.btn-loading {
  display: none;
}

.btn-loading.active {
  display: inline-flex;
}

.btn-loading.active + .btn-text {
  display: none;
}

/* Contact Info Section */
.contact-info-section {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.info-card {
  background: white;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  border-left: 4px solid #0b5aaa;
}

.info-card h3 {
  font-size: 1.25rem;
  font-weight: bold;
  color: #1f2937;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.info-card h3 i {
  color: #0b5aaa;
  font-size: 1.125rem;
}

.location {
  margin-bottom: 25px;
}

.location:last-child {
  margin-bottom: 0;
}

.location h4 {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 8px;
}

.location p {
  color: #6b7280;
  line-height: 1.6;
}

.contact-method {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

.contact-method:last-child {
  margin-bottom: 0;
}

.contact-method i {
  color: #0b5aaa;
  font-size: 1.125rem;
  margin-top: 2px;
  width: 20px;
  flex-shrink: 0;
}

.contact-method strong {
  display: block;
  color: #1f2937;
  font-weight: 600;
  margin-bottom: 4px;
}

.contact-method p {
  color: #6b7280;
  margin: 0;
}

.hours {
  margin-bottom: 15px;
}

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

.hour-row:last-child {
  border-bottom: none;
}

.hour-row span:first-child {
  font-weight: 500;
  color: #374151;
}

.hour-row span:last-child {
  color: #6b7280;
}

.hours-note {
  color: #6b7280;
  font-size: 0.875rem;
  font-style: italic;
  margin: 0;
}

.quick-actions {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.quick-action {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.quick-action i {
  color: #0b5aaa;
  font-size: 1.125rem;
  margin-top: 2px;
  width: 20px;
  flex-shrink: 0;
}

.quick-action strong {
  display: block;
  color: #1f2937;
  font-weight: 600;
  margin-bottom: 4px;
}

.quick-action p {
  color: #6b7280;
  margin: 0;
  font-size: 0.875rem;
}

/* FAQ Section */
.faq-section {
  padding: 80px 0;
  background-color: #ffffff;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.faq-card {
  background: #f9fafb;
  padding: 30px;
  border-radius: 12px;
  border-left: 4px solid #0b5aaa;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.faq-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.faq-card h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 15px;
}

.faq-card p {
  color: #6b7280;
  line-height: 1.6;
  margin: 0;
}

/* Form Validation States */
.form-group input.valid,
.form-group select.valid,
.form-group textarea.valid {
  border-color: #10b981;
  box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.1);
}

.form-group input.invalid,
.form-group select.invalid,
.form-group textarea.invalid {
  border-color: #ef4444;
  box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.1);
}

.error-message {
  display: block;
  color: #ef4444;
  font-size: 0.875rem;
  margin-top: 8px;
  font-weight: 500;
}

.form-message {
  padding: 16px 20px;
  border-radius: 12px;
  margin-bottom: 25px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
}

.form-message.success {
  background-color: #d1fae5;
  color: #065f46;
  border: 1px solid #a7f3d0;
}

.form-message.error {
  background-color: #fee2e2;
  color: #991b1b;
  border: 1px solid #fca5a5;
}

.form-message i {
  font-size: 1.125rem;
}

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

  .contact-info-section {
    order: -1;
  }
}

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

  .form-card {
    padding: 30px 20px;
  }

  .info-card {
    padding: 25px 20px;
  }

  .contact-method {
    flex-direction: column;
    gap: 8px;
  }

  .quick-action {
    flex-direction: column;
    gap: 8px;
  }

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

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

  .form-header h2 {
    font-size: 1.75rem;
  }

  .hour-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
}
