/* =====================================================
   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;
}

/* ===============================
   COUPON CARD
=================================*/
.coupon-section{
    padding: 20px;
}

.coupon-card{
    max-width: 700px;
    margin: auto;
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(79,70,229,0.12);
}

.coupon-header{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copy-btn{
    background: #4f46e5;
    color: white;
    border: none;
    padding: 6px 15px;
    border-radius: 20px;
    cursor: pointer;
    transition: 0.3s;
}

.copy-btn:hover{
    background: #7c3aed;
}

.discount-text{
    margin: 20px 0;
    color: #444;
}

.coupon-buttons{
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.visit-btn, .plans-btn{
    padding: 8px 18px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.9rem;
    transition: 0.3s;
}

.visit-btn{
    background: #4f46e5;
    color: white;
}

.plans-btn{
    background: #7c3aed;
    color: white;
}

.visit-btn:hover,
.plans-btn:hover{
    opacity: 0.85;
}

/* ===============================
   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;
}

/* ===============================
   PLANS SECTION
=================================*/
/* Base Layout (Your provided CSS) */
.plans-section {
    padding: 40px 20px;
    text-align: center;
    font-family: Arial, sans-serif; /* Added a fallback font */
}

.plans-title {
    font-size: 2rem;
    margin-bottom: 40px;
    font-weight: 700;
}

.plans-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    max-width: 1100px;
    margin: auto;
    text-align: left; /* Aligns the inner content to the left */
}

/* Benefits Section Styling */
.benifit h3 {
    font-size: 1.3rem;
    color: #4a4a4a;
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
}

/* Recreating the faint underline under "Exclusive Benefits" */
.benifit h3::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 100%;
    height: 3px;
    background-color: #fcf1d8; 
    border-radius: 2px;
}

.benifit ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.benifit li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 18px;
    font-size: 0.95rem;
    color: #444;
    line-height: 1.4;
}

.benifit li strong {
    font-weight: 600;
    color: #222;
}

/* Icon Styling */
.icon-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 24px;
    height: 24px;
    background-color: #fceabb; /* Light yellow/orange background */
    border-radius: 50%;
    margin-right: 15px;
    margin-top: 2px; /* aligns icon with the first line of text */
    font-size: 12px;
}

/* Pricing Placeholder Styling */
/* Pricing Container */
.pricing {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-top: 10px;
}

/* Base Styling for both Pricing Cards */
.pricing-card {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 24px;
    border-radius: 16px;
    cursor: pointer;
    background-color: #f6f6f6; /* Light gray background for unselected */
    border: 1px solid #dcdcdc; /* Subtle border */
    transition: all 0.3s ease;
    position: relative;
}
.pricing-card:hover{
    background-color: #e5dfe7;
}


/* Inner Layout Elements */
.card-details {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.duration {
    font-size: 0.9rem;
    color: #666;
}



/* Price Row Styling */
.price-row {
    display: flex;
    align-items: baseline;
    gap: 12px;
}

.final-price {
    font-size: 1.6rem;
    font-weight: 700;
    color: #222;
}

.original-price {
    font-size: 1.1rem;
    color: #888;
    text-decoration: line-through;
}



.discount-badge {
    font-size: 1rem;
    font-weight: 600;
    color: #2e7d32; /* Green text */
}



/* Responsive Design for Mobile */
@media (max-width: 768px) {
    .plans-container {
        grid-template-columns: 1fr; /* Stacks the columns on smaller screens */
        gap: 40px;
    }
}








/* ===============================
   TABLE STYLING
=================================*/
.custom-table{
    width:100%;
    border-collapse:collapse;
    background:rgba(255,255,255,0.7);
    border-radius:10px;
    overflow:hidden;
}

.custom-table thead{
    background:rgba(79,70,229,0.1);
}

.custom-table th,
.custom-table td{
    padding:14px 18px;
    text-align:center;
}

.custom-table tbody tr:hover{
    background:rgba(79,70,229,0.08);
}

.text-go-through{
    text-decoration: line-through;
}

/* ===============================
   RESPONSIVE
=================================*/
@media (max-width: 992px){
    .plans-container{
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px){
    .plans-container{
        grid-template-columns: 1fr;
    }

    .hero h1{
        font-size: 1.4rem;
    }
}