/* =========================================================
   OTT PLAYLIST
   GLOBAL STYLE
========================================================= */
:root {

    --bg: #fffdfd;
    --bg-secondary: #fffffffd;
    --card: #5141c8 ;
    --card-hover: #351e1e;

    --primary: #5141c8;
    --primary-light: #5141c8 ;


    --secondary: #5141c8;
    --secondary-light:#5141c8 ;

    --text: #020202;
    --text-secondary: #ffffff;
    --text-muted: #000000;

    --border: rgb(255, 253, 253);

    --gradient:
        linear-gradient(
            135deg,
            #7c3aed,
            #2563eb
        );

    --container: 1200px;

    --radius: 18px;

    --transition: 0.3s ease;
    
    
    
}

html {
    scroll-behavior: smooth;
}

/* =========================================================
   RESET
========================================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    

}



html {
    scroll-behavior: smooth;
}


body {

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    background: var(--bg);

    color: var(--text);

    line-height: 1.6;

    overflow-x: hidden;
}


body:before {

    content: "";

    position: fixed;

    width: 500px;
    height: 500px;

    top: -200px;
    left: -180px;

    background:
        radial-gradient(
            circle,
            rgb(255, 255, 255),
            transparent 70%
        );

    filter: blur(50px);

    pointer-events: none;

    z-index: -1;
    
}


body::after {

    content: "";

    position: fixed;

    width: 500px;
    height: 500px;

    right: -220px;
    bottom: -220px;

    background:
        radial-gradient(
            circle,
            rgb(255, 255, 255),
            transparent 70%
        );

    filter: blur(60px);

    pointer-events: none;

    z-index: -1;
}


a {
    text-decoration: none;
    color: inherit;
    
}


button {
    font-family: inherit;
}


img {
    max-width: 100%;
    display: block;
}


/* =========================================================
   CONTAINER
========================================================= */

.container {

    width: 92%;

    max-width: var(--container);

    margin: 0 auto;
    
}


/* =========================================================
   HEADER
========================================================= */

.header {

    position: fixed;

    top: 0;
    left: 0;

    width: 100%;

    height: 82px;

    background:
        rgb(255, 255, 255);

    backdrop-filter: blur(18px);

    -webkit-backdrop-filter: blur(18px);

    border-bottom:
        1px solid rgb(255, 255, 255);

    z-index: 1000;

}


.header-container {

    height: 100%;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;
    color: #000000;
}


/* =========================================================
   LOGO
========================================================= */
.logo img {
    width: 150px;
    height: auto;
    display: block;
}



/* =========================================================
   NAVIGATION
========================================================= */

.nav ul {

    list-style: none;

    display: flex;

    align-items: center;

    gap: 32px;
    

}


.nav a {

    color: #000000;

    font-size: 14px;

    font-weight: 500;

    transition: var(--transition);

    position: relative;
}


.nav a::after {

    content: "";

    position: absolute;

    left: 0;
    bottom: -7px;

    width: 0;

    height: 2px;

    background: var(--gradient);

    transition: var(--transition);
    
}


.nav a:hover {

    color: #5141c8;
}


.nav a:hover::after {

    width: 100%;

}


/* =========================================================
   BUTTONS
========================================================= */

.header-buttons{

    display: inline-flex;

    align-items: center;

    justify-content: center;
    

}


.header-btn-primary {

    padding: 12px 24px;

    color: #ffffff;
    
 background: var(--gradient);
    

    box-shadow:
        0 10px 30px
        rgba(124, 58, 237, 0.22);
    
       

          display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 8px;


    font-size: 14px;

    font-weight: 700;

    transition: var(--transition);

    cursor: pointer;

     padding: 8px 10px;
     border-radius: 10px;
}


.header-btn-primary:hover{

    transform: translateY(-2px);

    box-shadow:
        0 15px 35px
        rgba(124, 58, 237, 0.35);
        background: #ffffff;
        color: #5141c8 ;
        border: #5141c8 solid 1px;
}


.header-btn-secondary{

   
    padding: 12px 24px;

    color:#5141c8 ;
    background: #ffffff;

   border: #5141c8   solid;

    box-shadow:
        0 10px 30px
        rgb(255, 254, 255);
    
        

          display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 8px;


    font-size: 14px;

    font-weight: 700;

    transition: var(--transition);

    cursor: pointer;

     padding: 6px 12px;
     border-radius: 10px;
       
}


.header-btn-secondary:hover {

    border-color:
        rgba(80, 83, 247, 0.7);

         background: var(--gradient);
         color:#ffffff;
        
}




/* =========================================================
   HEADER BUTTONS
========================================================= */

.header-buttons {

    display: flex;

    align-items: center;

    gap: 10px;
}


/* =========================================================
   MOBILE MENU
========================================================= */

.menu-toggle {

    display: none;

    width: 42px;
    height: 42px;

    border: 1px solid
        rgba(255, 255, 255, 0.909);

    background:
        rgba(255, 251, 251, 0.888);

    border-radius: 10px;

    cursor: pointer;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    gap: 5px;
}


.menu-toggle span {

    width: 19px;

    height: 2px;

    background: #fefffe;

    border-radius: 10px;
}



/* ==========================================
   HERO
========================================== */

.hero {

    position: relative;

    width: 100%;
    min-height: 357px;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;
    padding: 90px;

    background:
        radial-gradient(
            circle at 50% 0%,
            rgb(255, 255, 255) 0%,
            rgb(255, 255, 255) 45%,
            rgb(255, 255, 255) 100%
        );

}


/* ==========================================
   LIGHT DOT PATTERN
========================================== */

.hero::before {

    content: "";

    position: absolute;

    inset: 0;

    pointer-events: none;

    background-image:

        radial-gradient(
            circle,
            rgba(255,255,255,0.95) 2px,
            transparent 3px
        ),

        radial-gradient(
            circle,
            rgba(255,255,255,0.8) 2px,
            transparent 3px
        );

    background-size:
        28px 28px,
        42px 42px;

    background-position:
        0 0,
        14px 14px;

    opacity: 0.85;

}


/* ==========================================
   RIGHT LIGHT EFFECT
========================================== */

.hero::after {

    content: "";

    position: absolute;

    width: 750px;
    height: 750px;

    right: -280px;
    top: -200px;

    background:
        radial-gradient(
            ellipse,
            rgb(255, 255, 255) 0%,
            rgb(255, 253, 253) 35%,
            rgba(255, 255, 255, 0.991) 72%
        );

    pointer-events: none;

}


/* ==========================================
   HERO CONTENT
========================================== */

.hero-content {

    position: relative;

    z-index: 2;

    width: 100%;
    max-width: 1100px;

    text-align: center;

    padding: 55px 20px 50px;
    background: #eeecec;

}


/* ==========================================
   TITLE
========================================== */

.hero h1 {

    margin-bottom: 14px;

    font-size: 30px;

    font-weight: 400;

    line-height: 1.3;

    color: #000000;
    

}


/* ==========================================
   DESCRIPTION
========================================== */

.hero p {

    margin: 0 auto;

    max-width: 850px;

    font-size: 15px;

    font-weight: 400;

    line-height: 1.75;

    color: #000000;

}


/* ==========================================
   BUTTONS CONTAINER
========================================== */

.hero-buttons {

    display: flex;

    justify-content: center;
    align-items: center;

    gap: 14px;

    margin-top: 27px;

}


/* ==========================================
   GENERAL BUTTON
========================================== */

.btn {

    min-width: 157px;

    height: 48px;

    padding: 0 20px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 8px;

    text-decoration: none;

    border-radius: 6px;

    font-size: 14px;

    font-weight: 600;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        background 0.25s ease;

}


/* ==========================================
   PRIMARY BUTTON
========================================== */

.btn-primary {

    color: #ffffff;


    background: var(--gradient);

    border: 1px solid #5141c8 ;

    box-shadow:
        0 6px 18px rgba(255, 253, 253, 0.856);

 
     

}

.btn-primary:hover {

 
    box-shadow:
        0 15px 35px
        rgba(124, 58, 237, 0.35);
        background: #ffffff;
        color: #5141c8 ;

}

.hero-buttons .btn-primary:hover i.fa-circle-play {
    color: #5141c8 !important;
}

/* ==========================================
   SECONDARY BUTTON
========================================== */

.btn-secondary {

    color:#5141c8 ;

    background: rgb(255, 255, 255);

    border: 1px solid #5141c8;
   
}

.btn-secondary:hover {

    color: #ffffff;

     background: var(--gradient);

    transform: translateY(-2px);

}


/* ==========================================
   ICONS
========================================== */
.btn-primary i{
color:#ffffff ;


}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 768px) {

    .hero {

        min-height: 500px;
        padding: 20px;

    }

    .hero-content {

        padding: 60px 20px;

    }

    .hero h1 {

        font-size: 26px;

    }

    .hero p {

        font-size: 14px;

        line-height: 1.7;

    }

    .hero p br {

        display: none;

    }

    .hero-buttons {

        flex-direction: column;

        gap: 12px;

    }

    .btn {

        width: 210px;

    }

}


/* ==========================================
   SMALL MOBILE
========================================== */

@media (max-width: 480px) {

    .hero h1 {

        font-size: 23px;

    }

    .hero p {

        font-size: 13px;

    }

}

/* ==========================================
   IPTV SERVER BOXES
========================================== */


.servers-section {
    width: 100%;
    padding: 30px 20px 50px;
    box-sizing: border-box;
}


/* ==========================================
   SECTION TITLE
========================================== */


.server h2 {
    font-size: 24px;
    text-align: center;
    padding: 0px;
    margin: 0 ;
}

.server p {
    font-size: 18px;
    text-align: center;
    padding: 20px;
    margin: 10px ;
}


/* ==========================================
   SERVERS CONTAINER
========================================== */

.servers-container {
    width: 100%;
    max-width: 1200px;

    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));

    gap: 22px;

    box-sizing: border-box;
}


/* ==========================================
   SERVER CARD
========================================== */

.server-card {
    position: relative;

    width: 100%;
    min-width: 0;
    min-height: 400px;

    background: #ffffff;

    border-radius: 12px;

    padding: 0 15px 15px;

    box-sizing: border-box;

    box-shadow:
        0 3px 12px rgba(0, 0, 0, 0.08);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border 0.25s ease;
}


/* ==========================================
   SERVER CARD HOVER
========================================== */

.server-card:hover {
    transform: translateY(-3px);

    border: 2px solid #5141c8;

    box-shadow:
        0 8px 22px rgba(0, 0, 0, 0.12);
}


/* ==========================================
   LOGO AREA
========================================== */

.server-logo-area {
    position: relative;

    width: 100%;
    height: 150px;

    display: flex;

    align-items: center;
    justify-content: center;

    padding: 10px;

    box-sizing: border-box;
}


/* ==========================================
   SERVER LOGO
========================================== */

.server-logo-area img {
    display: block;

    width: 100%;
    max-width: 260px;

    height: 125px;

    object-fit: contain;
}


/* ==========================================
   RATING
========================================== */

.rating {
    position: absolute;

    top: 12px;
    right: 0;

    display: flex;

    align-items: center;

    gap: 4px;

    padding: 4px 9px;

    background: #000000;

    color: #ffffff;

    border-radius: 20px;

    font-size: 12px;

    font-weight: 700;
}


.rating i {
    color: #ffbf00;

    font-size: 12px;
}


/* ==========================================
   SERVER TITLE
========================================== */

.server-card h3 {
    margin: 8px 0 8px;

    color: #1e293b;

    font-size: 18px;

    font-weight: 500;

    line-height: 1.3;
}


/* ==========================================
   STATISTICS
========================================== */

.server-stats {
    width: 100%;

    display: grid;

    grid-template-columns: repeat(3, minmax(0, 1fr));

    gap: 5px;

    background: #ffffff;

    border-radius: 6px;

    padding: 9px 5px;

    margin-bottom: 12px;

    box-sizing: border-box;
}


.stat {
    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    text-align: center;

    min-width: 0;
}


.stat i {
    color:#5141c8 ;

    font-size: 16px;

    margin-bottom: 5px;
}


.stat strong {
    color: #172033;

    font-size: 13px;

    font-weight: 500;

    line-height: 1.2;
}


.stat span {
    margin-top: 3px;

    color: #000000;

    font-size: 11px;

    line-height: 1.2;
}


/* ==========================================
   BUTTONS
========================================== */

.description-btn,
.trial-btn,
.reseller-btn {
    width: 100%;

    height: 35px;

    border-radius: 5px;

    display: flex;

    align-items: center;

    justify-content: center;

    text-align: center;

    font-size: 13px;

    font-weight: 600;

    text-decoration: none;

    cursor: pointer;

    transition: all 0.2s ease;

    box-sizing: border-box;
}


/* ==========================================
   SHOW DESCRIPTION
========================================== */

.description-btn {
    border: none;

    background: #ffffff;

    color:#5141c8 ;

    margin-bottom: 12px;
    border: #5141c8 solid 1px;
}


.description-btn i {
    margin-right: 5px;
}


.description-btn:hover {
     background: var(--gradient);
    color:#ffffff ;
    border: #5141c8 solid 1px;
}


/* ==========================================
   FREE TRIAL
========================================== */

.trial-btn {
    background: var(--gradient);

    color: #ffffff;

    margin-bottom: 8px;
}


.trial-btn i {
    margin-right: 5px;
    
    
   
}


.trial-btn:hover {
    background: #ffffff;

    color:#5141c8 ;
    border: #5141c8 solid 1px;

    transform: translateY(-1px);
}


/* ==========================================
   RESELLER
========================================== */

.reseller-btn {
    background:#ffffff ;

    color: #5141c8;
    border: #5141c8 solid 1px;
}


.reseller-btn:hover {
   background: var(--gradient);

    color: #fbfafd;
    border: #5141c8 solid 1px;
}


/* ==========================================
   SHOW MORE BUTTON
========================================== */

.button-container {
    width: 100%;

    display: flex;

    justify-content: center;

    align-items: center;

    margin-top: 20px;

    padding: 10px;

    box-sizing: border-box;
}


.main-button {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    padding: 8px 10px;

    background: #ffffff;

    color:#5141c8 ;

    text-decoration: none;

    border-radius: 10px;

    font-size: 15px;

    font-weight: 600;

    border: 2px solid #5141c8 ;

    transition: all 0.2s ease;
}


.main-button:hover {
    color: #ffffff;

     background: var(--gradient);

    border-color: #5141c8;
    
}


/* ==========================================
   TABLET
========================================== */

@media (max-width: 1000px) {

    .servers-container {
        grid-template-columns: repeat(2, minmax(0, 1fr));

        gap: 20px;
    }

}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 650px) {

    .servers-section {
        width: 100%;

        padding: 20px 12px 40px;

        box-sizing: border-box;
    }


    .server h2 {
        font-size: 22px;

        padding: 25px 10px;

        margin: 0;
    }


    .servers-container {
        width: 100%;

        max-width: 450px;

        margin: 0 auto;

        grid-template-columns: minmax(0, 1fr);

        gap: 18px;
    }


    .server-card {
        width: 100%;

        min-width: 0;

        min-height: 400px;

        padding: 0 15px 15px;

        box-sizing: border-box;
    }


    .server-logo-area {
        width: 100%;

        height: 150px;

        padding: 10px;
    }


    .server-logo-area img {
        width: 100%;

        max-width: 260px;

        height: 125px;

        object-fit: contain;
    }


    .server-card h3 {
        font-size: 18px;
    }


    .server-stats {
        width: 100%;

        grid-template-columns: repeat(3, minmax(0, 1fr));
    }


    .stat strong {
        font-size: 12px;
    }


    .stat span {
        font-size: 10px;
    }


    .description-btn,
    .trial-btn,
    .reseller-btn {
        width: 100%;
    }

}


/* ==========================================
   SMALL MOBILE
========================================== */

@media (max-width: 380px) {

    .servers-section {
        padding-left: 8px;
        padding-right: 8px;
    }


    .server-card {
        padding-left: 12px;
        padding-right: 12px;
    }


    .server-logo-area {
        height: 140px;
    }


    .server-logo-area img {
        height: 115px;
    }


    .server-card h3 {
        font-size: 17px;
    }


    .stat strong {
        font-size: 11px;
    }


    .stat span {
        font-size: 9px;
    }

}



/* =========================================================
   GENERAL SECTION
========================================================= */

.section {

    padding: 110px 0;
    color: #000000;

}


.section-heading {

    text-align: center;

    max-width: 700px;

    margin: 0 auto 55px;
    color: #000000;
}


.section-label {

    display: inline-block;

    color: #ffffff;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 2px;

    margin-bottom: 13px;
}


.section-heading h2 {

    font-size:
        clamp(30px, 4vw, 46px);

    line-height: 1.15;

    letter-spacing: -1.2px;

    margin-bottom: 15px;
}


.section-heading h2 span {

    background: var(--gradient);

    -webkit-background-clip: text;

    background-clip: text;

    color: transparent;
    color: #000000;
}


.section-heading p {

    color: var(--text-secondary);

    font-size: 14px;
    
}


/* ==========================================
   COMPATIBLE DEVICES
========================================== */

.compatible-devices {
    width: 100%;
    background: #ffffff;

    padding-top: 60px;
    padding-bottom: 60px;
}


/* ==========================================
   CONTAINER
========================================== */

.compatible-container {
    width: 92%;
    max-width: 1175px;

    margin: 0 auto;
}


/* ==========================================
   MAIN TITLE
========================================== */

.compatible-container h2 {
    margin: 0;

    text-align: center;

    font-family: "Poppins", sans-serif;

    font-size: 28px;
    font-weight: 400;

    line-height: 1.3;

    color: #172b4d;
}


/* ==========================================
   DESCRIPTION
========================================== */

.compatible-description {
    width: 660px;
    max-width: 100%;

    margin: 27px auto 30px;

    font-family: "Poppins", sans-serif;

    font-size: 19px;
    font-weight: 300;

    line-height: 1.55;

    color: #000000;

    text-align: center ;
}


/* ==========================================
   DEVICES GRID
========================================== */

.devices-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 19px;

    width: 100%;

    margin-top: 27px;
}


/* ==========================================
   DEVICE BOX
========================================== */

.device-box {
    height: 163px;
 
    background: #ffffff;

    border: 1px solid #e1e7ef;

    border-radius: 9px;

    box-shadow:
        0 4px 8px rgba(20, 40, 70, 0.08);

    text-align: center;

    padding: 27px 10px 15px;

    box-sizing: border-box;

    transition: 0.3s ease;
}


/* ==========================================
   HOVER
========================================== */

.device-box:hover {
    transform: translateY(-3px);

    box-shadow:
        0 7px 15px rgba(20, 40, 70, 0.12);
      border: 2px solid #5141c8;    
}


/* ==========================================
   ICON
========================================== */

.device-icon {
    height: 48px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin-bottom: 12px;
}


.device-icon i {
    font-size: 36px;

    color:#5141c8 ;
}


/* ==========================================
   BOX TITLE
========================================== */

.device-box h3 {
    margin: 0 0 9px;

    font-family: "Poppins", sans-serif;

    font-size: 16px;
    font-weight: 400;

    line-height: 1.3;

    color: #000000;
}


/* ==========================================
   BOX TEXT
========================================== */

.device-box p {
    margin: 0;

    font-family: "Poppins", sans-serif;

    font-size: 13px;
    font-weight: 300;

    line-height: 1.4;

    white-space: nowrap;

    color: #000000;
    
}


/* ==========================================
   TABLET
========================================== */

@media (max-width: 900px) {

    .devices-grid {
        grid-template-columns: repeat(2, 1fr);
    }

  }


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 600px) {

    .compatible-devices {
        padding-top: 45px;
        padding-bottom: 45px;
    }


    .compatible-container {
        width: 90%;
    }


    .compatible-container h2 {
        font-size: 24px;
    }


    .compatible-description {
        width: 100%;

        text-align: center;

        font-size: 16px;

        margin-top: 20px;
    }


    .devices-grid {
        grid-template-columns: 1fr;

        gap: 15px;
    }


    .device-box {
        height: 160px;
    }


    .device-box p {
        white-space: normal;
    }

}



/* =========================================================
   FAQ
========================================================= */
.section-heading h2{
color: #000000;
font-size: 28px;
}

.faq-section {
    width: 100%;
    padding: 70px 30px 80px;
    font-size: 24px;
}

.faq-section h2 {
    text-align: center;
    font-size:20px;
    font-weight: 400;
    margin: 0 0 55px;
    color: #000000;
}

.faq-container {
    width: 80%;
    max-width: 1320px;
    margin: 0 auto;
}

/* FAQ Item */

.faq-item {
    margin-bottom: 18px;
    border: 1px solid  #5141c8;
    border-radius: 10px;
    background: #ffffff;
    overflow: hidden;

    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

/* السؤال */

.faq-question {
    width: 100%;
    min-height: 100px;

    padding: 0 28px;

    border: none;
    outline: none;
    background: #ffffff;

    display: flex;
    align-items: center;
    justify-content: space-between;

    cursor: pointer;

    font-family: inherit;
    font-size: 20px;
    font-weight: 600;
    color: #292929;

    text-align: left;
}

/* السهم */

.faq-arrow {
    color:#5141c8 ;
    font-size: 32px;
    font-weight: 400;

    transition: transform 0.3s ease;
}

/* الإجابة */

.faq-answer {
    max-height: 0;
    overflow: hidden;

    padding: 0 28px;

    transition:
        max-height 0.35s ease,
        padding 0.35s ease;
}

.faq-answer p {
    margin: 0;

    font-size: 18px;
    line-height: 1.7;
    color: #000000;
}

/* عند فتح السؤال */

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 28px 25px;
}

.faq-item.active .faq-arrow {
    transform: rotate(180deg);
}


/* Hover */

.faq-question:hover {
    background: #ffffff;

}

.started-h2 {
    
   
    width: 100%;
    text-align: center;

    }

   
.Started-h2 h2 {
    margin: 0;
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    color: #000000;
    padding: 20px;
} 

.button-start { 
  
  
    display: flex;

    justify-content: center;
    align-items: center;

    gap: 14px;

      text-align: center;
}
  






.trial-btn1{ 
   color: #ffffff;

    background: var(--gradient);

    border: 1px solid  #5141c8;

    box-shadow:
        0 6px 18px rgba(81, 70, 229, 0.20);




    min-width: 157px;

    height: 38px;

    padding: 0 20px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 8px;

    text-decoration: none;

    border-radius: 6px;

    font-size: 14px;

    font-weight: 600;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        background 0.25s ease;






}

.trial-btn1:hover{ 

background: #ffffff;
color: #5141c8 ;

}


.reseller-btn2{ 
 
color: #5141c8;

    background: rgba(255, 255, 255, 0.55);

    border: 1px solid  #5141c8;
    
    min-width: 157px;

    height: 38px;

    padding: 0 20px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 8px;

    text-decoration: none;

    border-radius: 10px;

    font-size: 14px;

    font-weight: 700;


    

}

.reseller-btn2:hover{ 
 background: var(--gradient);

color: #fffefe;

}



/* الهاتف */

@media (max-width: 768px) {

    .faq-section {
        padding: 50px 15px;
    }

    .faq-section h2 {
        font-size: 30px;
        margin-bottom: 35px;
    }

    .faq-question {
        min-height: 75px;
        padding: 0 18px;
        font-size: 19px;
    }

    .faq-arrow {
        font-size: 25px;
    }

    .faq-answer {
        padding: 0 18px;
    }

    .faq-item.active .faq-answer {
        padding: 0 18px 20px;
    }

    .faq-answer p {
        font-size: 16px;
    }
}





/* ==========================================
   CONTACT US SECTION
========================================== */

.contact-section {
    width: 100%;
    padding: 65px 30px 60px;
    background: #ffffff;
}


/* TITLE */

.contact-title {
    margin: 0 0 28px;
    text-align: center;

    color: #18233a;

    font-size: 30px;
    font-weight: 400;
}


/* CONTAINER */

.contact-container {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(4, 1fr);

    gap: 20px;
}


/* CARD */

.contact-card {
    min-height: 212px;

    padding: 28px 25px 22px;

    background: #ffffff;

    border: 1px solid #e4e8ef;

    border-radius: 8px;

    text-align: center;

    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);

    transition: all 0.3s ease;
}


/* CARD HOVER */

.contact-card:hover {
    transform: translateY(-5px);

    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.10);

    transform: translateY(-3px);

    box-shadow:
        0 7px 15px rgba(20, 40, 70, 0.12);
      border: 2px solid #5141c8;    
}



/* ICON */

.contact-icon {
    width: 48px;
    height: 48px;

    margin: 0 auto 16px;

    display: flex;

    align-items: center;
    justify-content: center;

    color:#5141c8 ;

    font-size: 29px;
}


/* TELEGRAM */

.telegram-icon {
    color:#159bd7 ;
}


/* CARD TITLE */

.contact-card h3 {
    margin: 0 0 12px;

    color: #000000;

    font-size: 17px;
    font-weight: 400;
}


/* DESCRIPTION */

.contact-card p {
    max-width: 230px;

    margin: 0 auto 12px;

    color: #000000;

    font-size: 13px;
    line-height: 1.8;
}


/* LINKS */

.contact-card a {
    color: #5141c8;

    font-size: 14px;
    font-weight: 600;

    text-decoration: none;

    transition: color 0.3s ease;
}


/* LINK HOVER */

.contact-card a:hover {
    color:#5141c8 ;
}


/* ==========================================
   RESPONSIVE
========================================== */

@media (max-width: 900px) {

    .contact-container {
        grid-template-columns: repeat(2, 1fr);
    }

}


@media (max-width: 600px) {

    .contact-section {
        padding: 50px 20px;
    }

    .contact-title {
        font-size: 26px;
    }

    .contact-container {
        grid-template-columns: 1fr;
    }

}




/* ==========================================
   M3U CONVERTER
========================================== */

.container-m3u {
    width: 100%;
    padding: 60px 20px;
}

.m3u-container {
    width: 60%;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}


/* ==========================================
   TITLE
========================================== */

.m3u-title {
    margin: 0 0 25px;
    text-align: center;
    font-size: 32px;
    font-weight: 800;
    color: #000000;
}


/* ==========================================
   DESCRIPTION
========================================== */

.m3u-description {
    margin: 0 auto 35px;
    max-width: 750px;

    text-align: center;

    font-size: 18px;
    line-height: 1.7;

    color: #000000;
}


/* ==========================================
   FORM
========================================== */

.m3u-form-group {
    width: 100%;
    margin-bottom: 20px;
}


.m3u-form-group label {
    display: block;

    margin-bottom: 10px;

    text-align: center;

    font-size: 20px;
    font-weight: 700;

    color: #000000;
}


.m3u-form-group label span {
    font-size: 16px;
    font-weight: 500;
}


/* ==========================================
   INPUT
========================================== */

.m3u-form-group input {
    display: block;

    width: 80%;
    height: 55px;

    margin: 0 auto;

    padding: 0 18px;

    border: 2px solid#5141c8 ;
    border-radius: 14px;

    background: #ffffff;

    color: #000000;

    font-size: 17px;

    outline: none;

    transition: 0.3s ease;
}


.m3u-form-group input:focus {
    border-color: #5141c8;

    box-shadow:
        0 0 0 3px rgba(49, 83, 252, 0.10);
}


.m3u-form-group input::placeholder {
    color: #848181;
}



/* ==========================================
   GET INFO BUTTON
========================================== */
.m3u-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin: 25px auto;
}

.m3u-buttons button {
    padding: 12px 30px;
    min-width: 100px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    color: #ffffff;
    background: var(--gradient);
}
.m3u-buttons button:hover { 

    background: #f8f6ff;
    color: #5141c8;
    border: #5141c8 solid;
}


/* ==========================================
   RESULT#5141c8
========================================== */

.m3u-result {
    display: none;

    width: 100%;

    margin: 70px auto 0;

    padding: 30px 20px;

    text-align: left;
}


/* ==========================================
   RESULT TITLE
========================================== */

.m3u-result h2 {
    margin: 0 0 15px;

    text-align: center;

    font-size: 26px;
    font-weight: 800;

    color: #000000;
}


.m3u-result h3 {
    margin: 15px 0;

    font-size: 20px;
    font-weight: 700;

    color: #000000;
}


/* ==========================================
   ACCOUNT INFORMATION
========================================== */

.m3u-info {
    width: 100%;
}


.m3u-info p {
    margin: 14px 0;

    font-size: 18px;

    line-height: 1.6;

    color: #000000;

    word-break: break-word;
}


.m3u-info strong {
    font-weight: 700;
}


.m3u-info span {
    color: #000000;



}


/* ==========================================
   SEPARATOR
========================================== */

.m3u-line {
    width: 100%;

    margin: 25px 0;

    border-top: 2px dashed #222222;
}


/* ==========================================
   COPY BOX
========================================== */

.m3u-copy-box {
    display: flex;

    align-items: center;

    gap: 15px;

    width: 100%;

    min-height: 50px;
}


.m3u-copy-box span {
    flex: 1;

    min-width: 0;

    font-size: 17px;

    line-height: 1.5;

    color: #000000;

    word-break: break-all;
}


/* ==========================================
   EXPIRED
========================================== */

.m3u-expired {
    margin: 10px 0;

    font-size: 18px;

    color: #000000;
}


/* ==========================================
   TABLET
========================================== */

@media (max-width: 900px) {

    .m3u-container {
        width: 80%;
    }

    .m3u-form-group input {
        width: 90%;
    }
}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 600px) {

    .container-m3u {
        padding: 40px 15px;
    }


    .m3u-container {
        width: 100%;
    }


    .m3u-title {
        font-size: 27px;
        margin-bottom: 20px;
    }


    .m3u-description {
        font-size: 16px;
        margin-bottom: 30px;
    }


    .m3u-form-group label {
        font-size: 18px;
    }


    .m3u-form-group input {
        width: 100%;
        height: 55px;

        font-size: 15px;
    }


    .m3u-get-btn {
        width: auto;

        padding: 12px 35px;

        font-size: 17px;
    }


    .m3u-result {
        margin-top: 50px;

        padding: 20px 5px;
    }


    .m3u-result h2 {
        font-size: 23px;
    }


    .m3u-result h3 {
        font-size: 18px;
    }


    .m3u-info p {
        font-size: 16px;
    }


    .m3u-copy-box {
        align-items: flex-start;

        gap: 10px;
    }


    .m3u-copy-box span {
        font-size: 14px;
    }


    .m3u-copy-box button {
        min-width: 65px;
        height: 38px;

        padding: 0 10px;

        font-size: 14px;
    }
}

/* =========================================================
   FOOTER
========================================================= */

.footer {

    border-top:
        1px solid
        rgba(255,255,255,0.06);

    background: #fefeff;
    color: #000000;
}


.footer-container {

    min-height: 150px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;
}


.footer-brand p {

    color: var(--text-muted);

    font-size: 16px;

    margin-top: 7px;
}


.footer-links {

    display: flex;

    align-items: center;

    gap: 25px;
}


.footer-links a {

    color: #000000;

    font-size: 16px;

    transition: var(--transition);
}


.footer-links a:hover {

    color: #5141c8;
}


.footer-social {

    display: flex;

    gap: 8px;
}



.footer-social a {

    width: 40px;
    height: 30px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 10px;

    color:#ffffff ;

    background: #5141c8 ;
    
       

    border:#5141c8  ;

    font-size:  14px;

    transition: var(--transition);
}


.footer-social a:hover {

    color: #5141c8  ;
border: #5141c8  solid 1px;
    background:
        rgb(255, 255, 255);

   
}

.footer-bottom {

    padding: 18px 0;

    border-top:
        1px solid
        rgba(255,255,255,0.04);

    text-align: center;
}


.footer-bottom p {

    color: #000000;

    font-size: 14px;
}


/* =========================================================
   RESPONSIVE — TABLET
========================================================= */

@media (max-width: 1000px) {

    .nav {
        display: none;
    }

    .header-buttons {
        margin-left: auto;
    }

    .hero-container {

        grid-template-columns: 1fr;

        text-align: center;

        gap: 60px;
    }

    .hero-content > p {

        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {

        justify-content: center;
    }

    .hero-features {

        justify-content: center;
    }

    .hero-visual {

        max-width: 600px;

        margin: auto;
    }

    .stats-grid {

        grid-template-columns:
            repeat(2, 1fr);
    }

    .server-grid {

        grid-template-columns:
            repeat(2, 1fr);
    }

    .server-card:last-child {

        grid-column:
            1 / -1;

        max-width: 50%;

        margin: auto;
    }

    .device-grid {

        grid-template-columns:
            repeat(3, 1fr);
    }

    .contact-grid {

        grid-template-columns: 1fr;
    }

}
/* =========================================================
   MOBILE NAVIGATION
========================================================= */

@media (max-width: 1000px) {

    .nav.mobile-active {

        display: block;

        position: absolute;

        top: 82px;

        left: 4%;

        width: 92%;

        padding: 20px;

        background:
            rgba(8, 9, 15, 0.98);

        border:
            1px solid
            rgba(124, 58, 237, 0.2);

        border-radius: 16px;

        box-shadow:
            0 20px 50px
            rgba(0, 0, 0, 0.4);
    }


    .nav.mobile-active ul {

        flex-direction: column;

        align-items: stretch;

        gap: 5px;
    }


    .nav.mobile-active a {

        display: block;

        padding: 13px;

        border-radius: 10px;
    }


    .nav.mobile-active a:hover {

        background:
            rgba(124, 58, 237, 0.08);
    }

}

/* =========================================================
   RESPONSIVE — MOBILE
========================================================= */

@media (max-width: 700px) {

    .header {

        height: 72px;
    }

    .header-buttons {

        display: none;
    }

    .menu-toggle {

        display: flex;
    }

    .container {

        width: 90%;
    }

    .hero {

        padding-top: 120px;

        padding-bottom: 70px;
    }

    .hero-container {

        min-height: auto;
    }

    .hero h1 {

        font-size: 42px;

        letter-spacing: -1.7px;
    }

    .hero-content > p {

        font-size: 14px;
    }

    .hero-buttons {

        flex-direction: column;

        width: 100%;
    }

    .hero-buttons .btn {

        width: 100%;

        max-width: 290px;
    }

    .hero-features {

        flex-direction: column;

        gap: 9px;
    }

    .hero-card {

        transform: none;

        padding: 12px;

        border-radius: 18px;
    }

    .screen {

        height: 220px;
    }

    .stats {

        padding-bottom: 55px;
    }

    .stats-grid {

        grid-template-columns:
            repeat(2, 1fr);

        gap: 10px;
    }

    .stat-card {

        padding: 20px 10px;
    }

    .stat-card strong {

        font-size: 22px;
    }

    .section {

        padding: 80px 0;
    }

    .section-heading {

        margin-bottom: 40px;
    }

    .server-grid {

        grid-template-columns: 1fr;
    }

    .server-card:last-child {

        grid-column: auto;

        max-width: none;
    }

    .device-grid {

        grid-template-columns:
            repeat(2, 1fr);
    }

    .device-card {

        padding: 20px 10px;
    }

    .cta {

        padding-bottom: 80px;
    }

    .cta-box {

        padding: 60px 20px;
    }

    .footer-container {

        padding: 35px 0;

        flex-direction: column;

        text-align: center;
    }

    .footer-links {

        flex-wrap: wrap;

        justify-content: center;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 420px) {

    .logo {

        font-size: 21px;
    }

    .hero h1 {

        font-size: 36px;
    }

    .stats-grid {

        grid-template-columns: 1fr;
    }

    .device-grid {

        grid-template-columns: 1fr 1fr;
    }

    .server-card {

        padding: 22px;
    }

    .faq-question {

        padding: 17px;

        font-size: 13px;
    }

}

/* =========================================================
   MOBILE MENU ANIMATION
========================================================= */

.menu-toggle span {
    transition: 0.3s ease;
}


/* عندما تكون القائمة مفتوحة */

.menu-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}


/* =========================================================
   HEADER SCROLL EFFECT
========================================================= */

.header.scrolled {
    background:
        rgba(254, 254, 255, 0.95);

    border-bottom:
        1px solid
        rgba(0, 0, 0, 0.18);

    box-shadow:
        0 10px 35px
        rgb(255, 255, 255);
        
}



/* =========================================================
   MOBILE MENU
========================================================= */

@media (max-width: 768px) {

    /* إظهار زر القائمة */
    .menu-toggle {
        display: flex;
        width: 42px;
        height: 42px;

        border: none;
        background: transparent;

        border-radius: 10px;
        cursor: pointer;

        flex-direction: column;
        align-items: center;
        justify-content: center;

        gap: 5px;
    }

    /* لون خطوط القائمة */
    .menu-toggle span {
        width: 22px;
        height: 3px;

        background: #5141c8;

        border-radius: 10px;

        transition: 0.3s ease;
    }


    /* إخفاء القائمة العادية في الهاتف */
    .nav {
        display: none;
    }


    /* القائمة عند الضغط على ☰ */
    .nav.mobile-active {
        display: block;

        position: absolute;

        top: 82px;
        left: 0;
        right: 0;

        background: #ffffff;

        padding: 20px;

        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);

        z-index: 999;
    }


    /* ترتيب الروابط */
    .nav.mobile-active ul {
        display: flex;

        flex-direction: column;

        align-items: center;

        gap: 20px;

        margin: 0;
        padding: 0;
    }


    .nav.mobile-active a {
        color: #5141c8;

        font-size: 16px;

        font-weight: 600;

        text-decoration: none;
    }


    /* إخفاء أزرار الهيدر في الهاتف */
    .header-buttons {
        display: none;
    }


    /* زر القائمة */
    .menu-toggle.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

}
