/* =====================================================
   GLOBAL THEME (Updated to Purple-White Gradient)
=====================================================*/
body {
    font-family: 'Segoe UI', sans-serif;
    background: linear-gradient(115deg, #bdb7ff, white);
    color: #1e1b4b;
}

/* ===============================
   CUSTOM ALERT
=================================*/
.custom-alert{
    position: fixed;
    top: 30px;
    right: 30px;
    background: #4f46e5;
    color: white;
    padding: 14px 22px;
    border-radius: 30px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 10px 25px rgba(79,70,229,0.25);
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
    transition: all 0.4s ease;
}

.custom-alert i{
    color: #22c55e;
}

.custom-alert.show{
    opacity: 1;
    transform: translateY(0);
}

/* ===============================
   TOP BAR
=================================*/
.contact-top-bar {
    padding: 20px 40px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
}

.logo-brand{
    font-size: 1.6rem;
    font-weight: 700;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo-medi{
    color: #1e1b4b;
}

.logo-coupons{
    color: #4f46e5;
    margin-left: 2px;
}

.logo-brand:hover .logo-coupons{
    color: #7c3aed;
    transition: 0.3s ease;
}

.back-home-link{
    text-decoration: none;
    font-size: 0.95rem;
    color: #1e1b4b;
    font-weight: 500;
    transition: 0.3s ease;
}
.brand-logo{
    height: 40px;
    width: 40px;
    border-radius: 50%;
    margin-right: 4px;
}

.back-home-link:hover{
    color: #4f46e5;
}

/* ===============================
   HERO
=================================*/
.hero{
    padding: 20px;
    text-align: center;
    margin-bottom: 30px;
}

.hero-container{
    max-width: 900px;
    margin: auto;
}

.hero h1{
    margin-bottom: 20px;
}

.hero p{
    color: #374151;
    margin-bottom: 30px;
}

.primary-btn{
    padding: 10px 25px;
    border-radius: 30px;
    background: #4f46e5;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.primary-btn:hover{
    background: #7c3aed;
}


/* ===============================
   EXTRA DISCOUNT SECTION
=================================*/
.extra-discount-section{
    padding: 20px 20px 40px;
}

.extra-discount-card{
    max-width: 700px;
    margin: auto;
    background: #3f38c6;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(79,70,229,0.25);
    transition: 0.3s ease;
    color: white;
}

.extra-discount-card:hover{
    transform: translateY(-6px);
}

.extra-header{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.extra-badge{
    background: white;
    color: #4f46e5;
    border: none;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
}

.extra-text{
    margin: 20px 0;
    line-height: 1.6;
}

.extra-buttons{
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.contact-btn,
.channel-btn{
    padding: 8px 18px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.9rem;
    transition: 0.3s;
}

.contact-btn{
    background: #25D366;
    color: white;
}

.channel-btn{
    background: white;
    color: #4f46e5;
}

.contact-btn:hover,
.channel-btn:hover{
    opacity: 0.85;
}

/* ===============================
   RESPONSIVE
=================================*/

@media (max-width: 600px){

    .hero h1{
        font-size: 1.4rem;
    }
}


/* Plan section */
.power-batch-section{
    max-width:1100px;
    margin:70px auto;
    padding:0 20px;
    font-family:Arial, Helvetica, sans-serif;
}

.power-header{
    text-align:center;
    margin-bottom:35px;
}

.power-header h2{
    font-size:42px;
    font-weight:700;
    margin-bottom:12px;
    color:#20135b;
}

.power-header p{
    max-width:700px;
    margin:auto;
    font-size:20px;
    line-height:1.6;
    color:#555;
}

.discount-table{
    border:1px solid #e5e5e5;
    border-radius:12px;
    overflow:hidden;
    background:#fff;
}

.table-header{
    display:grid;
    grid-template-columns:2fr 1fr;
    background:#1d1657;
    color:#fff;
    font-weight:600;
    font-size:18px;
}

.table-header div{
    padding:22px 28px;
}

.table-header div:last-child{
    border-left:1px solid rgba(255,255,255,.3);
    text-align:center;
}

.table-row{
    display:grid;
    grid-template-columns:2fr 1fr;
    align-items:center;
    min-height:60px;
    border-top:1px solid #ececec;
}

.table-row:first-of-type{
    border-top:none;
}

.category{
    padding:0 28px;
    font-size:18px;
    color:#333;
}

.discount{
    text-align:center;
    font-size:22px;
    font-weight:600;
    color:#444;
    border-left:1px solid #ececec;
    height:100%;
    display:flex;
    align-items:center;
    justify-content:center;
}

@media(max-width:768px){

    .power-header h2{
        font-size:32px;
    }

    .power-header p{
        font-size:17px;
    }

    .table-header{
        font-size:16px;
    }

    .table-row{
        min-height:50px;
    }

    .category{
        font-size:15px;
        padding:0 15px;
        word-break:break-word;
    }

    .discount{
        font-size:18px;
    }

}