/* Page Header */
.page-header {
    background: var(--dark-bg);
    padding: 80px 0 60px;
    text-align: center;
}

.page-header h1 {
    color: var(--text-light);
    font-size: 42px;
    margin-bottom: 15px;
}

.page-header p {
    color: var(--text-gray);
    font-size: 18px;
    margin-bottom: 25px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--text-gray);
    font-size: 14px;
}

.breadcrumb a {
    color: var(--secondary-color);
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

/* VDS Features Bar */
.vds-features-bar {
    background: var(--primary-dark);
}

/* VDS Pricing Section */
.vds-pricing {
    padding: 80px 0;
    background: #f8f9fa;
}

/* Hide old grid */
.vds-grid {
    display: none !important;
}

.vds-grid-modern {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    padding: 20px 0;
}

.vds-card {
    background: #fff;
    border-radius: 15px;
    padding: 35px 25px;
    text-align: center;
    box-shadow: 0 5px 30px rgba(0,0,0,0.08);
    transition: all 0.3s;
    position: relative;
    border: 2px solid transparent;
}

.vds-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(0,0,0,0.15);
}

.vds-card.popular {
    background: var(--dark-bg);
    border-color: var(--secondary-color);
}

.vds-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #f0f0f0;
    color: #555;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
}

.vds-card.popular .vds-badge {
    background: var(--primary-light);
    color: #fff;
}

.popular-badge {
    background: var(--accent-color);
    color: #fff;
}

.vds-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.vds-icon i {
    font-size: 32px;
    color: var(--text-light);
}

.vds-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.vds-card:not(.popular) h3 {
    color: var(--dark-bg);
}

.vds-card.popular h3 {
    color: var(--text-light);
}

.vds-price {
    font-size: 36px;
    margin-bottom: 25px;
}

.vds-card:not(.popular) .vds-price {
    color: var(--primary-color);
}

.vds-card.popular .vds-price {
    color: var(--secondary-color);
}

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

.vds-specs {
    list-style: none;
    margin-bottom: 20px;
    text-align: left;
    display: inline-block;
}

.vds-specs li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    font-size: 14px;
}

.vds-card:not(.popular) .vds-specs li {
    color: #555;
    border-color: #eee;
}

.vds-card.popular .vds-specs li {
    color: var(--text-gray);
    border-color: rgba(255,255,255,0.1);
}

.vds-specs li span {
    font-weight: 700;
    font-size: 18px;
}

.vds-card:not(.popular) .vds-specs li span {
    color: var(--primary-color);
}

.vds-card.popular .vds-specs li span {
    color: var(--secondary-color);
}

/* VDS Features List (in cards) */
.vds-card .vds-features-list {
    list-style: none;
    margin-bottom: 20px;
    text-align: left;
}

.vds-card:not(.popular) .vds-features-list li {
    color: #666;
    font-size: 13px;
    padding: 6px 0;
}

.vds-card.popular .vds-features-list li {
    color: var(--text-gray);
    font-size: 13px;
    padding: 6px 0;
}

.vds-features-list li i {
    color: var(--success);
    margin-right: 8px;
    font-size: 12px;
}

.vds-location {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
    padding: 10px;
    background: rgba(0,0,0,0.03);
    border-radius: 8px;
}

.vds-card.popular .vds-location {
    background: rgba(255,255,255,0.1);
}

.vds-location img {
    width: 24px;
    border-radius: 3px;
}

.vds-card:not(.popular) .vds-location span {
    color: #555;
}

.vds-card.popular .vds-location span {
    color: var(--text-light);
    font-size: 14px;
}

/* VDS Features Section */
.vds-features-section {
    padding: 80px 0;
    background: #fff;
}

.vds-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.vf-card {
    text-align: center;
    padding: 30px;
}

.vf-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #e6f7ff 0%, #fff 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.vf-icon i {
    font-size: 28px;
    color: var(--primary-color);
}

.vf-card h3 {
    color: var(--dark-bg);
    font-size: 18px;
    margin-bottom: 15px;
}

.vf-card p {
    color: #666;
    line-height: 1.7;
    font-size: 14px;
}

/* OS Templates */
.os-templates {
    padding: 80px 0;
    background: #f8f9fa;
}

.os-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 25px;
}

.os-card {
    background: #fff;
    padding: 30px 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 3px 15px rgba(0,0,0,0.05);
    transition: all 0.3s;
    cursor: pointer;
}

.os-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-color: var(--primary-color);
}

.os-card img {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
}

.os-card h4 {
    color: var(--dark-bg);
    font-size: 16px;
    margin-bottom: 5px;
}

.os-card span {
    color: #999;
    font-size: 13px;
}

/* Control Panels */
.control-panels {
    padding: 80px 0;
    background: #fff;
}

.cp-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.cp-card {
    background: #f8f9fa;
    padding: 35px 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s;
}

.cp-card:hover {
    background: #fff;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.cp-card h3 {
    color: var(--dark-bg);
    font-size: 20px;
    margin-bottom: 10px;
}

.cp-card p {
    color: #666;
    margin-bottom: 15px;
}

.cp-price {
    font-size: 28px;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 20px;
}

.cp-price span {
    font-size: 14px;
    color: #999;
    font-weight: 400;
}

.cp-card ul {
    list-style: none;
    text-align: left;
    margin-bottom: 25px;
}

.cp-card ul li {
    color: #555;
    padding: 8px 0;
    font-size: 14px;
}

.cp-card ul li i {
    color: var(--success);
    margin-right: 10px;
}

/* FAQ */
.vds-faq {
    background: #f8f9fa;
}

.faq {
    padding: 80px 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
}

.faq-item {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.05);
}

.faq-item h3 {
    color: var(--primary-color);
    font-size: 16px;
    margin-bottom: 12px;
}

.faq-item p {
    color: #666;
    line-height: 1.7;
    font-size: 14px;
}

.vds-card:not(.popular) .btn-outline {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.vds-card:not(.popular) .btn-outline:hover {
    background: var(--primary-color);
    color: var(--text-light);
}

.vds-card.popular .btn-outline {
    border-color: var(--secondary-color);
    color: var(--secondary-color);
}

.vds-card.popular .btn-outline:hover {
    background: var(--secondary-color);
    color: var(--dark-bg);
}

/* Responsive */
@media (max-width: 768px) {
    .page-header h1 {
        font-size: 32px;
    }

    .vds-specs {
        font-size: 13px;
    }

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

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