@charset "UTF-8";
/* 🏠 [홈] 메인 화면 스타일 */
.hero { text-align: center; padding: 45px 20px; background: white; border-radius: 12px; box-shadow: 0 4px 12px rgba(0,0,0,0.03); margin-bottom: 25px; border: 1px solid #e2e8f0; }
.hero h2 { font-size: 30px; color: #1e3a8a; margin-bottom: 12px; }
.hero p { font-size: 16px; color: #64748b; }

.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; margin-top: 25px; }
.service-box { background: white; padding: 30px 24px; border-radius: 10px; text-align: center; box-shadow: 0 4px 6px rgba(0,0,0,0.02); border-top: 4px solid #1e3a8a; border-left: 1px solid #e2e8f0; border-right: 1px solid #e2e8f0; border-bottom: 1px solid #e2e8f0; }
.service-box h3 { color: #1e3a8a; font-size: 20px; margin-bottom: 10px; }
.service-box p { color: #64748b; font-size: 13.5px; }

/* 📝 [배차/기사등록] 폼 디자인 */
.form-container { max-width: 550px; margin: 0 auto; background: white; padding: 30px; border-radius: 12px; box-shadow: 0 10px 25px rgba(0,0,0,0.05); border: 1px solid #e2e8f0; }
.form-container.large { max-width: 1000px; }
.form-container h2 { color: #1e3a8a; text-align: center; margin-bottom: 20px; font-size: 24px; font-weight: 700; letter-spacing: -0.3px; border-bottom: 2px solid #e2e8f0; padding-bottom: 12px; }
label { display: block; margin: 12px 0 5px; font-weight: bold; font-size: 14px; color: #334155; }
input, select, textarea { width: 100%; padding: 10px; border: 1px solid #cbd5e1; border-radius: 6px; font-size: 15px; background: #fff; color: #334155; }
input:focus, select:focus, textarea:focus { border-color: #3b82f6; outline: none; box-shadow: 0 0 0 3px rgba(59,130,246,0.1); }
textarea { resize: vertical; height: 110px; }

/* 🔒 개인정보 수집 및 동의 영역 스타일 */
.privacy-consent-box { background: #f8fafc; padding: 12px; border-radius: 6px; border: 1px solid #e2e8f0; margin-top: 15px; display: flex; align-items: flex-start; gap: 8px; }
.privacy-consent-box input[type="checkbox"] { width: auto; margin-top: 4px; cursor: pointer; }
.privacy-consent-box label { display: inline; margin: 0; font-size: 14px; color: #475569; font-weight: normal; cursor: pointer; }
.privacy-link { color: #2563eb; font-weight: bold; text-decoration: underline; cursor: pointer; margin-left: 4px; }

.btn-submit { width: 100%; padding: 13px; background: #1e3a8a; color: white; border: none; border-radius: 8px; font-size: 15px; font-weight: bold; cursor: pointer; margin-top: 20px; transition: 0.2s; }
.btn-submit:hover { background: #1d4ed8; }

/* 24시간 공지 카드 */
.business-card-notice { background: #ffffff; border: 2px solid var(--border-color); border-radius: 15px; padding: 25px; margin: 30px 0; text-align: center; box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05); }
.card-header .badge { background: var(--primary-color); color: white; padding: 5px 12px; border-radius: 20px; font-size: 12px; font-weight: bold; }
.card-header h3 { margin: 15px 0 10px 0; color: #1e293b; }
.card-body p { color: var(--text-sub); font-size: 14px; margin-bottom: 20px; line-height: 1.6; }
.contact-box { font-size: 22px; font-weight: 800; color: var(--primary-color); }
.contact-box a { color: var(--primary-color); text-decoration: none; }
