.map-section { padding: 56px 24px; background: var(--white); }
.map-section h2 { font-size: clamp(26px, 5vw, 38px); font-weight: 800; letter-spacing: -0.02em; margin-bottom: 12px; }
.map-section .map-address { font-size: 14px; color: var(--muted); margin-bottom: 24px; }
.map-section iframe { width: 100%; height: 380px; border: 0; border-radius: 12px; display: block; }
@media (min-width: 1024px) {
  .map-section { padding: 72px 48px; }
}
.contact-section { padding: 56px 24px; }
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    max-width: 1200px;
    margin: 0 auto;
  }
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: var(--black);
  }
.form-group input,
  .form-group select,
  .form-group textarea {
    font-family: var(--font);
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 14px;
    color: var(--black);
    background: var(--white);
    transition: border-color 0.2s, box-shadow 0.2s;
  }
.form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus {
    outline: none;
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.1);
  }
.form-group textarea {
    resize: vertical;
    min-height: 120px;
  }
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }
.info-card {
    background: var(--light-bg);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 24px;
  }
.info-card h3 {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--muted);
    margin-bottom: 12px;
  }
.info-card.phone-card {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.1) 0%, rgba(249, 115, 22, 0.05) 100%);
  }
.info-card.phone-card a {
    font-size: 28px;
    font-weight: 800;
    color: var(--orange);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    letter-spacing: -0.02em;
  }
.info-card.phone-card a:hover {
    text-decoration: underline;
  }
.info-card.phone-card p {
    font-size: 13px;
    color: var(--muted);
    margin-top: 8px;
  }
.info-card p {
    font-size: 14px;
    color: var(--mid);
    line-height: 1.6;
  }
.info-card a {
    color: var(--orange);
    text-decoration: none;
    font-weight: 600;
  }
.info-card a:hover {
    text-decoration: underline;
  }
.emergency-section {
    background: var(--dark);
    color: var(--white);
    padding: 60px 24px;
    text-align: center;
  }
.emergency-section h2 {
    font-size: clamp(28px, 7vw, 52px);
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
  }
.emergency-section .emergency-phone {
    font-size: 36px;
    font-weight: 800;
    color: var(--orange);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
  }
.emergency-section .emergency-phone:hover {
    text-decoration: underline;
  }
.emergency-section p {
    font-size: 16px;
    color: rgba(255,255,255,0.6);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
  }
@media (min-width: 640px) {
  .contact-wrapper { grid-template-columns: 1fr 1fr; gap: 56px; }
}
@media (min-width: 1024px) {
  .contact-section { padding: 72px 48px; }
  .emergency-section { padding: 80px 48px; }
}
