/* quote.css - 견적서 페이지 스타일 */

/* ===================== */
/* 안내 문구              */
/* ===================== */
.quote-intro {
    margin-top: 40px;
}

.notice-text {
    font-size: 0.9rem;
    color: #e53e3e;
}

/* ===================== */
/* 빠른 접수 배너         */
/* ===================== */
.quick-contact-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 16px 0 24px;
    padding: 11px 18px;
    background: linear-gradient(135deg, #1e3a5f 0%, #2d5a8e 100%);
    border-radius: 10px;
    font-size: 0.88rem;
    color: #c9dff5;
    box-shadow: 0 3px 10px rgba(30, 58, 95, 0.2);
}

.quick-contact-icon {
    font-size: 1rem;
    flex-shrink: 0;
}

.quick-contact-banner strong {
    font-size: 0.95rem;
    letter-spacing: 0.03em;
    color: #fff;
}

.quick-contact-banner a {
    color: inherit;
    text-decoration: none;
}

.quick-contact-banner a:hover strong {
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* ===================== */
/* 수신 방법 선택 UI      */
/* ===================== */
.delivery-options {
    display: flex;
    gap: 12px;
}

/* 카드 직접 클릭으로 선택/해제 */
.delivery-card {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 14px 10px;
    border: 2px solid var(--border-gray);
    border-radius: 10px;
    background: var(--bg-white);
    cursor: pointer;
    user-select: none;
    transition: border-color 0.15s, background 0.15s, box-shadow 0.15s;
    text-align: center;
    position: relative;
}

.delivery-card:hover {
    border-color: #a0c4f1;
    background: #f0f7ff;
}

.delivery-card.selected {
    border-color: var(--light-blue);
    background: var(--brand-light);
    box-shadow: 0 0 0 1px var(--light-blue);
}

/* 선택됐을 때 우상단 체크 배지 */
.delivery-card.selected::after {
    content: '✓';
    position: absolute;
    top: 6px;
    right: 8px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--light-blue);
}

.delivery-card:hover {
    border-color: var(--light-blue);
    background: var(--brand-light);
}

.delivery-icon {
    font-size: 1.6rem;
    line-height: 1;
}

.delivery-label {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-primary);
}

.delivery-desc {
    font-size: 0.75rem;
    color: var(--text-secondary);
}

/* ===================== */
/* 계약기간 선택 UI      */
/* ===================== */
.contract-options {
    display: flex;
    gap: 12px;
}

.contract-card {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 14px 10px;
    border: 1.5px solid #dde3ec;
    border-radius: 10px;
    background: #fff;
    cursor: pointer;
    position: relative;
    transition: border-color 0.15s, background 0.15s;
}

.contract-card input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.contract-card:has(input:checked) {
    border-color: var(--light-blue);
    background: var(--brand-light);
    box-shadow: 0 0 0 1px var(--light-blue);
}

.contract-card:has(input:checked)::after {
    content: '✓';
    position: absolute;
    top: 6px;
    right: 8px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--light-blue);
}

.contract-card:not(.contract-card--fixed):hover {
    border-color: #a0c4f1;
    background: #f0f7ff;
}


.contract-label {
    font-weight: 700;
    font-size: 1rem;
    color: var(--text-primary);
}

.contract-desc {
    font-size: 0.75rem;
    color: var(--text-secondary);
}

/* ===================== */
/* 공통 CSS 변수         */
/* ===================== */
:root {
  --main-blue: #1e3a5f;
  --light-blue: #4a90e2;
  --light-gray: #f8f9fa;
  --border-gray: #e9ecef;
  --text-primary: #333;
  --text-secondary: #666;
  --border-light: #ddd;
  --bg-white: #fff;
  --bg-light: #f8f9fa;
  --hover-bg: #f1f3f4;
  --brand-light: #e3f2fd;
  --brand-secondary: #1565c0;
  --error-color: #dc3545;
  --success-color: #28a745;
  --hover-primary: #1565c0;
  --success-hover: #218838;
  --error-hover: #c82333;
  --text-muted: #6c757d;
  --border-color: #dee2e6;
}

/* ===================== */
/* Hero Section          */
/* ===================== */
.hero-background {
    background-image: url('/images/quote.png');
}

/* 견적서 폼 스타일 */
.quote-form {
    max-width: 600px;
    margin: 0 auto;
    padding: 40px;
    background-color: var(--bg-white);
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    text-align: left;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-primary);
    text-align: left;
}

.form-group input[type="number"]::-webkit-inner-spin-button,
.form-group input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
.form-group input[type="number"] {
    -moz-appearance: textfield;
}

.form-group input[type="text"],
.form-group input[type="number"],
.form-group input[type="tel"],
.form-group input[type="email"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-light);
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
    text-align: left;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
    font-family: inherit;
}

.form-group input[type="text"]:focus,
.form-group input[type="number"]:focus,
.form-group input[type="tel"]:focus,
.form-group input[type="email"]:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--brand-primary);
    outline: none;
}

/* 에러 스타일 */
.form-group.error input,
.form-group.error select,
.form-group.error .dropdown-header {
    border-color: var(--error-color);
}

.form-group.error .error-message {
    display: block;
    color: var(--error-color);
    font-size: 0.85rem;
    margin-top: 5px;
    margin-bottom: 0;
}

.form-group .error-message {
    display: none;
}

/* 지역 필드 에러 상태 스타일 */
.form-group.error .custom-dropdown .dropdown-header {
    border-color: var(--error-color);
}

.form-group.error .sub-location-dropdown .dropdown-header {
    border-color: var(--error-color);
}

/* 브라우저 기본 HTML5 유효성 검사 경고 메시지 숨기기 */
input:invalid,
select:invalid,
textarea:invalid {
    box-shadow: none;
}

input:invalid:focus,
select:invalid:focus,
textarea:invalid:focus {
    box-shadow: none;
}

/* Chrome/Safari에서 나타나는 경고 메시지 숨기기 */
input::-webkit-validation-bubble-message,
select::-webkit-validation-bubble-message,
textarea::-webkit-validation-bubble-message {
    display: none;
}

/* Firefox에서 나타나는 경고 메시지 숨기기 */
input:-moz-ui-invalid,
select:-moz-ui-invalid,
textarea:-moz-ui-invalid {
    box-shadow: none;
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 15px;
}

/* 커스텀 드롭다운 스타일 */
.custom-dropdown {
    position: relative;
    width: 100%;
}

.dropdown-header {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-light);
    border-radius: 5px;
    background-color: white;
    cursor: pointer;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.dropdown-header:hover {
    border-color: var(--brand-primary);
}

.dropdown-header.active {
    border-color: var(--brand-primary);
}

.dropdown-arrow {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
    margin-left: auto;
}

.dropdown-header.active .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: white;
    border: 1px solid var(--border-light);
    border-top: none;
    border-radius: 0 0 5px 5px;
    max-height: 200px;
    overflow-y: auto;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    text-align: left;
}

.dropdown-option {
    padding: 10px 15px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.dropdown-option:hover {
    background-color: var(--hover-bg);
}

/* 세부 지역 선택 스타일 */
.location-selector {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* 경기도 선택 시 세부 지역 필수 표시 */
.location-selector .form-group.error .sub-location-dropdown {
    border: 1px solid var(--error-color);
    border-radius: 5px;
}

.sub-location-dropdown {
    margin-top: 5px;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

/* 세부 지역 드롭다운의 너비를 강제로 제한 */
.sub-location-dropdown .custom-dropdown,
.sub-location-dropdown .custom-dropdown .dropdown-header,
.sub-location-dropdown .custom-dropdown .dropdown-menu {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.sub-location-dropdown .dropdown-header,
.sub-location-dropdown .dropdown-menu {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

/* 세부 지역 드롭다운의 너비를 절대적으로 제한 */
.sub-location-dropdown {
    position: relative;
    max-width: 100%;
    overflow: visible;
}

.sub-location-dropdown .custom-dropdown {
    position: relative;
    width: 100%;
    max-width: 100%;
}

.sub-location-dropdown .dropdown-header {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    background-color: white;
    border: 1px solid var(--border-light);
}

.sub-location-dropdown .dropdown-header:hover {
    border-color: var(--brand-primary);
}

.sub-location-dropdown .dropdown-header.active {
    border-color: var(--brand-primary);
}

.sub-location-dropdown .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
    max-height: 200px;
    overflow-y: auto;
    z-index: 1001;
    background-color: white;
    border: 1px solid var(--border-light);
    border-top: none;
    border-radius: 0 0 5px 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.sub-location-dropdown .dropdown-option {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    word-wrap: break-word;
    overflow-wrap: break-word;
    padding: 8px 12px;
    font-size: 0.9rem;
}

.sub-location-dropdown .dropdown-option:hover {
    background-color: var(--border-color);
}

.sub-location-dropdown .dropdown-option.selected {
    background-color: var(--brand-primary);
    color: white;
}

/* 드롭다운 메뉴의 최대 높이 설정 */
.form-group select[size] {
    height: auto;
}

.form-group select {
    height: 45px;
    cursor: pointer;
}

/* 드롭다운 열렸을 때의 스타일 */
.form-group select:focus {
    max-height: 200px;
}

/* 드롭다운 메뉴 스타일링 */
.form-group select[size]:not([size="1"]) {
    height: auto;
}

/* 드롭다운 옵션 최대 높이 제한 */
.form-group select option {
    padding: 8px;
}

/* 드롭다운 메뉴 스크롤바 스타일링 */
.form-group select {
    scrollbar-width: thin;
    scrollbar-color: #888 #f1f1f1;
}

.form-group select::-webkit-scrollbar {
    width: 8px;
}

.form-group select::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.form-group select::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
}

.form-group select::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* 드롭다운 옵션 스타일링 */
.form-group select option {
    padding: 8px;
}

/* Firefox에서의 스크롤바 스타일링 */
.form-group select {
    scrollbar-width: thin;
    scrollbar-color: #888 #f1f1f1;
}

/* Chrome/Safari에서의 스크롤바 스타일링 */
.form-group select::-webkit-scrollbar {
    width: 8px;
}

.form-group select::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.form-group select::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
}

.form-group select::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* 제출 버튼 비활성화 */
.submit-button:disabled {
    background-color: #b0b8c1;
    cursor: not-allowed;
    box-shadow: none;
}
.submit-button:disabled:hover {
    background-color: #b0b8c1;
    transform: none;
}

/* 개인정보 동의 */
.privacy-agree-group {
    margin-bottom: 16px;
}
.privacy-agree-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: #444;
    cursor: pointer;
}
.privacy-agree-label input[type="checkbox"] {
    width: 16px;
    height: 16px;
    cursor: pointer;
    flex-shrink: 0;
}
.privacy-agree-label a {
    color: var(--brand-primary);
    text-decoration: underline;
}

.submit-button {
    display: block;
    width: 100%;
    padding: 15px;
    background-color: var(--brand-primary);
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-button:hover {
    background-color: var(--brand-secondary);
}

/* 견적서 요청 방법 섹션 스타일 */
.content-section {
    padding: 60px 0;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.content-section h2 {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 20px;
    position: relative;
}

.content-section h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--brand-primary);
    border-radius: 2px;
}

.content-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ===================== */
/* Menu Tabs             */
/* ===================== */
/* 탭 시스템은 common.css에서 관리 */

/* 무료체험 관련 스타일 */
.trial-benefits {
    background: white;
    border-radius: 10px;
    padding: 30px;
    margin: 30px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.trial-benefits h3 {
    color: var(--brand-primary);
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.trial-benefits ul {
    list-style: none;
    padding: 0;
}

.trial-benefits li {
    padding: 10px 0;
    border-bottom: 1px solid var(--hover-bg);
    position: relative;
    padding-left: 25px;
}

.trial-benefits li:before {
    content: "✓";
    color: var(--brand-primary);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.trial-benefits li:last-child {
    border-bottom: none;
}

.trial-form {
    background: white;
    border-radius: 10px;
    padding: 40px;
    margin: 30px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* 확약서 섹션 */
.confirmation-section {
    margin-bottom: 30px;
    padding: 20px;
    border: 1px solid #ddd;
    background-color: #f9f9f9;
    border-radius: 8px;
}

.confirmation-section h3 {
    color: #333;
    margin-bottom: 15px;
    font-size: 1.2rem;
    font-weight: bold;
}

.confirmation-text {
    margin-bottom: 15px;
    line-height: 1.6;
    color: #555;
}

.company-info p {
    margin: 5px 0;
    color: #666;
    font-size: 0.9rem;
}

/* 폼 섹션 */
.form-section {
    margin-bottom: 30px;
    padding: 20px;
    border: 1px solid #e9ecef;
    border-radius: 8px;
}

.form-section h3 {
    color: #333;
    margin-bottom: 20px;
    font-size: 1.1rem;
    font-weight: bold;
    border-bottom: 2px solid #1e3a8a;
    padding-bottom: 8px;
}

/* 라디오 그룹 */
.radio-group {
    display: flex;
    gap: 20px;
    margin-top: 10px;
}

.radio-label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    background-color: white;
    transition: all 0.3s ease;
}

.radio-label:hover {
    border-color: #1e3a8a;
    background-color: #f8f9ff;
}

.radio-label input[type="radio"] {
    margin: 0;
}

/* 커넥터 옵션 */
.connector-options {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 15px;
}

.connector-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    min-width: 140px;
    cursor: pointer;
    padding: 15px;
    border: 2px solid #ddd;
    border-radius: 8px;
    background-color: white;
    transition: all 0.3s ease;
}

.connector-option:hover {
    border-color: #1e3a8a;
    background-color: #f8f9ff;
}

.connector-option input[type="radio"] {
    margin: 0;
}

.connector-image {
    width: 115px;
    height: 80px;
    border: 1px solid #ccc;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f8f9fa;
    border-radius: 6px;
}

.connector-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 4px;
}

.connector-circle {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background-color: #666;
}

.connector-canon {
    width: 30px;
    height: 18px;
    background-color: #666;
    border-radius: 4px;
}

.connector-banana {
    width: 25px;
    height: 10px;
    background-color: #666;
    border-radius: 5px;
}

.connector-jack35 {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background-color: #666;
}

.connector-jack635 {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background-color: #666;
}

.connector-xlr {
    width: 30px;
    height: 18px;
    background-color: #666;
    border-radius: 4px;
}

.connector-option span {
    font-size: 0.85rem;
    text-align: center;
    color: #555;
    font-weight: 500;
}

/* 도움말 텍스트 */
.help-text {
    font-size: 0.8rem;
    color: #666;
    font-style: italic;
    margin-top: 5px;
    display: block;
}

/* 에러 메시지 */
.error-message {
    color: #dc3545;
    font-size: 0.85rem;
    margin-top: 5px;
    display: none;
}

.form-group.error .error-message {
    display: block;
}

.form-group.error input,
.form-group.error textarea {
    border-color: #dc3545;
}

/* 에러 상태 스타일 - 더 구체적인 선택자 사용 */
.quote-form .form-group.error input,
.quote-form .form-group.error textarea,
.quote-form .form-group.error select {
    border-color: #dc3545;
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.form-group.error label {
    color: #dc3545;
}

/* 선택된 커넥터 옵션 */
.connector-option:has(input[type="radio"]:checked) {
    border-color: #1e3a8a;
    background-color: #f0f4ff;
}

.connector-option input[type="radio"]:checked ~ span {
    color: #1e3a8a;
    font-weight: 600;
}

.trial-process {
    background: white;
    border-radius: 10px;
    padding: 30px;
    margin: 30px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.trial-process h3 {
    color: var(--brand-primary);
    margin-bottom: 30px;
    font-size: 1.3rem;
    text-align: center;
}

.process-steps {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.step {
    text-align: center;
    padding: 20px;
}

.step-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--brand-primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    margin: 0 auto 15px;
}

.step h4 {
    color: var(--brand-primary);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.step p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* 반응형 디자인 */
@media (max-width: 768px) {
    .quote-form {
        padding: 20px;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
}

/* 480px 이하 반응형 스타일은 common.css에서 관리 */

/* 커스텀 팝업 스타일 */
.custom-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    animation: fadeIn 0.3s ease-out;
}

.popup-content {
    background: white;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    max-width: 400px;
    width: 90%;
    animation: slideIn 0.3s ease-out;
}

.popup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px 16px;
    border-bottom: 1px solid var(--border-color);
}

.popup-header h3 {
    margin: 0;
    color: var(--brand-primary);
    font-size: 1.25rem;
    font-weight: 600;
}

.popup-close {
    background: none;
    border: none;
    font-size: 24px;
    color: var(--text-muted);
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s;
}

.popup-close:hover {
    background-color: var(--bg-light);
    color: var(--text-muted);
}

.popup-body {
    padding: 20px 24px;
}

.popup-body p {
    margin: 0;
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.5;
    text-align: center;
}

.popup-footer {
    padding: 16px 24px 24px;
    text-align: center;
}

.popup-button {
    background-color: var(--brand-primary);
    color: white;
    border: none;
    padding: 12px 32px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    min-width: 100px;
}

.popup-button:hover {
    background-color: var(--hover-primary);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(30, 58, 95, 0.3);
}

.popup-button:active {
    transform: translateY(0);
}

/* 팝업 애니메이션 */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-20px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* 성공/에러 상태별 스타일 */
.popup-content.success .popup-header h3 {
    color: var(--brand-primary);
}

.popup-content.error .popup-header h3 {
    color: var(--error-color);
}

.popup-content.success .popup-button {
    background-color: var(--brand-primary);
}

.popup-content.success .popup-button:hover {
    background-color: var(--hover-primary);
    box-shadow: 0 4px 12px rgba(30, 58, 95, 0.3);
}

.popup-content.error .popup-button {
    background-color: var(--error-color);
}

.popup-content.error .popup-button:hover {
    background-color: var(--error-hover);
    box-shadow: 0 4px 12px rgba(220, 53, 69, 0.3);
}

/* 중요 안내사항 박스 */
.notice-box {
    background-color: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 30px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    text-align: center;
}

.notice-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.notice-box li {
    list-style: none;
}

.notice-box p,
.notice-box li {
    margin: 8px 0;
    color: #856404;
    text-align: center;
}

.notice-box p:first-child,
.notice-box li:first-child {
    font-size: 1.1em;
    margin-bottom: 12px;
    font-weight: bold;
}

/* 연락처 정보 스타일 */
.contact-info {
    margin: 15px 0 0 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: center;
}

.contact-label {
    color: #d63031;
    font-weight: bold;
    min-width: 60px;
    text-align: right;
}

.contact-value {
    font-weight: 500;
}

.notice-box strong {
    color: #856404;
}

