/* Subscription Services CSS - Premium Multi-Tier Layout */
.subscription-services-section {
    padding: 100px 0;
    background-color: #ffffff;
    font-family: 'Inter', sans-serif;
}

.sub-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

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

.sub-header h2 {
    font-size: 2.8rem;
    color: var(--primary-color);
    font-weight: 800;
    margin-bottom: 15px;
    letter-spacing: -1px;
}

.sub-header p {
    font-size: 1.15rem;
    color: #64748b;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.7;
}

/* What's Included Feature Grid - Matches Service Highlights Style */
.features-title {
    font-size: 2rem;
    color: var(--primary-color);
    font-weight: 800;
    margin-bottom: 40px !important;
    text-align: center;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    width: 100%;
    margin-bottom: 80px;
}

.feature-card {
    padding: 60px 25px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    min-height: 280px;
}

/* Alternating Brand Colors */
.feature-card.dark-blue {
    background-color: var(--primary-color);
}

.feature-card.teal {
    background-color: var(--accent-color);
}


.feature-card i {
    font-size: 2.5rem;
    color: var(--secondary-color); /* Gold Icon */
    margin-bottom: 20px;
    background: rgba(255, 255, 255, 0.1);
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.feature-card h4 {
    color: var(--secondary-color); /* Gold Heading to match Highlights */
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 15px;
    line-height: 1.2;
}

.feature-card p {
    color: #ffffff;
    font-size: 1rem;
    line-height: 1.5;
    font-weight: 500;
    margin: 0 auto;
}

/* Pricing Table */
.pricing-title {
    font-size: 1.8rem;
    color: var(--primary-color);
    font-weight: 800;
    margin-bottom: 40px;
    text-align: center;
}

.pricing-table-wrapper {
    overflow-x: auto;
    border-radius: 20px;
    box-shadow: var(--shadow);
    border: 1px solid #e2e8f0;
    margin-bottom: 40px;
}

.sub-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    text-align: left;
}

.sub-table th {
    background-color: var(--primary-color);
    color: #ffffff;
    padding: 25px 20px;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.sub-table td {
    padding: 25px 20px;
    border-bottom: 1px solid #f1f5f9;
    color: #334155;
    font-size: 1.05rem;
}

.sub-table .plan-name {
    font-weight: 800;
    color: var(--primary-color);
    font-size: 1.2rem;
    width: 25%;
}

.sub-table .plan-coverage {
    width: 35%;
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.5;
}

.sub-table .price-val {
    font-weight: 800;
    color: #1e293b;
    text-align: center;
}

.sub-table .best-value {
    background-color: #fffbeb;
    color: var(--secondary-color);
    font-weight: 900;
    text-align: center;
    position: relative;
    border-left: 2px solid #fef3c7;
    border-right: 2px solid #fef3c7;
}

.sub-table .best-value::after {
    content: 'BEST VALUE';
    position: absolute;
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.65rem;
    background: #cfa64b;
    color: #fff;
    padding: 2px 8px;
    border-radius: 4px;
    letter-spacing: 1px;
}

/* Value Promo */
.value-promo {
    background: var(--primary-color);
    color: #fff;
    padding: 30px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 60px;
}

.value-promo .promo-icon {
    font-size: 2.5rem;
    color: var(--secondary-color);
}

.value-promo .promo-text h3 {
    color: var(--secondary-color);
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.value-promo .promo-text p {
    font-size: 1.05rem;
    color: #94a3b8;
    margin: 0;
    line-height: 1.5;
}

/* CTA */
.sub-cta-wrapper {
    text-align: center;
}

.btn-subscribe {
    background-color: var(--accent-color);
    color: #ffffff;
    padding: 20px 60px;
    border-radius: 50px;
    font-size: 1.3rem;
    font-weight: 800;
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
    box-shadow: 0 8px 30px rgba(29, 122, 118, 0.3);
    border: none;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.btn-subscribe:hover {
    background-color: var(--primary-color);
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(11, 33, 59, 0.4);
}

/* Responsive Table (Mobile Cards) */
@media screen and (max-width: 1200px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media screen and (max-width: 900px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .sub-header h2 {
        font-size: 2.2rem;
    }

    .sub-table thead {
        display: none;
    }

    .sub-table, .sub-table tbody, .sub-table tr, .sub-table td {
        display: block;
        width: 100%;
    }

    .sub-table tr {
        margin-bottom: 25px;
        border: 1px solid #e2e8f0;
        border-radius: 16px;
        padding-top: 15px;
    }

    .sub-table td {
        border: none;
        padding: 12px 20px;
        text-align: left;
    }

    .sub-table td::before {
        content: attr(data-label);
        display: block;
        font-size: 0.75rem;
        font-weight: 800;
        text-transform: uppercase;
        color: #94a3b8;
        margin-bottom: 4px;
    }

    .sub-table .plan-name, .sub-table .plan-coverage, .sub-table .price-val, .sub-table .best-value {
        width: 100% !important;
        text-align: left !important;
    }

    .sub-table .price-val {
        border-top: 1px solid #f1f5f9;
        margin-top: 10px;
        padding-top: 20px;
        font-size: 1.4rem;
    }

    .sub-table .best-value {
        background-color: #fffbeb;
        color: #cfa64b;
        font-weight: 800;
        font-size: 1.6rem;
    }

    .sub-table .best-value::after {
        left: auto;
        right: 20px;
        transform: none;
    }

    .value-promo {
        flex-direction: column;
        text-align: center;
        padding: 40px 20px;
    }
}

@media screen and (max-width: 600px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
    .feature-card {
        padding: 50px 25px;
        min-height: auto;
    }
}
