body {
    font-family: 'Segoe UI', sans-serif;
   background: linear-gradient(135deg, #93f5e6, #fae0b9);
    color: #0f172a;;
}
/* ===============================
   CUSTOM ALERT
=================================*/
.custom-alert{
    position: fixed;
    top: 30px;
    right: 30px;
    background: #0f172a;;
    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(0,0,0,0.2);

    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
    transition: all 0.4s ease;
}

.custom-alert i{
    color: #22c55e;
}

/* Active State */
.custom-alert.show{
    opacity: 1;
    transform: translateY(0);
}
/* ===============================
   TOP BAR
=================================*/
.contact-top-bar {
    padding: 20px 40px;
    display: flex;
    flex-direction: column;   /* Stack vertically */
    align-items: flex-start;  /* Align left */
    gap: 30px;
}

/* Logo */
.logo-brand{
    font-size: 1.6rem;
    font-weight: 700;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo-medi{
    color: #0f172a;
}

.logo-coupons{
    color: #f97316;
    margin-left: 2px;
}
.brand-logo{
    height: 40px;
    width: 40px;
    border-radius: 50%;
    margin-right: 4px;
}

.logo-brand:hover .logo-coupons{
    color: #ff4da6;
    transition: 0.3s ease;
}

/* Back Link */
.back-home-link{
    text-decoration: none;
    font-size: 0.95rem;
    color: #0f172a;;
    font-weight: 500;
    transition: 0.3s ease;
}

.back-home-link:hover{
    color: #000;
}


/* ===============================
   HERO
=================================*/
.hero{
    padding: 10px 20px;
    text-align: center;
    margin-bottom: 30px;
}

.hero-container{
    max-width: 900px;
    margin: auto;
}

.hero h1{
    color: #0f172a;
    margin-bottom: 20px;
}

.hero p{
    color: #334155;
    margin-bottom: 30px;
}

.primary-btn{
    padding: 10px 25px;
    border-radius: 30px;
    background: #0f766e;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.primary-btn:hover{
    background: #f97316;
}




/* ===============================
   COUPON CARD
=================================*/
.coupon-section{
    padding: 10px 20px 10px;
}

.coupon-card{
    max-width: 700px;
    margin: auto;
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.coupon-header{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.coupon-header h3{
    color: #0f172a;;
}

.copy-btn{
   background: #0f766e;
    color: white;
    border: none;
    padding: 6px 15px;
    border-radius: 20px;
    cursor: pointer;
    position: relative;
    top: 0px;
    right: 0px;
}

.copy-btn:hover{
    background: #f97316;
}

.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: #0f766e;
    color: white;
}

.plans-btn{
    background: #f97316;
    color: white;
}

.visit-btn:hover,
.plans-btn:hover{
    opacity: 0.85;
}



/* ===============================
   RESPONSIVE
=================================*/
@media (max-width: 600px){

    .hero h1{
        font-size: 1.4rem;
    }

}




/* Join Buttons */
.join-btn{
    padding:14px 30px;
    border:none;
    border-radius:30px;
    background: linear-gradient(90deg,#25D366,#128C7E);
    color:white;
    font-weight:600;
    cursor:pointer;
    transition:0.3s;
}

.join-btn.telegram{
    background: linear-gradient(90deg,#0088cc,#005f99);
}

.join-btn:hover{
    transform:translateY(-3px);
    box-shadow:0 10px 20px rgba(0,0,0,0.3);
}

/* Custom Scrollbar */
.modal-content::-webkit-scrollbar{
   display: none;
}


/* Responsive */
@media(max-width:768px){
    .modal-content{
        height:90vh;
        padding:25px;
    }

    .modal-content h2{
        font-size:1.5rem;
    }
}

/* ===============================
   EXTRA DISCOUNT SECTION
=================================*/

.extra-discount-section{
    padding: 20px 20px 30px;
}

.extra-discount-card{
    max-width: 700px;
    margin: auto;
    background: #0f766e;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    transition: 0.3s ease;
}

.extra-discount-card:hover{
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}

/* Header */
.extra-header{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.extra-header h3{
    color: white;
}

/* Small Badge */
.extra-badge{
    background: #f97316;
    color: white;
    border: none;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
}

/* Text */
.extra-text{
    margin: 20px 0;
    color: white;
    line-height: 1.6;
}

/* Buttons */
.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;
    border: none;
}

/* Primary Button */
.contact-btn{
    background: #5bff7c;
    color: black;
}

.contact-btn:hover{
    opacity: 0.85;
}

/* Secondary Button */
.channel-btn{
    background: #f97316;
    color: white;
}

.channel-btn:hover{
    opacity: 0.85;
}

/* Responsive */
@media (max-width: 600px){

    .extra-header{
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }

}

/* ===============================
   PLANS SECTION
=================================*/
.plans-section{
    padding: 10px 20px;
    text-align: center;
}

.plans-title{
    font-size: 2rem;
    color: #0f172a;;
    margin-bottom: 40px;
    font-weight: 700;
}

/* Grid Layout */
.plans-container{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1100px;
    margin: auto;
}

/* Card */
.plan-card{
    background: white;
    padding: 20px 20px;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    transition: 0.3s ease;
    border: none;
}

.plan-card:hover{
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
    border: 1px solid #0f172a;;
}

/* Title */
.plan-card h3{
    color: #0f172a;;
    margin-bottom: 15px;
}

/* Description */
.plan-card p{
    color: #444;
    font-size: 0.95rem;
    margin-bottom: 20px;
}


/* ===============================
   RESPONSIVE DESIGN
=================================*/
@media (max-width: 992px){
    .plans-container{
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px){
    .plans-container{
        grid-template-columns: 1fr;
    }

    .plans-title{
        font-size: 1.5rem;
    }
}


/* extra for test */

/* Modal Background */
.custom-modal{
    position:fixed;
    inset:0;
    /* background:rgba(0,0,0,0.6); */
    backdrop-filter: blur(8px);
    display:flex;
    justify-content:center;
    align-items:center;
    opacity:0;
    visibility:hidden;
    transition:0.4s ease;
    z-index:999;
    overflow:auto;
}


/* Show Modal */
.custom-modal.active{
    opacity:1;
    visibility:visible;
}

/* Modal Content */
.modal-content{
    width:90vw;
    max-width:900px;
    height:90vh;
    background: linear-gradient(135deg, #71f2df, #ffdaa2);
    border-radius:20px;
    padding:40px;
    color:black;
    position:relative;
    text-align:center;

    display:flex;
    flex-direction:column;
    justify-content:flex-start; /* Start from top */
    align-items:center;
    gap:20px;
    overflow-y:auto; /* Enables internal scrolling */
    /* Floating animation */
    transform: translateY(50px) scale(0.95);
    opacity:0;
    transition: all 0.5s ease;
}

/* Floating Animation Active */
.custom-modal.active .modal-content{
    transform: translateY(0) scale(1);
    opacity:1;
}

/* Heading */
.modal-content h2{
    font-size:2rem;
}

/* Paragraph */
.modal-content p{
    max-width:800px;
    opacity:0.85;
    line-height:1.6;
}

/* Close Button */
.close-btn{
    position:absolute;
    top:10px;
    right:20px;
    font-size:28px;
    cursor:pointer;
}




/* ===============================
   TABLE STYLING (MODAL THEME)
=================================*/


.custom-table{
    width:100%;
    border-collapse:collapse;
    background:rgba(255,255,255,0.6);
    backdrop-filter: blur(5px);
    border-radius:10px;
    overflow:hidden;
    margin-bottom: 20px;
}

.custom-table thead{
    background:rgba(0,0,0,0.08);
}

.custom-table th,
.custom-table td{
    padding:14px 18px;
    text-align:center;
}

.custom-table th{
    font-weight:600;
    letter-spacing:0.5px;
}

.custom-table tbody tr{
    transition:0.3s ease;
}

.text-go-through{
    text-decoration: line-through;
}

.custom-table tbody tr:hover{
    background:rgba(255,255,255,0.8);
    transform:scale(1.01);
}

.custom-table tbody tr:not(:last-child){
    border-bottom:1px solid rgba(0,0,0,0.1);
}

/* Responsive */
@media(max-width:768px){
    .custom-table th,
    .custom-table td{
        padding:10px;
        font-size:14px;
    }
}

.contact-section{
    text-align:center;
    color:black;
    padding:20px;
    width: 100%;
}

.contact-section h2{
    margin-bottom:10px;
    margin-top: 20px;
    font-size:24px;
}

.contact-cards{
    display:flex;
    gap:20px;
    justify-content:center;
    flex-wrap:wrap;
    flex-direction: column;
    width: 100%;
    margin: auto;
}

.contact-card{
    background:rgba(255,255,255,0.6);
    backdrop-filter:blur(6px);
    padding:20px;
    border-radius:20px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    width:100%;
    box-shadow:0 4px 12px rgba(0,0,0,0.1);
}

.contact-info h3{
    margin:0;
    font-size:18px;
}

.contact-info p{
    margin:5px 0 0;
    font-weight:bold;
}
.call-modal{
    position:fixed;
    display:flex;
    justify-content:center;
    align-items:center;
    opacity:0;
    visibility:hidden;
    transition:0.4s ease;
    z-index:999;
    overflow:auto;
    max-width: 340px;
    max-height: 300px;
    margin: auto;
    overflow: hidden;
    border-radius: 20px;
    background: linear-gradient(135deg, #71f2df, #ffdaa2);
}

.call-btn{
    background:black;
    color:white;
    padding:10px 16px;
    border-radius:8px;
    text-decoration:none;
    font-weight:600;
    transition:0.3s;
}

.card{
    background: transparent;
    padding: 50px 30px;
    border: none;
    text-align: left;
    font-family: Georgia, 'Times New Roman', Times, serif;
}

/* Title */
.card h1{
    font-size: 36px;
    margin-bottom: 20px;
    text-align: center;
    background: linear-gradient(180deg,#3f8cff,#00085c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Paragraph */
.card p{
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 15px;
    background: linear-gradient(120deg, #f502b0, #0011ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}