/* style-website-seo.css - 웹사이트 SEO 페이지 전용 스타일 */

/* 페이지 헤더 */
.page-header {
    background-color: var(--primary);
    padding: 8rem 0 4rem;
    position: relative;
    overflow: hidden;
    margin-top: 56px;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: url('/theme/drsoft-new/img/website-seo-header-bg.jpg') no-repeat center center;
    background-size: cover;
    opacity: 0.15;
    z-index: 0;
}

.header-buttons {
    margin-top: 2rem;
}

/* 서비스 소개 섹션 */
.service-intro {
    padding: 80px 0;
}

.benefits-list {
    margin-top: 30px;
}

.benefit-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.benefit-item i {
    font-size: 1.3rem;
}

/* 이미지와 통계 박스 */
.intro-image {
    position: relative;
}

.intro-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.stat-box {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    display: flex;
    gap: 30px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.3;
}

/* 프로세스 섹션 */
.process-section {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.process-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    height: 100%;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.process-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 3rem;
    font-weight: 700;
    color: rgba(252, 185, 19, 0.2);
}

.process-icon {
    width: 70px;
    height: 70px;
    background-color: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.process-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--dark);
}

.process-desc {
    color: #666;
    margin-bottom: 20px;
}

.process-list {
    list-style: none;
    padding: 0;
}

.process-list li {
    padding-left: 20px;
    position: relative;
    margin-bottom: 8px;
    color: #666;
    font-size: 0.9rem;
}

.process-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary);
}

/* 서비스 상세 섹션 */
.service-detail {
    padding: 80px 0;
}

.service-box {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    height: 100%;
    transition: transform 0.3s ease;
}

.service-box:hover {
    transform: translateY(-5px);
}

.service-header {
    background-color: var(--primary);
    color: white;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.service-icon {
    font-size: 2rem;
}

.service-title {
    font-size: 1.3rem;
    margin: 0;
}

.service-content {
    padding: 30px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.feature-item i {
    color: var(--primary);
    width: 20px;
}

.service-list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.service-list li {
    padding-left: 25px;
    position: relative;
    margin-bottom: 12px;
    line-height: 1.6;
}

.service-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

/* 성과 지표 섹션 */
.metrics-section {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.metric-card {
    text-align: center;
    padding: 40px 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    height: 100%;
    transition: transform 0.3s ease;
}

.metric-card:hover {
    transform: translateY(-5px);
}

.metric-icon {
    width: 80px;
    height: 80px;
    background-color: rgba(252, 185, 19, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: var(--primary);
}

.metric-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--dark);
}

.metric-desc {
    color: #666;
    font-size: 0.95rem;
}

/* 가격 안내 섹션 */
.pricing-section {
    padding: 80px 0;
}

.pricing-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    position: relative;
    height: 100%;
}

.pricing-card:hover {
    transform: translateY(-10px);
}

.pricing-card.featured {
    border: 2px solid var(--primary);
}

.popular-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: #ff4757;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.pricing-header {
    padding: 40px 30px;
    text-align: center;
    background-color: #f8f9fa;
}

.package-name {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--dark);
}

.package-desc {
    color: #666;
    margin-bottom: 20px;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
}

.price-label {
    font-size: 1rem;
    color: #666;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
}

.pricing-body {
    padding: 30px;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.feature-list li {
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-list li i {
    color: #2ecc71;
}

.feature-list li.disabled {
    color: #ccc;
}

.feature-list li.disabled i {
    color: #e74c3c;
}

.btn-block {
    width: 100%;
    padding: 15px;
    font-weight: 600;
    font-size: 1.1rem;
}

/* 성공 사례 섹션 */
.case-studies {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.case-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    height: 100%;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.case-card:hover {
    transform: translateY(-5px);
}

.case-header {
    margin-bottom: 25px;
}

.case-category {
    background-color: var(--primary);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 10px;
}

.case-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark);
}

.case-results {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 25px;
}

.result-item {
    text-align: center;
}

.result-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 5px;
}

.result-label {
    font-size: 0.85rem;
    color: #666;
}

.case-desc {
    color: #666;
    line-height: 1.6;
}

/* FAQ 섹션 */
.faq-section {
    padding: 80px 0;
}

.accordion-item {
    margin-bottom: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
}

.accordion-button {
    font-weight: 600;
    padding: 20px 25px;
    background-color: white;
}

.accordion-button:not(.collapsed) {
    background-color: var(--primary);
    color: white;
}

.accordion-button:focus {
    box-shadow: none;
}

.accordion-body {
    padding: 25px;
    line-height: 1.8;
    color: #666;
}

/* CTA 섹션 */
.cta-section {
    background-color: var(--primary);
    color: white;
    padding: 80px 0;
}

/* 반응형 디자인 */
@media (max-width: 992px) {
    .stat-box {
        position: static;
        margin-top: 30px;
        justify-content: center;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .page-header {
        padding: 6rem 0 3rem;
    }

    .service-intro,
    .process-section,
    .service-detail,
    .metrics-section,
    .pricing-section,
    .case-studies,
    .faq-section {
        padding: 60px 0;
    }

    .header-buttons {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .header-buttons .btn {
        width: 100%;
    }

    .stat-box {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }

    .stat-number {
        font-size: 2rem;
    }

    .case-results {
        grid-template-columns: 1fr;
    }

    .price-amount {
        font-size: 2rem;
    }
}

/* 애니메이션 효과 */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.process-card,
.service-box,
.metric-card,
.pricing-card,
.case-card {
    animation: fadeInUp 0.8s ease-out;
}

/* 이미지 플레이스홀더 */
.intro-image:not(:has(img)) {
    background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    color: #999;
    font-size: 3rem;
}

.intro-image:not(:has(img))::before {
    content: '\f1c0';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
}