/* ======================
   Contact Page Styles
   ====================== */

/* Contact Hero */
.contact-hero {
  background: var(--sand);
  padding: var(--spacing-lg) 0;
  text-align: center;
  color: var(--white);
}

.contact-hero h1 {
  margin-bottom: 1rem;
  color: var(--white);
}

.contact-hero p {
  font-size: 1.125rem;
  max-width: 600px;
  margin: 0 auto;
  color: var(--white);
}

/* Contact Layout */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-lg);
  padding: var(--spacing-lg) 0;
}

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

/* Contact Info */
.contact-info-section {
  padding: 2rem;
}

.contact-info-section h2 {
  color: var(--navy);
  margin-bottom: 2rem;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-info-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.contact-icon {
  width: 56px;
  height: 56px;
  min-width: 56px;
  background: var(--aqua);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.contact-info-content h3 {
  color: var(--navy);
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

.contact-info-content p {
  color: var(--slate);
  margin-bottom: 0.25rem;
}

.contact-info-content a {
  color: var(--aqua);
  font-weight: 600;
  transition: color var(--transition-base);
}

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

/* Business Hours */
.business-hours {
  margin-top: 3rem;
  padding: 2rem;
  background: var(--sand);
  border-radius: var(--border-radius-lg);
}

.business-hours h3 {
  color: var(--navy);
  margin-bottom: 1.5rem;
}

.hours-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.hours-item {
  display: flex;
  justify-content: space-between;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--gray-200);
}

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

.hours-day {
  font-weight: 600;
  color: var(--navy);
}

.hours-time {
  color: var(--slate);
}

.hours-item.closed .hours-time {
  color: var(--slate);
  font-style: italic;
}

/* Response SLA */
.response-sla {
  margin-top: 2rem;
  padding: 1.5rem;
  background: rgba(28, 176, 246, 0.1);
  border-left: 4px solid var(--aqua);
  border-radius: var(--border-radius);
}

.response-sla p {
  color: var(--navy);
  font-weight: 600;
  margin: 0;
}

/* Contact Form */
.contact-form-section {
  background: var(--white);
  padding: 3rem;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
}

.contact-form-section h2 {
  color: var(--navy);
  margin-bottom: 2rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

@media (max-width: 640px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.required-indicator {
  color: #DC2626;
  margin-left: 0.25rem;
}

.form-help {
  font-size: 0.875rem;
  color: var(--slate);
  margin-top: 0.25rem;
}

.file-upload-wrapper {
  position: relative;
}

.file-upload-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1.5rem;
  border: 2px dashed var(--gray-300);
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: all var(--transition-base);
  background: var(--gray-50);
  color: var(--slate);
}

.file-upload-label:hover {
  border-color: var(--aqua);
  background: rgba(28, 176, 246, 0.05);
  color: var(--navy);
}

.file-upload-label svg {
  width: 24px;
  height: 24px;
}

input[type="file"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.file-name {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: var(--aqua);
  font-weight: 600;
}

.form-submit {
  margin-top: 1rem;
}

.form-submit .btn {
  width: 100%;
}

/* Map Section */
.map-section {
  margin-top: var(--spacing-xl);
  padding: var(--spacing-lg) 0;
  background: var(--sand);
}

.map-wrapper {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  height: 450px;
  background: var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--slate);
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Social Links */
.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.social-link {
  width: 48px;
  height: 48px;
  background: var(--sand);
  color: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  transition: all var(--transition-base);
}

.social-link:hover {
  background: var(--aqua);
  color: var(--white);
  transform: translateY(-4px);
}

/* Success Message */
.success-message {
  background: #D1FAE5;
  border: 2px solid #10B981;
  border-radius: var(--border-radius-lg);
  padding: 2rem;
  margin-bottom: 2rem;
  text-align: center;
}

.success-message svg {
  width: 64px;
  height: 64px;
  color: #10B981;
  margin: 0 auto 1rem;
}

.success-message h3 {
  color: #065F46;
  margin-bottom: 1rem;
}

.success-message p {
  color: #047857;
  margin-bottom: 0;
}





