/* ===== SUBSCRIPTION + CATEGORY REMINDER ===== */
.sub-reminder-section {
    padding: 80px 8%;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.sub-reminder-container {
    max-width: 1300px;
    margin: 0 auto;
}

/* ===== SECTION TITLE ===== */
.sub-section-title {
    text-align: center;
    margin-bottom: 50px;
}

.sub-section-title h2 {
    font-size: 38px;
    font-weight: 800;
    color: #1e272e;
    margin-bottom: 8px;
}

.sub-section-title h2 span {
    color: #ff4757;
    position: relative;
}

.sub-section-title h2 span::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(255, 71, 87, 0.15);
    border-radius: 4px;
}

.sub-section-title p {
    color: #747d8c;
    font-size: 17px;
}

/* ============================================ */
/* ===== PLANS ROW (LEFT & RIGHT) ===== */
/* ============================================ */
.plans-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.plan-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 35px 30px 40px;
    border: 2px solid #eef0f2;
    transition: all 0.4s ease;
    position: relative;
}

.plan-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
    border-color: #ff4757;
}

.premium-plan {
    border-color: #ff4757;
    background: linear-gradient(135deg, #ffffff, #fff5f7);
}

.plan-card .plan-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: #eef0f2;
    color: #555;
    padding: 4px 16px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
}

.premium-plan .plan-badge {
    background: #ff4757;
    color: #ffffff;
    animation: badgePulse 2s infinite;
}

@keyframes badgePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.06); }
}

.plan-card .plan-icon {
    width: 65px;
    height: 65px;
    background: rgba(255, 71, 87, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #ff4757;
    margin-bottom: 14px;
}

.premium-plan .plan-icon {
    background: linear-gradient(135deg, #ff4757, #ff6b81);
    color: #ffffff;
}

.plan-card h4 {
    font-size: 22px;
    font-weight: 700;
    color: #1e272e;
    margin-bottom: 4px;
}

.plan-price {
    font-size: 34px;
    font-weight: 800;
    color: #ff4757;
    margin-bottom: 14px;
}

.plan-price span {
    font-size: 15px;
    font-weight: 400;
    color: #747d8c;
}

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

.plan-features li {
    padding: 7px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: #2c3e50;
}

.plan-features li i {
    font-size: 18px;
    width: 24px;
}

.plan-features li .fa-check-circle {
    color: #2ecc71;
}

.plan-features li .fa-times-circle {
    color: #e74c3c;
}

.plan-features li .not-included {
    color: #b0b0b0;
}

.plan-btn {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.free-btn {
    background: #f0f2f5;
    color: #1e272e;
}

.free-btn:hover {
    background: #e0e2e5;
    transform: scale(1.02);
}

.premium-btn {
    background: linear-gradient(135deg, #ff4757, #ff6b81);
    color: #ffffff;
    box-shadow: 0 8px 25px rgba(255, 71, 87, 0.3);
}

.premium-btn:hover {
    transform: scale(1.02);
    box-shadow: 0 12px 35px rgba(255, 71, 87, 0.4);
}

/* ============================================ */
/* ===== CATEGORY-WISE REMINDER ===== */
/* ============================================ */
.reminder-wrapper h3 {
    font-size: 28px;
    font-weight: 700;
    color: #1e272e;
    text-align: center;
    margin-bottom: 4px;
}

.reminder-wrapper h3 span {
    color: #ff4757;
}

.reminder-wrapper > p {
    text-align: center;
    color: #747d8c;
    font-size: 16px;
    margin-bottom: 35px;
}

.reminder-category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.reminder-category-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 25px 20px 28px;
    text-align: center;
    border: 2px solid #eef0f2;
    transition: all 0.4s ease;
}

.reminder-category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.06);
    border-color: #ff4757;
}

.reminder-category-card .cat-icon {
    font-size: 36px;
    margin-bottom: 8px;
}

.reminder-category-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: #1e272e;
    margin-bottom: 4px;
}

.reminder-category-card > p {
    font-size: 13px;
    color: #747d8c;
    margin-bottom: 14px;
}

/* ===== Category Form (Hidden by default, show on click) ===== */
.reminder-category-card .cat-form {
    display: none;
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
}

.reminder-category-card.active .cat-form {
    display: flex;
}

.reminder-category-card .cat-form input {
    padding: 10px 14px;
    border: 2px solid #e8e8e8;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s ease;
    background: #fafafa;
}

.reminder-category-card .cat-form input:focus {
    outline: none;
    border-color: #ff4757;
    box-shadow: 0 0 0 4px rgba(255, 71, 87, 0.08);
}

.reminder-category-card .cat-form input::placeholder {
    color: #b0b0b0;
}

.cat-remind-btn {
    padding: 10px;
    background: #ff4757;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.cat-remind-btn:hover {
    background: #e03d4f;
    transform: scale(1.02);
}

/* ===== Category Success ===== */
.reminder-category-card .cat-success {
    margin-top: 12px;
    padding: 10px;
    background: rgba(46, 204, 113, 0.1);
    border-radius: 8px;
    color: #2ecc71;
    font-weight: 600;
    font-size: 14px;
}

.reminder-category-card .cat-success i {
    margin-right: 6px;
}

/* ============================================ */
/* ===== RESPONSIVE ===== */
/* ============================================ */
@media (max-width: 1024px) {
    .reminder-category-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .sub-reminder-section {
        padding: 50px 5%;
    }
    .sub-section-title h2 {
        font-size: 28px;
    }
    .plans-row {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    .plan-card {
        padding: 28px 22px 32px;
    }
    .plan-price {
        font-size: 28px;
    }
    .reminder-category-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }
    .reminder-wrapper h3 {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .sub-reminder-section {
        padding: 40px 4%;
    }
    .sub-section-title h2 {
        font-size: 22px;
    }
    .sub-section-title p {
        font-size: 14px;
    }
    .reminder-category-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    .plan-card .plan-badge {
        font-size: 10px;
        padding: 3px 12px;
        top: 12px;
        right: 12px;
    }
    .plan-card h4 {
        font-size: 18px;
    }
    .plan-price {
        font-size: 24px;
    }
    .plan-features li {
        font-size: 13px;
    }
    .plan-btn {
        font-size: 14px;
        padding: 12px;
    }
    .reminder-wrapper h3 {
        font-size: 20px;
    }
    .reminder-category-card {
        padding: 20px 16px 22px;
    }
    .reminder-category-card .cat-icon {
        font-size: 28px;
    }
    .reminder-category-card h4 {
        font-size: 16px;
    }
    .cat-remind-btn {
        font-size: 13px;
        padding: 8px;
    }
}