.btn-black {
    background-color: var(--lp-basic-black);  /* 브랜드 블루 */
    color: #fff;
    font-weight: 600;
    border-radius: 4px;
    padding: 12px 16px;
    transition: all 0.2s ease-in-out;
    border: none;
}

.btn-black:hover {
    background-color: var(--lp-basic-black); /* 브랜드 블랙 */
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.btn-black:active {
    transform: translateY(0);
    box-shadow: none;
}

.btn-white {
    background-color: #fff;  /* 화이트 */
    color: var(--lp-basic-black);  /* 브랜드 블랙 텍스트 */
    font-weight: 600;
    border-radius: 4px;
    padding: 0.5rem 1.25rem;
    transition: all 0.2s ease-in-out;
    border: 1px solid var(--lp-basic-black); /* 블랙 테두리 */
}

.btn-white:hover {
    background-color: var(--lp-basic-black); /* 호버 시 블랙 배경 */
    color: #fff; /* 글자는 흰색으로 반전 */
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.btn-white:active {
    transform: translateY(0);
    box-shadow: none;
}


.swiper-container {
    padding-bottom: 50px; /* 버튼/페이지네이션 공간 */
}

.swiper-slide {
    width: 220px; /* 카드 고정 너비 */
    margin: 0 10px;
}

.badge-custom {
    display: inline-block;
    background-color: var(--lp-gray-4); /* badge-light 비슷 */
    color: var(--lp-basic-black);            /* 텍스트 색상 */
    font-weight: 600;
    padding: 12px 16px;      /* py-2 px-3 */
    border-radius: 0.25rem;    /* Bootstrap badge 기본값 */
}

.faq-section {
    background: url('../../../resources/assets/images/img-faq-background.png') no-repeat center center;
    background-size: cover;
    padding: 64px 0; /* 상하 여백 */
    width: 100%;
}

.faq-section .card {
    border-radius: 8px;
    overflow: hidden;
}

.faq-section .btn-link {
    color: #000;
    text-decoration: none;
    font-size: 1rem;
}

.faq-section .btn-link:focus {
    box-shadow: none;
}

.faq-section .arrow {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-right: 2px solid #000;
    border-bottom: 2px solid #000;
    transform: rotate(45deg);
    transition: transform 0.3s ease;
    margin-left: 10px;
}

/* 열렸을 때 화살표 회전 */
.faq-section .btn[aria-expanded="true"] .arrow {
    transform: rotate(225deg);
}


/*타이핑 애니메이션*/
.typing {
    display: inline-block;
    overflow: hidden;
    white-space: nowrap;
    border-right: 3px solid #000; /* 커서 효과 */
    animation: typing 2s steps(4, end), blink 0.7s step-end infinite;
}

@keyframes typing {
    from { width: 0 }
    to { width: 5.15ch } /* "바만사"는 3글자지만 한글은 2ch 정도씩 필요 → 4ch */
}

@keyframes blink {
    50% { border-color: transparent }
}

.floating-btn {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1050; /* 항상 위에 보이도록 */
}

.btn-black-cta {
    background-color: var(--lp-basic-black); /* 브랜드 컬러 */
    color: #fff;
    font-weight: 600;
    font-size: 16px;
    border-radius: 4px;
    padding: 0.75rem 1.25rem;
    transition: all 0.2s ease-in-out;
    border: none;
    width: 100%;   /* 항상 가로 전체 */
}

.btn-black-cta:hover {
    background-color: #000;  /* hover 시 조금 더 진하게 */
}


.btn-black-floating {
    position: fixed;       /* 화면에 고정 */
    bottom: 0;             /* 화면 하단 */
    left: 0;
    width: 100%;           /* 화면 전체 가로폭 */
    padding: 12px;         /* 버튼 양옆 여백 */
    z-index: 1050;         /* 항상 위에 보이도록 */

}

.image-slider {
    width: 100%;
    overflow: hidden;
}

.image-slider img {
    width: 280%; /* 4컷짜리니까 */
    animation: slide-img 20s infinite linear;
}

@keyframes slide-img {
    0%   { transform: translateX(0); }
    25%  { transform: translateX(-25%); }
    50%  { transform: translateX(-50%); }
    75%  { transform: translateX(-75%); }
    100% { transform: translateX(0); }
}
