/* ===== EXTRA MINUTES SECTION ===== */
.extra-minutes-section {
    position: relative;
    padding: var(--spacing-xl) 0;
    background: var(--gradient-dark);
    overflow: hidden;
}

/* ===== SECTION HEADER ===== */
.extra-minutes-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
    position: relative;
    z-index: 10;
}

.extra-minutes-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    color: var(--white);
    margin-bottom: var(--spacing-sm);
    line-height: 1.2;
    letter-spacing: -1px;
}

.extra-minutes-title .highlight {
    background: linear-gradient(135deg, var(--primary-teal) 0%, var(--accent-turquoise) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 60px rgba(0, 217, 213, 0.4);
}

.extra-minutes-subtitle {
    font-size: clamp(1rem, 1.5vw, 1.125rem);
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: var(--spacing-md);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
    font-weight: 400;
}

/* ===== TABLE WRAPPER ===== */
.extra-minutes-table-wrapper {
    max-width: 900px;
    margin: 0 auto var(--spacing-lg);
    position: relative;
    z-index: 10;
    overflow: hidden;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(0, 217, 213, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

/* ===== TABLE STYLES ===== */
.extra-minutes-table {
    width: 100%;
    border-collapse: collapse;
    position: relative;
}

/* Table Header */
.extra-minutes-table thead {
    background: linear-gradient(135deg, rgba(0, 217, 213, 0.15) 0%, rgba(0, 139, 139, 0.15) 100%);
    border-bottom: 2px solid rgba(0, 217, 213, 0.3);
}

.extra-minutes-table th {
    padding: var(--spacing-md);
    text-align: left;
    font-size: var(--font-size-lg);
    font-weight: 800;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.table-header-plan {
    padding-left: var(--spacing-md);
}

.table-header-cost {
    text-align: center;
}

/* Table Body */
.extra-minutes-table tbody tr {
    border-bottom: 1px solid rgba(0, 217, 213, 0.1);
    transition: all var(--transition-base);
    opacity: 0;
    transform: translateX(-30px);
}

.extra-minutes-table tbody tr.animate-in {
    opacity: 1;
    transform: translateX(0);
}

.extra-minutes-table tbody tr:hover {
    background: rgba(0, 217, 213, 0.08);
    transform: translateX(5px);
}

.extra-minutes-table tbody tr:last-child {
    border-bottom: none;
}

/* Popular Row Highlight */
.extra-minutes-table tbody tr.popular-row {
    background: linear-gradient(90deg, rgba(0, 217, 213, 0.12) 0%, rgba(0, 139, 139, 0.12) 100%);
    border-top: 1px solid rgba(0, 217, 213, 0.2);
    border-bottom: 1px solid rgba(0, 217, 213, 0.2);
}

.extra-minutes-table tbody tr.popular-row:hover {
    background: linear-gradient(90deg, rgba(0, 217, 213, 0.18) 0%, rgba(0, 139, 139, 0.18) 100%);
}

/* Table Cells */
.extra-minutes-table td {
    padding: var(--spacing-md);
}

/* Plan Name Cell */
.table-plan-name {
    padding-left: var(--spacing-md);
}

.plan-badge {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.plan-icon {
    font-size: 1.5rem;
    filter: drop-shadow(0 0 10px rgba(0, 217, 213, 0.3));
}

.plan-text {
    font-size: var(--font-size-lg);
    font-weight: 700;
    color: var(--white);
    letter-spacing: -0.5px;
}

.popular-tag {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-teal) 0%, var(--accent-turquoise) 100%);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(0, 217, 213, 0.4);
}

/* Cost Cell */
.table-cost {
    text-align: center;
    padding-right: var(--spacing-md);
}

.cost-amount {
    display: block;
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-teal) 0%, var(--accent-turquoise) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 40px rgba(0, 217, 213, 0.3);
    margin-bottom: 0.25rem;
}

.cost-label {
    display: block;
    font-size: var(--font-size-sm);
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

/* ===== ADDITIONAL INFO CARDS ===== */
.extra-minutes-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.info-card {
    display: flex;
    gap: var(--spacing-sm);
    padding: var(--spacing-md);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border-radius: 15px;
    border: 1px solid rgba(0, 217, 213, 0.15);
    transition: all var(--transition-base);
    opacity: 0;
    transform: translateY(30px);
}

.info-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.info-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(0, 217, 213, 0.3);
    box-shadow: 0 15px 40px rgba(0, 217, 213, 0.2);
}

.info-icon {
    font-size: 2rem;
    flex-shrink: 0;
    filter: drop-shadow(0 0 10px rgba(0, 217, 213, 0.3));
}

.info-content {
    flex: 1;
}

.info-title {
    font-size: var(--font-size-base);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.5rem;
    letter-spacing: -0.3px;
}

.info-text {
    font-size: var(--font-size-sm);
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
    .extra-minutes-info {
        grid-template-columns: 1fr;
        gap: var(--spacing-sm);
        max-width: 600px;
    }
}

@media (max-width: 768px) {
    .extra-minutes-section {
        padding: var(--spacing-lg) 0;
    }

    .extra-minutes-table-wrapper {
        margin: 0 var(--spacing-sm) var(--spacing-md);
        border-radius: 15px;
    }

    .extra-minutes-table th,
    .extra-minutes-table td {
        padding: var(--spacing-sm);
    }

    .extra-minutes-table th {
        font-size: var(--font-size-base);
    }

    .plan-text {
        font-size: var(--font-size-base);
    }

    .plan-icon {
        font-size: 1.25rem;
    }

    .cost-amount {
        font-size: var(--font-size-xl);
    }

    .popular-tag {
        font-size: 0.65rem;
        padding: 0.2rem 0.6rem;
    }

    .info-card {
        padding: var(--spacing-sm);
    }

    .info-icon {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .extra-minutes-section {
        padding: var(--spacing-md) 0;
    }

    .extra-minutes-table-wrapper {
        margin: 0 0 var(--spacing-md);
        border-radius: 10px;
    }

    .extra-minutes-table th,
    .extra-minutes-table td {
        padding: var(--spacing-xs) var(--spacing-sm);
    }

    .extra-minutes-table th {
        font-size: var(--font-size-sm);
    }

    .table-header-plan,
    .table-plan-name {
        padding-left: var(--spacing-sm);
    }

    .table-header-cost,
    .table-cost {
        padding-right: var(--spacing-sm);
    }

    .plan-badge {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .plan-icon {
        font-size: 1rem;
    }

    .plan-text {
        font-size: var(--font-size-sm);
    }

    .cost-amount {
        font-size: var(--font-size-lg);
    }

    .cost-label {
        font-size: 0.75rem;
    }

    .popular-tag {
        font-size: 0.6rem;
        padding: 0.15rem 0.5rem;
    }

    .info-card {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .info-icon {
        font-size: 1.75rem;
    }

    .info-title {
        font-size: var(--font-size-sm);
    }

    .info-text {
        font-size: 0.8rem;
    }
}

/* ===== PERFORMANCE OPTIMIZATIONS ===== */
@media (prefers-reduced-motion: reduce) {
    .extra-minutes-table tbody tr,
    .info-card {
        transition: none;
        animation: none;
        opacity: 1;
        transform: none;
    }

    .extra-minutes-table tbody tr.animate-in,
    .info-card.animate-in {
        opacity: 1;
        transform: none;
    }
}

/* ===== PRINT STYLES ===== */
@media print {
    .extra-minutes-section {
        background: white;
        padding: 2rem 0;
    }

    .extra-minutes-table-wrapper {
        border: 2px solid #ccc;
        box-shadow: none;
        background: white;
    }

    .extra-minutes-table th {
        background: #f5f5f5;
        color: #333;
    }

    .extra-minutes-table td {
        color: #333;
    }

    .info-card {
        border: 1px solid #ccc;
        background: white;
        break-inside: avoid;
    }
}

/* ===== ACCESSIBILITY ENHANCEMENTS ===== */
.extra-minutes-table tbody tr:focus-within {
    outline: 2px solid var(--primary-teal);
    outline-offset: -2px;
}

.info-card:focus-within {
    outline: 2px solid var(--primary-teal);
    outline-offset: 2px;
}

/* ===== ANIMATION DELAYS ===== */
.extra-minutes-table tbody tr:nth-child(1) {
    transition-delay: 0.1s;
}

.extra-minutes-table tbody tr:nth-child(2) {
    transition-delay: 0.2s;
}

.extra-minutes-table tbody tr:nth-child(3) {
    transition-delay: 0.3s;
}

.extra-minutes-table tbody tr:nth-child(4) {
    transition-delay: 0.4s;
}

.info-card:nth-child(1) {
    transition-delay: 0.5s;
}

.info-card:nth-child(2) {
    transition-delay: 0.6s;
}

.info-card:nth-child(3) {
    transition-delay: 0.7s;
}