/* ==================== CONTACT PAGE SPECIFIC STYLES ==================== */

/* Main Contact Section */
.contact-section {
  padding: 4rem 0;
  background: linear-gradient(to bottom, #f8f9fa 0%, white 100%);
}

.contact-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Contact Grid Layout */
.contact-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

/* Contact Form Container */
.contact-form-wrapper {
  background: white;
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid #e5e7eb;
}

.contact-form-wrapper h2 {
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
  color: #1f2937;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid #f3f4f6;
}

/* Form Status Messages */
.status-message {
  padding: 1.25rem;
  border-radius: 12px;
  margin-bottom: 1.5rem;
  text-align: center;
  border: 2px solid;
}

.status-message.success {
  background: #f0fdf4;
  border-color: #10b981;
  color: #065f46;
}

.status-message.error {
  background: #fef2f2;
  border-color: #ef4444;
  color: #991b1b;
}

.status-message.loading {
  background: #f3f4f6;
  border-color: #d1d5db;
  color: #6b7280;
}

.status-message i {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}

/* Contact Information Sidebar */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.info-item {
  background: white;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  border: 1px solid #e5e7eb;
  display: flex;
  gap: 1rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.info-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: #3b82f6;
  transform: scaleY(0);
  transition: transform 0.3s ease;
}

.info-item:hover {
  transform: translateX(8px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.info-item:hover::before {
  transform: scaleY(1);
}

.info-item i {
  font-size: 1.5rem;
  color: #3b82f6;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #eff6ff;
  border-radius: 10px;
  flex-shrink: 0;
}

.info-content {
  flex: 1;
}

.info-content h3 {
  font-size: 1.125rem;
  color: #1f2937;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.info-content p,
.info-content address {
  font-size: 0.95rem;
  color: #6b7280;
  line-height: 1.5;
  font-style: normal;
}

.info-content a {
  color: #3b82f6;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

.info-content a:hover {
  color: #2563eb;
}

/* Emergency Contact Box */
.info-item.emergency {
  background: linear-gradient(135deg, #fef3c7 0%, #fff 100%);
  border-color: #fbbf24;
}

.info-item.emergency i {
  background: #fef3c7;
  color: #f59e0b;
}

.info-item.emergency .emergency-phone {
  font-size: 1.25rem;
  color: #dc2626;
  font-weight: 700;
}

/* Hero Phone Display */
.hero-phone {
  margin-top: 1.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.2);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.hero-phone a {
  color: white;
  text-decoration: none;
  font-size: 1.25rem;
  font-weight: 600;
}

/* Map Section */
.map-section {
  padding: 3rem 0;
  background: #f9fafb;
}

.map-section h2 {
  text-align: center;
  font-size: 2rem;
  color: #1f2937;
  margin-bottom: 2rem;
}

.map-container {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid #e5e7eb;
}

.map-placeholder {
  padding: 3rem;
  text-align: center;
  background: linear-gradient(135deg, #f3f4f6 0%, white 100%);
}

.map-placeholder i {
  font-size: 3.5rem;
  color: #3b82f6;
  margin-bottom: 1.5rem;
}

.map-placeholder h3 {
  font-size: 1.5rem;
  color: #1f2937;
  margin-bottom: 1rem;
}

.map-placeholder address {
  font-style: normal;
  color: #6b7280;
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.map-iframe {
  border-top: 1px solid #e5e7eb;
}

/* Service Area Section */
.service-area-section {
  background: white;
  padding: 4rem 0;
}

.service-area-section h2 {
  text-align: center;
  font-size: 2rem;
  color: #1f2937;
  margin-bottom: 2rem;
}

.service-area-content {
  max-width: 900px;
  margin: 0 auto;
  background: #f9fafb;
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.service-area-content > p:first-child {
  text-align: center;
  font-size: 1.125rem;
  color: #4b5563;
  margin-bottom: 2rem;
}

.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

.area-item {
  background: white;
  padding: 0.875rem 1.25rem;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
  color: #374151;
  font-weight: 500;
  transition: all 0.2s;
}

.area-item:hover {
  background: #3b82f6;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.area-note {
  text-align: center;
  margin-top: 2rem;
  font-style: italic;
  color: #6b7280;
  padding-top: 1.5rem;
  border-top: 1px solid #e5e7eb;
}

/* FAQ Section */
.faq-section {
  background: linear-gradient(to bottom, #f9fafb 0%, white 100%);
  padding: 4rem 0;
}

.faq-section h2 {
  text-align: center;
  font-size: 2rem;
  color: #1f2937;
  margin-bottom: 3rem;
}

.faq-grid {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  gap: 1.25rem;
}

.faq-item {
  background: white;
  border-radius: 12px;
  padding: 1.75rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  border: 1px solid #e5e7eb;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  padding-left: 3.5rem;
}

.faq-item::before {
  content: 'Q';
  position: absolute;
  left: 1.25rem;
  top: 1.75rem;
  width: 32px;
  height: 32px;
  background: #eff6ff;
  color: #3b82f6;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-size: 1rem;
}

.faq-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

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

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

.faq-item strong {
  color: #374151;
  font-weight: 600;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .contact-info {
    order: -1;
  }
  
  .contact-form-wrapper {
    padding: 1.5rem;
  }
  
  .contact-form-wrapper h2 {
    font-size: 1.5rem;
  }
  
  .info-item {
    padding: 1rem;
    gap: 0.75rem;
  }
  
  .info-item i {
    width: 36px;
    height: 36px;
    font-size: 1.25rem;
  }
  
  .info-content h3 {
    font-size: 1rem;
  }
  
  .areas-grid {
    grid-template-columns: 1fr;
  }
  
  .map-placeholder {
    padding: 2rem 1.5rem;
  }
  
  .service-area-content {
    padding: 1.5rem;
  }
  
  .faq-item {
    padding: 1.25rem;
    padding-left: 3rem;
  }
  
  .hero-phone {
    display: flex;
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .contact-section {
    padding: 2rem 0;
  }
  
  .info-item {
    flex-direction: column;
    text-align: center;
  }
  
  .info-item:hover {
    transform: translateX(0) translateY(-4px);
  }
  
  .areas-grid {
    gap: 0.5rem;
  }
  
  .area-item {
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
  }
}
