/* 기본 초기화 및 설정 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Noto Sans KR', sans-serif;
    font-weight: 400;
    color: #333333;
    line-height: 1.6;
    background-color: #FFFFFF;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 전화번호 이미지 섹션 */
.phone-banner-section {
    padding: 30px 0;
    background-color: #FFFFFF;
}

.phone-banner-link {
    display: block;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.phone-banner-link:hover {
    transform: scale(1.02);
}

.phone-banner-link img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

/* 신고센터 이미지 섹션 */
.report-banner-section {
    padding: 30px 0;
    background-color: #FFFFFF;
}

.report-banner-link {
    display: block;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.report-banner-link:hover {
    transform: scale(1.02);
}

.report-banner-link img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

/* 배너 섹션 */
.banner-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
}

.banner-container {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.banner-item {
    flex: 1;
    max-width: 300px;
    aspect-ratio: 3/4;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
    text-decoration: none;
    display: block;
    position: relative;
}

.banner-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 30px rgba(254, 101, 31, 0.3);
}

.banner-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.banner-item:hover img {
    transform: scale(1.05);
}

/* 비디오 섹션 */
.video-section {
    padding: 0;
    background-color: #000000;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 비율 */
    height: 0;
    overflow: hidden;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* 고정 전화 버튼 */
.fixed-call-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #FE651F;
    color: #FFFFFF;
    text-decoration: none;
    padding: 15px 25px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 18px;
    box-shadow: 0 4px 15px rgba(254, 101, 31, 0.4);
    transition: all 0.3s ease;
    z-index: 999;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 4px 15px rgba(254, 101, 31, 0.4);
    }
    50% {
        box-shadow: 0 4px 20px rgba(254, 101, 31, 0.6);
    }
    100% {
        box-shadow: 0 4px 15px rgba(254, 101, 31, 0.4);
    }
}

.fixed-call-btn:hover {
    transform: scale(1.1);
    background-color: #ff7835;
}

.call-icon {
    font-size: 24px;
}


/* 홍보 섹션 */
.promo-section {
    padding: 80px 0 0 0;
    background-color: #FFFFFF;
}

.promo-item {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
    gap: 40px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.promo-item:last-child {
    margin-bottom: 10px;
}

.promo-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.promo-item:nth-child(even) {
    flex-direction: row-reverse;
}

.promo-image {
    flex: 1;
    text-align: center;
}

.promo-image img {
    max-width: 100%;
    height: auto;
    max-height: 300px;
    object-fit: contain;
}

.promo-content {
    flex: 1;
}

.promo-content h2 {
    color: #FE651F;
    font-size: 32px;
    margin-bottom: 20px;
    font-weight: 700;
}

.promo-content p {
    font-size: 18px;
    line-height: 1.8;
    color: #666666;
}

/* 카드결제 이미지 섹션 */
.card-payment-image-section {
    padding: 0;
    background-color: #FFFFFF;
    overflow: hidden;
}

.card-payment-banner {
    width: 100%;
    opacity: 0;
    transform: translateY(-50px);
    transition: all 0.8s ease;
}

.card-payment-banner.visible {
    opacity: 1;
    transform: translateY(0);
}

.card-payment-banner img {
    width: 100%;
    height: auto;
    display: block;
}

/* 24시간 운영 이미지 섹션 */
.operation-image-section {
    padding: 0;
    background-color: #FFFFFF;
    overflow: hidden;
}

.operation-banner {
    width: 100%;
    opacity: 0;
    transform: translateY(-50px);
    transition: all 0.8s ease;
}

.operation-banner.visible {
    opacity: 1;
    transform: translateY(0);
}

.operation-banner img {
    width: 100%;
    height: auto;
    display: block;
}

/* 사업자 정보 */
.business-info {
    background-color: #FFFFFF;
    padding: 60px 0 120px 0;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.business-info.visible {
    opacity: 1;
    transform: translateY(0);
}

.business-info h3 {
    text-align: center;
    color: #333333;
    font-size: 28px;
    margin-bottom: 40px;
    font-weight: 700;
}

.business-info-wrapper {
    display: flex;
    gap: 30px;
    align-items: stretch;
}

.ceo-image {
    flex: 0 0 50%;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    align-items: stretch;
}

.ceo-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.info-grid {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr;
    gap: 5px;
    background-color: #FFFFFF;
    padding: 15px;
    border-radius: 10px;
    border: 1px solid #e0e0e0;
    align-content: start;
}

/* 데스크톱 전용 스타일 */
@media (min-width: 1024px) {
    .info-grid {
        padding: 8px 12px;
        gap: 2px;
        align-content: center;
    }
    
    .info-item {
        padding: 2px 0;
    }
    
    .info-label {
        width: 85px;
        min-width: 85px;
        text-align: left;
    }
    
    .ceo-image {
        flex: 0 0 40%;
    }
    
    .business-info-wrapper {
        align-items: center;
        gap: 20px;
    }
}

.info-item {
    display: flex;
    padding: 5px 0;
    border-bottom: 1px solid #e0e0e0;
}

.info-item:last-child {
    border-bottom: none;
}

.info-label {
    font-weight: 700;
    color: #FE651F;
    width: 90px;
    min-width: 90px;
    display: inline-block;
    text-align: left;
}

.info-colon {
    font-weight: 700;
    color: #FE651F;
    width: 10px;
    display: inline-block;
    text-align: center;
    margin-right: 10px;
}

.info-value {
    color: #666666;
    flex: 1;
}

/* 반응형 디자인 */
@media (max-width: 768px) {
    .phone-banner-section {
        padding: 20px 0;
    }
    
    .report-banner-section {
        padding: 20px 0;
    }
    
    .banner-section {
        padding: 40px 0;
    }
    
    .banner-container {
        gap: 10px;
        padding: 0 10px;
    }
    
    .banner-item {
        max-width: 200px;
        border-radius: 10px;
    }
    
    .promo-item {
        gap: 20px;
        margin-bottom: 30px;
    }
    
    .promo-item:last-child {
        margin-bottom: 10px;
    }
    
    .promo-section {
        padding: 40px 0 0 0;
    }
    
    .promo-item:nth-child(even) {
        flex-direction: row-reverse;
    }
    
    .promo-content h2 {
        font-size: 24px;
    }
    
    .promo-content p {
        font-size: 16px;
    }
    
    .fixed-call-btn {
        bottom: 20px;
        right: 20px;
        left: 20px;
        justify-content: center;
    }
    
    .business-info-wrapper {
        flex-direction: row;
        gap: 15px;
        align-items: stretch;
    }
    
    .ceo-image {
        flex: 0 0 45%;
        display: flex;
        align-items: stretch;
    }
    
    .info-grid {
        padding: 12px;
    }
    
    .info-label {
        width: 85px;
        min-width: 85px;
        text-align: left;
    }
}

@media (max-width: 480px) {
    .phone-banner-section {
        padding: 15px 0;
    }
    
    .phone-banner-link img {
        border-radius: 8px;
    }
    
    .report-banner-section {
        padding: 15px 0;
    }
    
    .report-banner-link img {
        border-radius: 8px;
    }
    
    .banner-section {
        padding: 30px 0;
    }
    
    .banner-container {
        gap: 5px;
        padding: 0 5px;
    }
    
    .banner-item {
        max-width: 110px;
        border-radius: 8px;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }
    
    .banner-item:hover {
        transform: translateY(-5px);
    }
    
    .business-info {
        padding-bottom: 150px;
    }
    
    .business-info-wrapper {
        gap: 8px;
        align-items: stretch;
    }
    
    .ceo-image {
        flex: 0 0 38%;
        display: flex;
        align-items: stretch;
        border-radius: 8px;
        overflow: hidden;
    }
    
    .ceo-image img {
        object-fit: cover;
        object-position: center;
    }
    
    .info-grid {
        flex: 1;
        padding: 8px;
        gap: 2px;
    }
    
    .info-item {
        padding: 2px 0;
        display: flex;
        flex-wrap: nowrap;
    }
    
    .info-label {
        width: 75px;
        min-width: 75px;
        font-size: 11px;
        flex-shrink: 0;
        text-align: left;
    }
    
    .info-value {
        font-size: 11px;
        word-break: break-all;
        line-height: 1.3;
    }
    
    .promo-item {
        gap: 15px;
        margin-bottom: 25px;
    }
    
    .promo-item:last-child {
        margin-bottom: 10px;
    }
    
    .promo-section {
        padding: 30px 0 0 0;
    }
    
    .promo-content h2 {
        font-size: 20px;
    }
    
    .promo-content p {
        font-size: 14px;
    }
    
    .fixed-call-btn {
        font-size: 16px;
        padding: 12px 20px;
    }
    
    .business-info h3 {
        font-size: 24px;
    }
}

/* 페이드온 스크롤 애니메이션 */
.fade-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.fade-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}