/* 고객지원 페이지 스타일시트 */

/* 고객지원 메인 컨테이너 */
.customer-support {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    min-height: 100vh;
}

/* 페이지 제목 */
.customer-support h1 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 50px;
    position: relative;
}

.customer-support h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #ff7f2a, #ff6b35);
    border-radius: 2px;
}

/* 지원 방법 그리드 */
.support-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

/* 지원 카드 */
.support-card {
    background: #fff;
    border-radius: 16px;
    padding: 35px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
	display:flex;
	flex-direction:column;
	justify-content:space-between;
}

.support-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff7f2a, #ff6b35);
}

.support-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

/* 카드 헤더 */
.card-header {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.card-number {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ff7f2a;
    margin-right: 18px;
    background: linear-gradient(135deg, #ff7f2a, #ff6b35);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.card-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: #333;
    margin: 0;
}

/* 카드 설명 */
.card-description {
    line-height: 1.7;
    margin-bottom: 25px;
    font-size: 1rem;
	background:#ff7b21;
	color:#fff;
	border-radius:10px;
	text-align:center;
	font-size:2rem;
	padding:20px;
	width:70%;
	margin:25px auto ;
}

.card-description a{
	color:#fff;
	font-weight:bold;
}

.card-description a:hover{
	color:#fff;	
}
/* 운영시간 박스 */
.hours-box {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px;
    padding: 15px;
    border: 1px solid #e9ecef;
}

.hours-title {
    font-weight: 700;
    color: #333;
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.hours-content {
    color: #666;
    line-height: 1.8;
    font-size: 0.95rem;
}

/* 지원 버튼 
.support-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border: 2px solid #ff7f2a;
    border-radius: 10px;
    background: #fff;
    color: #333;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
    min-width: 200px;
    position: relative;
    overflow: hidden;
}

.support-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.support-button:hover::before {
    left: 100%;
}

.support-button:hover {
    background: #ff7f2a;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}
*/
.button-icon {
    margin-right: 10px;
    font-size: 1.2rem;
}

/* 상담요청 폼 */
.email-form {
    background: #fff;
    border-radius: 16px;
    padding: 45px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.email-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff7f2a, #ff6b35);
}

.email-form .card-description{
	display:block;
	width:70%;
	font-weight:bold;
	margin:25px auto;
	padding:30px 10px;
}

.email-form a.card-description:hover{
	color:#fff;
	
}
/* 폼 그룹 */
.form-group {
    margin-bottom: 28px;
}

.form-label {
    display: block;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
    font-size: 1rem;
}

.form-input {
    width: 100%;
    padding: 10px;
    border: 2px solid #e1e5e9;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #fff;
    color: #333;
}

.form-input:focus {
    outline: none;
    border-color: #ff7f2a;
    box-shadow: 0 0 0 3px rgba(255, 127, 42, 0.1);
}

.form-input::placeholder {
    color: #999;
}

.form-textarea {
    min-height: 140px;
    resize: vertical;
    font-family: inherit;
}

/* 체크박스 스타일 */
.checkbox-label {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    font-size: 0.95rem;
    color: #666;
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    margin-right: 10px;
    margin-top: 2px;
    width: 18px;
    height: 18px;
    accent-color: #fff;
}

/* 제출 버튼 */
.submit-button {
    background: linear-gradient(135deg, #ff7f2a, #ff6b35);
    color: #fff;
    border: none;
    padding: 15px;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 180px;
    position: relative;
    overflow: hidden;
}

.submit-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.submit-button:hover::before {
    left: 100%;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 127, 42, 0.3);
}

.submit-button:active {
    transform: translateY(0);
}

/* 푸터 */
.customer-footer {
    background: linear-gradient(135deg, #333 0%, #2c2c2c 100%);
    color: #fff;
    padding: 40px 0;
    margin-top: 80px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 25px;
}

.footer-link {
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    padding: 5px 10px;
}

.footer-link:hover {
    color: #ff7f2a;
}

.footer-divider {
    margin: 0 5px;
    color: #666;
}

.footer-content p {
    color: #999;
    font-size: 0.85rem;
    margin: 0;
}

/* 로딩 상태 */
.loading {
    opacity: 0.7;
    pointer-events: none;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid #f3f3f3;
    border-top: 2px solid #ff7f2a;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* 성공/에러 메시지 */
.message {
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-weight: 500;
}

.message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* 반응형 디자인 - 태블릿 */
@media (max-width: 1024px) {
    .customer-support {
        padding: 30px 15px;
    }
    
    .support-grid {
        gap: 25px;
    }
    
    .support-card {
        padding: 30px;
    }
    
    .email-form {
        padding: 35px;
    }
}

/* 반응형 디자인 - 모바일 */
@media (max-width: 768px) {
    .customer-support {
        padding: 20px 15px;
    }
    
    .customer-support h1 {
        font-size: 2rem;
        margin-bottom: 30px;
    }
    
    .support-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .support-card {
        padding: 25px;
    }
    
    .card-title {
        font-size: 1.4rem;
    }
    
    .card-description {
        font-size: 2rem;
    }
    
    .hours-box {
        padding: 20px;
    }
    
    .support-button {
        font-size: 1.8rem;
    }
    
    .email-form {
        padding: 25px;
    }
    
    .form-group {
        margin-bottom: 20px;
    }
    
    .form-input {
        padding: 12px 15px;
        font-size: 0.95rem;
    }
    
    .submit-button {
        width: 100%;
        padding: 14px 20px;
        font-size: 1rem;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 8px;
    }
    
    .footer-divider {
        display: none;
    }
    
    .footer-link {
        padding: 8px 0;
    }
	
	.card-description,.email-form .card-description{
		width:100%;
	}
}

/* 반응형 디자인 - 작은 모바일 */
@media (max-width: 480px) {
    .customer-support h1 {
        font-size: 1.8rem;
    }
    
	.support-button{
		
	}
    .support-card {
        padding: 20px;
    }
    
    .card-title {
        font-size: 1.3rem;
    }
    
    .card-number {
        font-size: 1.1rem;
        margin-right: 15px;
    }
    
    .email-form {
        padding: 20px;
    }
    
    .form-input {
        padding: 10px 12px;
        font-size: 0.9rem;
    }
    
    .form-textarea {
        min-height: 120px;
    }
    
    .submit-button {
        padding: 12px 16px;
        font-size: 0.95rem;
    }
    
    .hours-box {
        padding: 15px;
    }
    
    .hours-content {
        font-size: 0.9rem;
    }
}

/* 접근성 개선 */
@media (prefers-reduced-motion: reduce) {
    .support-card,
    .support-button,
    .submit-button {
        transition: none;
    }
    
    .support-card:hover {
        transform: none;
    }
    
    .support-button:hover,
    .submit-button:hover {
        transform: none;
    }
}


/* 인쇄 스타일 */
@media print {
    .support-button,
    .submit-button {
        display: none;
    }
    
    .customer-footer {
        display: none;
    }
    
    .support-card,
    .email-form {
        box-shadow: none;
        border: 1px solid #ccc;
    }
}
