/* ---------------------------------------------
   1번렌트카 — 사고대차 안내 페이지
--------------------------------------------- */

.accident-hero {
  background:
    linear-gradient(100deg, rgba(10,25,48,0.93) 0%, rgba(10,25,48,0.75) 45%, rgba(10,25,48,0.45) 100%),
    url('images/accident-hero.jpg') center/cover no-repeat !important;
}

.accident-section { padding: 64px 0 96px; }

.accident-block { margin-bottom: 64px; }

.accident-title {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--navy);
  margin: 0 0 24px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--line);
}

.accident-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font-size: 0.95rem;
  flex-shrink: 0;
}

.accident-body {
  color: var(--steel);
  font-size: 1rem;
  line-height: 1.8;
  max-width: 700px;
}

.perk-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.perk-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 22px;
}

.perk-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 16px;
}

.perk-icon svg { width: 100%; height: 100%; }

.perk-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 8px;
}

.perk-card p {
  color: var(--steel);
  font-size: 0.9rem;
  margin: 0;
}

.flow-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}

.flow-step {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 14px;
  text-align: center;
}

.flow-no {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--amber);
  color: #fff;
  font-weight: 800;
  font-size: 0.9rem;
  margin-bottom: 12px;
}

.flow-step p {
  font-size: 0.85rem;
  color: var(--navy);
  font-weight: 600;
  margin: 0;
}

.pay-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.pay-card {
  background: #fff;
  border: 1px solid var(--line);
  border-left: 4px solid var(--amber);
  border-radius: var(--radius);
  padding: 24px;
}

.pay-card h3 {
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 10px;
}

.pay-card p {
  color: var(--steel);
  font-size: 0.9rem;
  margin: 0;
}

.pay-card ul {
  margin: 0;
  padding-left: 18px;
  color: var(--steel);
  font-size: 0.9rem;
  line-height: 1.7;
}

.accident-notice {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
}

.accident-sub {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin: 32px 0 14px;
}

.accident-table {
  width: 100%;
  max-width: 560px;
  border-collapse: collapse;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.accident-table th,
.accident-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--line);
  font-size: 0.92rem;
  text-align: left;
}

.accident-table th {
  background: var(--paper);
  color: var(--navy);
  font-weight: 700;
}

.accident-table td { color: var(--steel); }

.accident-footnote {
  color: rgba(91,112,137,0.8);
  font-size: 0.82rem;
  margin: 10px 0 0;
}

.accident-cta {
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: #fff;
  padding: 48px 0;
}

.accident-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.accident-cta h2 {
  font-size: 1.3rem;
  font-weight: 800;
  margin: 0 0 6px;
}

.accident-cta p {
  color: rgba(255,255,255,0.7);
  margin: 0;
  font-size: 0.92rem;
}

@media (max-width: 760px) {
  .flow-grid { grid-template-columns: repeat(3, 1fr); }
  .pay-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .flow-grid { grid-template-columns: repeat(2, 1fr); }
  .perk-grid { grid-template-columns: 1fr; }
}

/* ---------- 공용: 웨딩카/공항픽업 페이지에서도 사용 ---------- */

.info-list {
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.info-list li {
  color: var(--steel);
  font-size: 0.92rem;
  line-height: 1.6;
}

.info-list li strong {
  color: var(--navy);
  font-weight: 700;
}

.course-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.course-row:last-of-type { border-bottom: none; }

.course-badge {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 34px;
  border-radius: 999px;
  background: var(--navy);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
}

.course-path {
  color: var(--steel);
  font-size: 0.92rem;
}

.service-type-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.service-type-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
}

.service-type-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--amber-deep);
  margin: 0 0 10px;
}

.service-type-card p {
  color: var(--steel);
  font-size: 0.9rem;
  margin: 0;
  line-height: 1.6;
}

.car-rate-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-bottom: 16px;
}

.car-rate-card h3 {
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 14px;
}

.car-rate-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 10px;
}

.car-rate-row div {
  font-size: 0.85rem;
  color: var(--steel);
}

.car-rate-row strong {
  display: block;
  color: var(--navy);
  font-weight: 700;
  font-size: 0.95rem;
  margin-top: 2px;
}

@media (max-width: 600px) {
  .flow-grid[style] { grid-template-columns: repeat(2, 1fr) !important; }
}

.phone-callout {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 24px;
  padding: 24px 28px;
  border-radius: 8px;
  background: linear-gradient(100deg, var(--navy) 0%, var(--navy-deep) 100%);
  box-shadow: 0 8px 24px rgba(18,38,63,0.25);
}

.phone-callout-icon {
  flex: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--amber);
  display: flex;
  align-items: center;
  justify-content: center;
}

.phone-callout-icon svg { width: 24px; height: 24px; }

.phone-callout h3 {
  color: #fff;
  font-size: 1.05rem;
  font-weight: 800;
  margin: 0 0 6px;
}

.phone-callout p {
  color: rgba(255,255,255,0.75);
  font-size: 0.88rem;
  margin: 0;
}

.phone-callout-text { flex: 1; min-width: 220px; }

.phone-callout .btn {
  flex-shrink: 0;
  white-space: nowrap;
}


