/* Contact Us 페이지 스타일 */



/* 플랜 카드 컨테이너 */
.contact-plans {margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); gap: 2rem;  margin-bottom: 60px;}

/* 플랜 카드 스타일 */
.plan-card { text-align: center; position: relative;   transition: all 0.4s ease;  }

/* 플랜 아이콘 */
.plan-image{ background:url() no-repeat center center; background-size:cover; border-radius:20px; transition: transform 0.3s ease; }
.plan-image:after{content: '';  display: block; padding-bottom: calc(238 / 436 * 100%);   }
.plan-image:hover{transform: scale(1.1);}

/* 플랜 헤더 */
.plan-header { margin-top: 35px; font-size:1.3rem; color:#000; padding:0px 20px; word-break:keep-all;}

.plan-name {font-size: 20px;font-weight: 400;color: #ffffff;margin: 0 0 15px 0;  letter-spacing: 1px;}


/* 플랜 내용 */
.plan-features { }
.plan-features .contact-details {display:inline-block;width:100%;text-align: center;padding:0px;}
.plan-features .contact-details .contact-detail {margin:0px auto; display:inline-block; font-size: 1rem;padding:0px; max-width:100%; width:100%; text-align:center;  margin-top:25px;}
.plan-features .contact-details .contact-detail .label {display:inline-block; width:100%; font-weight: 600; color: #999; font-size: 16px; }
.plan-features .contact-details .contact-detail .value {color: #333; font-weight: 400;  font-size:18px;}

/*
.contact-detail.email .value {transition: color 0.3s ease;}
.contact-detail.email .value:hover {text-decoration: underline;}
*/


/* 애니메이션 효과 */
.plan-card {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1.5s ease forwards;
}

.plan-card:nth-child(1) { animation-delay: 1.0s; }
.plan-card:nth-child(2) { animation-delay: 1.5s; }
.plan-card:nth-child(3) { animation-delay: 2.0s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}



@media (max-width: 1023px) {
	#container_title{width:85%;max-width:500px !important;}
	.contact-plans{ display:block;  }
	.plan-card{width:85%; max-width:500px; margin:0px auto 60px auto;}
}

@media (max-width: 480px) {
	#container_title{width:100%;}
	.plan-card{width:100%; }
	
}


.contact-admin-controls i.fa{font-size:20px;}







/* 관리자 컨트롤 스타일 */
.admin-mode .plan-card {
    position: relative;
}

.contact-admin-controls {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 10;
    display: flex;
    gap: 5px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.admin-mode .plan-card:hover .contact-admin-controls {
    opacity: 1;
}

.contact-admin-controls button {
    background: rgba(0, 0, 0, 0.6);
    color: #00bfff;
    border: none;
    padding: 8px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 12px;
    transition: all 0.3s ease;
}

.contact-admin-controls button:hover {
    background: #000;
}



/* 연락처 없을 때 */
.no-contacts {
    text-align: center;
    padding: 100px 20px;
    color: #999;
    font-size: 1.1rem;
}

.btn-add-contact {
    background: #00bfff;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    margin-top: 20px;
    transition: all 0.3s ease;
}

.btn-add-contact:hover {
    background: #0099cc;
}












