/* 포토 갤러리 */
.photo-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.gallery-item {
    height: 200px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.03);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}/* 타임라인 기본 스타일 (이전 코드 유지를 위한 복제) */
.timeline {
    position: relative;
    padding: 30px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: var(--primary-light);
    transform: translateX(-50%);
}

.timeline-item {
    margin-bottom: 50px;
    position: relative;
}

.timeline-content {
    width: 45%;
    padding: 20px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: relative;
}

.timeline-content.left {
    margin-right: auto;
}

.timeline-content.right {
    margin-left: auto;
}

.timeline-content::after {
    content: '';
    position: absolute;
    top: 20px;
    width: 20px;
    height: 20px;
    background-color: white;
    transform: rotate(45deg);
}

.timeline-content.left::after {
    right: -10px;
    border-top: 1px solid #eee;
    border-right: 1px solid #eee;
}

.timeline-content.right::after {
    left: -10px;
    border-bottom: 1px solid #eee;
    border-left: 1px solid #eee;
}

.timeline-date {
    position: absolute;
    top: 20px;
    background-color: var(--primary);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.timeline-content.left .timeline-date {
    right: -130px;
}

.timeline-content.right .timeline-date {
    left: -130px;
}

.timeline-dot {
    position: absolute;
    top: 20px;
    left: 50%;
    width: 20px;
    height: 20px;
    background-color: var(--primary);
    border-radius: 50%;
    transform: translateX(-50%);
    z-index: 1;
}/* 전역 변수 */
:root {
    --primary: #4468ff;
    --primary-dark: #3450d9;
    --primary-light: #5d8ef3;
    --dark: #1a1a1a;
    --gray-dark: #333;
    --gray: #666;
    --gray-light: #aaa;
}

/* 기본 스타일 */
body {
    font-family: 'Noto Sans KR', sans-serif;
    color: #333;
}

/* 버튼 스타일 */
.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
}

.btn-primary:hover,
.btn-primary:focus {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
}

.btn-outline-primary {
    color: var(--primary);
    border-color: var(--primary);
}

.btn-outline-primary:hover,
.btn-outline-primary:focus {
    background-color: var(--primary);
    border-color: var(--primary);
}

/* 배경 스타일 */
.bg-primary {
    background-color: var(--primary) !important;
}

.bg-gradient-primary {
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
}

.bg-light-blue {
    background-color: rgba(68, 104, 255, 0.05);
}

.text-primary {
    color: var(--primary) !important;
}

/* 헤더 및 네비게이션 */
.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
}

.nav-link {
    font-weight: 500;
}

.nav-link:hover {
    color: var(--primary) !important;
}

/* 페이지 헤더 */
.page-header {
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    padding: 120px 0 80px;
    position: relative;
}

.page-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%);
}

/* 메인 비주얼 */
.main-visual {
    position: relative;
    min-height: 700px;
    padding-top: 80px;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('/assets/img/main-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.main-visual::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(68, 104, 255, 0.8), rgba(52, 80, 217, 0.8));
    opacity: 0.8;
    z-index: 1;
}

.main-visual .container {
    position: relative;
    z-index: 2;
}

.main-visual h1 {
    font-size: 3rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.main-visual p {
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}

.hero-section {
    min-height: 700px;
    padding-top: 80px;
}

/* 특징 및 아이콘 */
.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: rgba(68, 104, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

/* 프로세스 스텝 */
.process-step {
    position: relative;
    z-index: 2;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    margin: 0 auto 1.5rem;
}

.process-line {
    position: absolute;
    top: 20px;
    left: 10%;
    width: 80%;
    height: 2px;
    background-color: #e0e0e0;
    z-index: 1;
}

/* 카드 스타일 */
.coach-card, .benefit-card, .process-card, .story-card, .pricing-card {
    transition: all 0.3s ease;
    height: 100%;
    border-radius: 10px;
    overflow: hidden;
    border: none;
}

.coach-card:hover, .benefit-card:hover, .process-card:hover, .story-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1) !important;
}

.coach-image, .story-img, .process-img {
    height:  200px;
    overflow: hidden;
}

.story-img {
    position: relative;
}

.coach-image img, .story-img img, .process-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.coach-card:hover .coach-image img, 
.story-card:hover .story-img img,
.process-card:hover .process-img img {
    transform: scale(1.05);
}

.coach-specialty, .story-category {
    color: var(--primary);
    font-size: 0.9rem;
}

.story-category {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: var(--primary);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    z-index: 1;
}

/* 요금제 카드 */
.pricing-card .display-5 {
    font-size: 2.5rem;
}

.pricing-highlight {
    border: 2px solid var(--primary);
    position: relative;
    overflow: hidden;
}

.pricing-badge {
    position: absolute;
    top: 20px;
    right: -35px;
    transform: rotate(45deg);
    background-color: var(--primary);
    color: white;
    padding: 5px 40px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 1;
}

.pricing-header {
    padding: 30px;
    text-align: center;
    border-bottom: 1px solid #e9ecef;
}

.pricing-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
}

.pricing-body {
    padding: 30px;
}

.pricing-feature {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.pricing-feature i {
    color: var(--primary);
    margin-right: 10px;
}

/* 통계 카드 */
.stat-card {
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
}

/* 스텝 카드 */
.step-card {
    position: relative;
    padding: 2rem;
    border-radius: 10px;
    background-color: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    height: 100%;
    transition: all 0.3s ease;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.step-card .step-number {
    position: absolute;
    top: -20px;
    left: 30px;
    width: 40px;
    height: 40px;
    background-color: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.2rem;
}

/* 테스티모니얼 */
.testimonial {
    border-radius: 10px;
    background-color: white;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    position: relative;
}

.testimonial::before {
    content: '"';
    font-size: 4rem;
    font-family: Georgia, serif;
    color: var(--primary-light);
    opacity: 0.2;
    position: absolute;
    top: -10px;
    left: 10px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    margin-top: 1.5rem;
}

.testimonial-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 1rem;
}

.testimonial-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-info h5 {
    margin: 0;
    font-weight: 600;
}

.testimonial-info p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--gray);
}

/* 인용구 */
.story-quote, blockquote {
    position: relative;
    padding: 25px;
    background-color: #f8f9fa;
    border-left: 5px solid var(--primary);
    font-style: italic;
    margin: 20px 0;
}

.story-quote::before, blockquote::before {
    content: '"';
    font-size: 4rem;
    font-family: Georgia, serif;
    color: var(--primary-light);
    opacity: 0.3;
    position: absolute;
    top: -20px;
    left: 10px;
}

/* 전후 비교 */
.before-after {
    display: flex;
    gap: 20px;
    margin: 30px 0;
}

.before, .after {
    flex: 1;
    padding: 20px;
    border-radius: 10px;
}

.before {
    background-color: #f8f9fa;
    border-left: 3px solid #dc3545;
}

.after {
    background-color: #f0f9f0;
    border-left: 3px solid #28a745;
}

/* 스토리 페이지 타임라인 스타일 */
.story-timeline {
    position: relative;
    padding: 30px 0;
}

.story-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: var(--primary-light);
    transform: translateX(-50%);
}

.story-timeline .timeline-item {
    margin-bottom: 50px;
    position: relative;
}

.story-timeline .timeline-content {
    width: 45%;
    padding: 20px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: relative;
}

.story-timeline .timeline-content.left {
    margin-right: auto;
}

.story-timeline .timeline-content.right {
    margin-left: auto;
}

.story-timeline .timeline-content::after {
    content: '';
    position: absolute;
    top: 20px;
    width: 20px;
    height: 20px;
    background-color: white;
    transform: rotate(45deg);
}

.story-timeline .timeline-content.left::after {
    right: -10px;
    border-top: 1px solid #eee;
    border-right: 1px solid #eee;
}

.story-timeline .timeline-content.right::after {
    left: -10px;
    border-bottom: 1px solid #eee;
    border-left: 1px solid #eee;
}

.story-timeline .timeline-date {
    position: absolute;
    top: 20px;
    background-color: var(--primary);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.story-timeline .timeline-content.left .timeline-date {
    right: -130px;
}

.story-timeline .timeline-content.right .timeline-date {
    left: -130px;
}

.story-timeline .timeline-dot {
    position: absolute;
    top: 20px;
    left: 50%;
    width: 20px;
    height: 20px;
    background-color: var(--primary);
    border-radius: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

/* 코칭 과정 페이지 스타일 */
/* 스텝 카드 - 코칭 과정 페이지 */
.step-card {
    position: relative;
    padding: 2rem;
    border-radius: 10px;
    background-color: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    height: 100%;
    transition: all 0.3s ease;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.step-card .step-number {
    position: absolute;
    top: -20px;
    left: 30px;
    width: 40px;
    height: 40px;
    background-color: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.2rem;
}

/* 프로세스 타임라인 - 코칭 과정 페이지 */
.process-timeline {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.process-timeline::before {
    content: '';
    position: absolute;
    width: 2px;
    background-color: var(--primary-light);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -1px;
}

.process-timeline .timeline-item {
    padding: 10px 40px;
    position: relative;
    width: 50%;
    box-sizing: border-box;
    margin-bottom: 30px;
}

.process-timeline .timeline-item::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 25px;
    right: -13px;
    top: 15px;
    border-radius: 50%;
    z-index: 1;
    background: white;
    border: 4px solid var(--primary);
}

.process-timeline .left {
    left: 0;
}

.process-timeline .right {
    left: 50%;
}

.process-timeline .right::after {
    left: -12px;
}

.process-timeline .timeline-content {
    padding: 20px 30px;
    background-color: white;
    position: relative;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    width: 100%;
}

.process-timeline .timeline-content h3 {
    margin-top: 0;
    color: var(--primary);
    font-weight: 600;
}

.timeline-badge {
    display: inline-block;
    padding: 5px 15px;
    background-color: var(--primary);
    color: white;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 15px;
}

/* 폼 스타일 */
.form-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: none;
}

.form-card:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.form-card .card-header {
    background-color: var(--primary);
    color: white;
    padding: 20px;
    font-weight: 600;
    font-size: 1.2rem;
}

.form-check-input:checked {
    background-color: var(--primary);
    border-color: var(--primary);
}

.form-select:focus,
.form-control:focus {
    border-color: var(--primary-light);
    box-shadow: 0 0 0 0.25rem rgba(68, 104, 255, 0.25);
}

.form-required:after {
    content: "*";
    color: #dc3545;
    margin-left: 3px;
}

/* 아코디언 스타일 */
.accordion-item {
    border: none;
    margin-bottom: 1rem;
}

.accordion-button {
    background-color: white;
    border-radius: 10px !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    font-weight: 500;
    padding: 1.25rem;
}

.accordion-button:not(.collapsed) {
    color: var(--primary);
    background-color: rgba(68, 104, 255, 0.05);
}

.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(68, 104, 255, 0.1);
}

.accordion-button::after {
    background-size: 1.2rem;
    color: var(--primary);
}

.accordion-body {
    padding: 1.25rem;
    background-color: white;
    border-radius: 0 0 10px 10px;
}

/* 하이라이트 박스 */
.highlight-box {
    background-color: rgba(68, 104, 255, 0.05);
    border-radius: 10px;
    padding: 25px;
    margin: 30px 0;
    border-left: 5px solid var(--primary);
}

/* CTA 박스 */
.cta-box, .cta-section {
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    color: white;
    border-radius: 10px;
    padding: 40px;
    text-align: center;
    margin: 50px 0;
}

/* 연락처 정보 카드 */
.contact-info-card {
    display: flex;
    align-items: center;
    padding: 20px;
    margin-bottom: 20px;
    background-color: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid var(--primary);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact-info-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: rgba(68, 104, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--primary);
    margin-right: 20px;
}

.contact-info-text h4 {
    margin-bottom: 5px;
    font-weight: 600;
}

.contact-info-text p {
    margin-bottom: 0;
    color: var(--gray);
}

/* 탭 메뉴 */
.nav-pills .nav-link.active {
    background-color: var(--primary);
}

.nav-pills .nav-link {
    color: var(--gray-dark);
    font-weight: 500;
    padding: 15px 20px;
    border-radius: 5px;
}

.tab-pane {
    padding: 30px 0;
}

/* 비디오 컨테이너 */
.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    margin: 30px 0;
}

.video-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
}

/* 소셜 아이콘 */
.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--gray-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: var(--primary);
}

/* 반응형 미디어 쿼리 */
@media (max-width: 991px) {
    .main-visual {
        min-height: 600px;
    }

    .main-visual h1 {
        font-size: 2.5rem;
    }

    .process-line {
        display: none;
    }

    .pricing-card {
        margin-bottom: 30px;
    }
    
    /* 일반 타임라인 반응형 */
    .timeline::before {
        left: 30px;
    }
    
    .timeline-content {
        width: calc(100% - 80px);
        margin-left: 80px !important;
    }
    
    .timeline-content.left::after,
    .timeline-content.right::after {
        left: -10px;
        border-bottom: 1px solid #eee;
        border-left: 1px solid #eee;
    }
    
    .timeline-date {
        position: relative;
        display: inline-block;
        margin-bottom: 15px;
        top: auto;
        left: auto !important;
        right: auto !important;
    }
    
    .timeline-dot {
        left: 30px;
    }
    
    .before-after {
        flex-direction: column;
    }

    /* 스토리 타임라인 반응형 */
    .story-timeline::before {
        left: 30px;
    }
    
    .story-timeline .timeline-content {
        width: calc(100% - 80px);
        margin-left: 80px !important;
    }
    
    .story-timeline .timeline-content.left::after,
    .story-timeline .timeline-content.right::after {
        left: -10px;
        border-bottom: 1px solid #eee;
        border-left: 1px solid #eee;
    }
    
    .story-timeline .timeline-date {
        position: relative;
        display: inline-block;
        margin-bottom: 15px;
        top: auto;
        left: auto !important;
        right: auto !important;
    }
    
    .story-timeline .timeline-dot {
        left: 30px;
    }

    /* Process Timeline 반응형 */
    .process-timeline::before {
        left: 31px;
    }

    .process-timeline .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
    }

    .process-timeline .timeline-item::after {
        left: 18px;
        top: 15px;
    }

    .process-timeline .left::after,
    .process-timeline .right::after {
        left: 18px;
    }

    .process-timeline .right {
        left: 0;
    }
}