/* 블로그 트래픽 페이지 전용 스타일 */

/* 히어로 섹션 */
.blog-hero {
    background: linear-gradient(135deg, #00C851 0%, #00A836 100%);
    padding: 120px 0 80px;
    margin-top: 56px;
    position: relative;
    overflow: hidden;
}

.blog-hero::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    height: 100px;
    background: white;
    transform: skewY(-2deg);
}

.blog-hero .container {
    position: relative;
    z-index: 1;
}

.blog-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white;
}

.blog-hero .lead {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.95);
}

.blog-hero .badge {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 8px 20px;
    font-size: 0.9rem;
    margin-bottom: 20px;
    display: inline-block;
}

/* 블로그 특징 카드 */
.blog-feature-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.blog-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #00C851, #00A836);
}

.blog-feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.blog-feature-card .icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #00C851, #00A836);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2.5rem;
    margin: 0 auto 25px;
}

.blog-feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--dark);
}

.blog-feature-card p {
    color: var(--gray);
    line-height: 1.7;
}

/* 블로그 서비스 섹션 */
.blog-services {
    background: #F8F9FA;
    padding: 80px 0;
}

.service-item {
    background: white;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 25px;
    transition: all 0.3s ease;
}

.service-item:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateX(10px);
}

.service-item .service-icon {
    width: 60px;
    height: 60px;
    background: #E8F5E9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00C851;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.service-item .service-content h4 {
    font-size: 1.25rem;
    margin-bottom: 10px;
    color: var(--dark);
}

.service-item .service-content p {
    margin: 0;
    color: var(--gray);
}

/* 패키지 카드 */
.package-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.package-card .package-header {
    background: linear-gradient(135deg, #00C851, #00A836);
    color: white;
    padding: 30px;
    text-align: center;
}

.package-card .package-header h3 {
    font-size: 1.75rem;
    margin-bottom: 10px;
}

.package-card .package-header .price {
    font-size: 2.5rem;
    font-weight: 700;
}

.package-card .package-header .price small {
    font-size: 1rem;
    font-weight: 400;
}

.package-card .package-body {
    padding: 30px;
}

.package-card .package-body ul {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.package-card .package-body ul li {
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
    gap: 10px;
}

.package-card .package-body ul li i {
    color: #00C851;
}

/* 포트폴리오 섹션 */
.portfolio-section {
    padding: 80px 0;
}

.portfolio-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    margin-bottom: 30px;
}

.portfolio-item:hover {
    transform: scale(1.03);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.portfolio-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.portfolio-item .portfolio-content {
    padding: 25px;
}

.portfolio-item .portfolio-content h4 {
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.portfolio-item .portfolio-content .stats {
    display: flex;
    gap: 20px;
    margin-top: 15px;
}

.portfolio-item .portfolio-content .stats .stat {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--gray);
    font-size: 0.9rem;
}

.portfolio-item .portfolio-content .stats .stat i {
    color: #00C851;
}

/* 프로세스 타임라인 */
.process-timeline {
    position: relative;
    padding: 40px 0;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #00C851;
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    padding: 20px 0;
}

.timeline-item .timeline-badge {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: white;
    border: 4px solid #00C851;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #00C851;
    z-index: 1;
}

.timeline-item .timeline-content {
    width: 45%;
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-left: auto;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-right: auto;
}

/* 실적 그래프 섹션 */
.results-section {
    background: #F8F9FA;
    padding: 80px 0;
}

.chart-container {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* CTA 플로팅 버튼 */
.floating-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.floating-cta-btn {
    background: linear-gradient(135deg, #00C851, #00A836);
    color: white;
    border: none;
    border-radius: 50px;
    padding: 15px 30px;
    font-weight: 700;
    box-shadow: 0 10px 30px rgba(0, 200, 81, 0.3);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.floating-cta-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 200, 81, 0.4);
}

/* 반응형 디자인 */
@media (max-width: 991px) {
    .process-timeline::before {
        left: 30px;
    }

    .timeline-item .timeline-badge {
        left: 30px;
    }

    .timeline-item .timeline-content {
        width: calc(100% - 100px);
        margin-left: 80px !important;
    }
}

@media (max-width: 768px) {
    .blog-hero h1 {
        font-size: 2rem;
    }

    .blog-hero .lead {
        font-size: 1.1rem;
    }

    .service-item {
        flex-direction: column;
        text-align: center;
    }

    .portfolio-item .portfolio-content .stats {
        flex-wrap: wrap;
    }

    .process-timeline::before {
        left: 20px;
    }

    .timeline-item .timeline-badge {
        left: 20px;
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }

    .timeline-item .timeline-content {
        width: calc(100% - 70px);
        margin-left: 60px !important;
    }
}