/* index.css — Home/Index.cshtml 專用樣式 */

.rbt-counterup {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: none;
}

.rbt-counterup .inner {
    background: transparent;
    padding: 10px;
}

.rbt-counterup .content {
    background: transparent;
}

/* === Homepage About Section === */
.homepage-about-section {
    position: relative;
}

.homepage-about-section .about-title-area h2 {
    font-size: 2.4rem;
    font-weight: 800;
    color: #1a1a2e;
    line-height: 1.3;
    letter-spacing: -0.5px;
}

.homepage-about-section .about-title-area h2 .dot {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 900;
}

.homepage-about-section .gradient-line {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #6366f1, #a78bfa, #c4b5fd);
    border-radius: 2px;
    margin-top: 16px;
    margin-bottom: 16px;
}

.homepage-about-section .about-subtitle {
    display: inline-block;
    font-size: 1.7rem;
    font-weight: 600;
    color: #6366f1;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.08), rgba(139, 92, 246, 0.06));
    padding: 6px 18px;
    border-radius: 24px;
    letter-spacing: 0.5px;
}

.homepage-about-section .about-excerpt {
    font-size: 1.85rem;
    line-height: 2;
    color: #555;
    margin-bottom: 28px;
}

.homepage-about-section .feature-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 32px;
}

.homepage-about-section .feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border-radius: 12px;
    background: #f8f9fc;
    border: 1px solid #eef0f6;
    transition: all 0.3s ease;
}

.homepage-about-section .feature-item:hover {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.06), rgba(139, 92, 246, 0.04));
    border-color: rgba(99, 102, 241, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.08);
}

.homepage-about-section .feature-item .fi-icon {
    font-size: 2.2rem;
    flex-shrink: 0;
}

.homepage-about-section .feature-item .fi-text {
    font-size: 1.7rem;
    font-weight: 600;
    color: #333;
}

.homepage-about-section .about-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: #fff;
    font-size: 1.55rem;
    font-weight: 600;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(99, 102, 241, 0.25);
}

.homepage-about-section .about-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.35);
    color: #fff;
}

.homepage-about-section .about-cta i {
    transition: transform 0.3s ease;
}

.homepage-about-section .about-cta:hover i {
    transform: translateX(4px);
}

.homepage-about-section .about-cta-mobile {
    display: none;
}

@media (max-width: 991px) {
    .homepage-about-section .about-title-area h2 {
        font-size: 1.8rem;
    }

    .homepage-about-section .feature-highlights {
        grid-template-columns: 1fr;
    }

    .homepage-about-section .about-title-area .about-cta {
        display: none;
    }

    .homepage-about-section .about-cta-mobile {
        display: inline-flex !important;
        margin-top: 20px;
    }
}