/* ============================================
   VPS Details Page Styles - Modern Design
   ============================================ */

/* Hero Section */
.vps-product-hero {
    padding: 100px 0 80px;
    background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
    position: relative;
}

.breadcrumb-modern {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 32px;
    font-size: 14px;
    color: #666;
    flex-wrap: wrap;
}

.breadcrumb-modern a {
    color: #51a7ff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-modern a:hover {
    color: #3b82f6;
    text-decoration: underline;
}

.breadcrumb-modern span:last-child {
    color: #1a1a1a;
    font-weight: 600;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: linear-gradient(135deg, rgba(81, 167, 255, 0.1) 0%, rgba(59, 130, 246, 0.1) 100%);
    border: 1px solid rgba(81, 167, 255, 0.2);
    border-radius: 50px;
    margin-bottom: 20px;
    font-size: 14px;
    font-weight: 600;
    color: #51a7ff;
}

.hero-badge svg {
    width: 18px;
    height: 18px;
}

.hero-title {
    font-size: 48px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 16px;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 18px;
    color: #666;
    margin-bottom: 32px;
    line-height: 1.6;
}

/* Quick Specs */
.quick-specs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin-bottom: 32px;
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: white;
    border-radius: 12px;
    border: 1px solid rgba(81, 167, 255, 0.1);
    transition: all 0.3s ease;
}

.spec-item:hover {
    border-color: rgba(81, 167, 255, 0.3);
    box-shadow: 0 4px 12px rgba(81, 167, 255, 0.1);
}

.spec-item svg {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}

.spec-item div {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.spec-item strong {
    font-size: 12px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.spec-item span {
    font-size: 14px;
    color: #1a1a1a;
    font-weight: 600;
}

/* Hero Actions */
.hero-actions {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.btn-buy-now {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: linear-gradient(135deg, #51a7ff 0%, #3b82f6 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(81, 167, 255, 0.3);
}

.btn-buy-now:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(81, 167, 255, 0.4);
    text-decoration: none;
    color: white;
}

.btn-buy-now svg {
    width: 20px;
    height: 20px;
}

.price-tag {
    display: flex;
    align-items: baseline;
    gap: 6px;
}

.price-label {
    font-size: 14px;
    color: #666;
}

.price-value {
    font-size: 32px;
    font-weight: 800;
    color: #51a7ff;
}

.price-period {
    font-size: 16px;
    color: #999;
}

/* Trust Badges */
.trust-badges {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #666;
}

.badge-item svg {
    width: 20px;
    height: 20px;
}

/* Product Card */
.product-card {
    background: white;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    border: 2px solid rgba(81, 167, 255, 0.1);
}

.product-card .card-header {
    padding: 24px;
    background: linear-gradient(135deg, #f8fbff 0%, #ffffff 100%);
    border-bottom: 1px solid rgba(81, 167, 255, 0.1);
}

.product-card .card-header h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
}

.features-list {
    list-style: none;
    padding: 24px;
    margin: 0;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
}

.features-list li:last-child {
    border-bottom: none;
}

.features-list svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.features-list span {
    font-size: 15px;
    color: #333;
}

.product-card .card-footer {
    padding: 24px;
    background: #f8fbff;
}

.btn-card-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #51a7ff 0%, #3b82f6 100%);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
}

.btn-card-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(81, 167, 255, 0.3);
    text-decoration: none;
    color: white;
}

.btn-card-cta svg {
    width: 18px;
    height: 18px;
}

/* Category Info Section */
.category-info-section {
    padding: 80px 0;
    background: white;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
    line-height: 1.2;
}

.section-description {
    font-size: 18px;
    color: #666;
    margin-bottom: 32px;
    line-height: 1.6;
}

.subsection-title {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.ideal-for-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ideal-for-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    color: #333;
}

.ideal-for-list svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.feature-box {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px;
    background: #f8fbff;
    border-radius: 12px;
    border: 1px solid rgba(81, 167, 255, 0.1);
    transition: all 0.3s ease;
}

.feature-box:hover {
    border-color: rgba(81, 167, 255, 0.3);
    transform: translateY(-2px);
}

.feature-box svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.feature-box span {
    font-size: 15px;
    color: #1a1a1a;
    font-weight: 600;
}

/* Similar Products Section */
.similar-products-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    font-size: 18px;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

.gradient-text {
    background: linear-gradient(135deg, #51a7ff 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.products-grid {
    margin-bottom: 40px;
}

.product-card-small {
    background: white;
    border-radius: 20px;
    padding: 24px;
    border: 2px solid rgba(81, 167, 255, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

.product-card-small:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(81, 167, 255, 0.15);
    border-color: rgba(81, 167, 255, 0.3);
}

.product-card-small.active {
    border-color: #51a7ff;
    background: linear-gradient(135deg, rgba(81, 167, 255, 0.05) 0%, rgba(59, 130, 246, 0.05) 100%);
}

.current-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: linear-gradient(135deg, #51a7ff 0%, #3b82f6 100%);
    color: white;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
}

.product-name {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.product-specs {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
    flex: 1;
}

.product-specs li {
    font-size: 13px;
    color: #666;
    padding: 6px 0;
    border-bottom: 1px solid #f0f0f0;
}

.product-specs li:last-child {
    border-bottom: none;
}

.product-price {
    text-align: center;
    margin-bottom: 16px;
    padding: 16px 0;
    border-top: 1px solid #f0f0f0;
}

.product-price .price-label {
    display: block;
    font-size: 12px;
    color: #999;
    margin-bottom: 4px;
}

.product-price .price-value {
    font-size: 24px;
    font-weight: 800;
    color: #51a7ff;
}

.product-price .price-period {
    font-size: 14px;
    color: #999;
}

.btn-view-plan {
    display: block;
    text-align: center;
    padding: 12px;
    background: linear-gradient(135deg, #51a7ff 0%, #3b82f6 100%);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.btn-view-plan:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(81, 167, 255, 0.3);
    text-decoration: none;
    color: white;
}

.product-card-small.active .btn-view-plan {
    background: #e0e0e0;
    color: #666;
    cursor: default;
}

.product-card-small.active .btn-view-plan:hover {
    transform: none;
    box-shadow: none;
}

.all-plans-cta {
    text-align: center;
    margin-top: 40px;
}

.all-plans-cta p {
    font-size: 16px;
    color: #666;
    margin-bottom: 16px;
}

.btn-all-plans {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: white;
    color: #51a7ff;
    text-decoration: none;
    border: 2px solid #51a7ff;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-all-plans:hover {
    background: #51a7ff;
    color: white;
    text-decoration: none;
    transform: translateY(-2px);
}

.btn-all-plans svg {
    width: 18px;
    height: 18px;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: white;
}

.faq-accordion {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 16px;
    margin-bottom: 16px;
    border: 2px solid rgba(81, 167, 255, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(81, 167, 255, 0.3);
    box-shadow: 0 5px 20px rgba(81, 167, 255, 0.1);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px;
    background: none;
    border: none;
    text-align: left;
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: #51a7ff;
}

.faq-question[aria-expanded="true"] {
    color: #51a7ff;
}

.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(180deg);
}

.faq-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
    color: #51a7ff;
}

.faq-answer {
    padding: 0 24px 24px;
    font-size: 16px;
    color: #666;
    line-height: 1.7;
}

/* Final CTA Section */
.final-cta-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.cta-card {
    background: linear-gradient(135deg, #51a7ff 0%, #3b82f6 100%);
    border-radius: 30px;
    padding: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    box-shadow: 0 20px 60px rgba(81, 167, 255, 0.3);
    flex-wrap: wrap;
}

.cta-content {
    flex: 1;
    min-width: 300px;
}

.cta-title {
    font-size: 32px;
    font-weight: 800;
    color: white;
    margin-bottom: 16px;
    line-height: 1.2;
}

.cta-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
    line-height: 1.6;
}

.cta-features {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-features span {
    color: white;
    font-size: 15px;
    font-weight: 500;
}

.cta-action {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: flex-end;
}

.cta-price {
    text-align: right;
    color: white;
}

.cta-price .label {
    display: block;
    font-size: 14px;
    opacity: 0.9;
    margin-bottom: 4px;
}

.cta-price .value {
    font-size: 48px;
    font-weight: 800;
    line-height: 1;
}

.cta-price .period {
    font-size: 18px;
    opacity: 0.9;
}

.btn-final-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 36px;
    background: white;
    color: #51a7ff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
}

.btn-final-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    color: #51a7ff;
}

.btn-final-cta svg {
    width: 22px;
    height: 22px;
}

/* Responsive Design */
@media (max-width: 991px) {
    .vps-product-hero {
        padding: 60px 0 40px;
    }

    .hero-title {
        font-size: 36px;
    }

    .quick-specs {
        grid-template-columns: repeat(2, 1fr);
    }

    .section-title {
        font-size: 28px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .cta-card {
        padding: 40px;
        flex-direction: column;
        text-align: center;
    }

    .cta-action {
        align-items: center;
        width: 100%;
    }

    .cta-price {
        text-align: center;
    }

    .btn-final-cta {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .quick-specs {
        grid-template-columns: 1fr;
    }

    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .trust-badges {
        flex-direction: column;
        align-items: flex-start;
    }

    .section-title {
        font-size: 24px;
    }

    .section-subtitle {
        font-size: 16px;
    }

    .cta-title {
        font-size: 24px;
    }

    .cta-price .value {
        font-size: 36px;
    }

    .faq-question {
        font-size: 16px;
        padding: 20px;
    }

    .faq-answer {
        font-size: 15px;
    }
}
