/* ============================================================
   PRICING SECTION — Mobile-First Responsive CSS
   Breakpoints:
     Mobile      : 0 → 480px      (base styles, no query)
     Small Tab   : 481px → 600px
     Medium Tab  : 601px → 768px
     Large Tab   : 769px → 1024px
     Small Desk  : 1025px → 1280px
     Medium Desk : 1281px → 1440px
     Large Desk  : 1441px → 1920px
     XL Screens  : 1921px+
   Units : clamp() + vw — zero px in property values
   Colors: ONLY from .white-pricing / .blue-pricing theme classes
============================================================ */


/* =============================== */
/* Pricing Section — Mobile Base   */
/* =============================== */
.pricing-section {
    position: relative;
}

.pricing-section svg {
    position: absolute;
    right: 0;
    left: 0;
    height: clamp(0.8rem, 2vw, 1.3rem);
    width: 100%;
}

.pricing-container {
    margin: 0 auto;
    padding: clamp(2rem, 7vw, 4rem) clamp(0.8em, 4vw, 1.2em);
}

.pricing-section-header {
    text-align: center;
    margin-bottom: clamp(1.5rem, 5vw, 2.5rem);
}


/* =============================== */
/* Section Title                   */
/* =============================== */
.pricing-section-title {
     display: inline-block;
     font-size: 22px;
     font-weight: 300;
     margin-block: 5px;
     color: var(--helperColor);
     position: relative;
 }
.pricing-section h3 {
     font-size:16px;
     font-weight: 300;
    
 }

 .pricing-section-title::after {
     content: "";
     position: absolute;
     width: 100%;
     height: 5px;
     border-radius: 25px;
     bottom: -10%;
     left: 0;
     background-image: linear-gradient(90deg, var(--lightHelper) 0%, var(--lightHelper) 100%);
 }


/* =============================== */
/* Currency Switcher               */
/* =============================== */
.currency-switcher-section {
 
    --header-h: clamp(3.3rem, 13vw, 4rem); 
padding-top: 0;
padding-inline: clamp(0.8rem, 3vw, 1.5rem);
padding-bottom: clamp(0.5rem, 2vw, 1rem);
    text-align: center;
    position: sticky;
    top: var(--header-h);
    z-index:998; 
    box-shadow: 0 clamp(0.2em, 0.8vw, 0.4em) clamp(0.5em, 1.5vw, 0.8em) rgba(2, 6, 23, 0.25);
}

.currency-switcher-container {
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: clamp(0.2em, 0.8vw, 0.4em);
    border-radius: clamp(1.2rem, 4vw, 2rem);
    border-width: clamp(0.05rem, 0.15vw, 0.08rem);
    border-style: solid;
    box-shadow: 0 clamp(0.2em, 0.8vw, 0.4em) clamp(0.6em, 2vw, 1em) rgba(0, 0, 0, 0.05);
    gap: clamp(0.15em, 0.5vw, 0.3em);
}

.currency-btn {
    padding: clamp(0.3em, 1.2vw, 0.6em) clamp(0.6em, 2vw, 1.4em);
    border: none;
    background: transparent;
    font-family: 'Cairo', sans-serif;
    font-weight: 600;
    cursor: pointer;
    border-radius: clamp(1rem, 3vw, 1.5rem);
    
    font-size: clamp(0.78rem, 2.5vw, 0.95rem);
}

.currency-btn:hover:not(.active) {
    background-color: rgba(0, 0, 0, 0.06);
}


/* =============================== */
/* Pricing Grid                    */
/* =============================== */
.pricing-page-grid {
    display: flex;
    flex-direction: column;
    gap: clamp(1rem, 4vw, 1.8rem);
    padding: clamp(1.5rem, 5vw, 2.5rem) clamp(0.8em, 4vw, 1.2em);
}

.pricing-grid {
    display: flex;
    flex-direction: column;
    gap: clamp(0.6rem, 2.5vw, 1rem);
}


/* =============================== */
/* Pricing Card                    */
/* =============================== */
.pricing-card {
    border-radius: clamp(0.8rem, 3vw, 1.3rem);
    padding: clamp(1rem, 4vw, 1.8rem);
    width: 100%;
    text-align: center;
    box-shadow: 0 clamp(0.4em, 1.5vw, 0.7em) clamp(1em, 3vw, 2rem) rgba(0, 0, 0, 0.08);
  
    border-width: clamp(0.05rem, 0.15vw, 0.08rem);
    border-style: solid;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
   
    box-shadow: 0 clamp(0.6em, 2vw, 1em) clamp(1.5em, 4vw, 2.5rem) rgba(0, 0, 0, 0.13);
}

.pricing-card h4 {
    display: inline-block;
    font-weight: 700;
    margin-top: 15px;
    margin-bottom: 10px;
    color: var(--helperColor);
    position: relative;
    font-size: clamp(1.1rem, 4vw, 1.4rem);
}

.pricing-card h4::after {
    content: "";
    position: absolute;

    width: 80%;            
    height: 5px;

    left: 50%;              
    transform: translateX(-50%);

    bottom: -0.3em;        

    border-radius: 25px;

    background-image: linear-gradient(
        90deg,
        var(--lightHelper) 0%,
        var(--lightHelper) 100%
    );
}


.pricing-price {
    font-size: clamp(1.6rem, 6vw, 2.2rem);
    font-weight: bold;
    margin: clamp(0.8rem, 2.5vw, 1.3rem) 0;
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: clamp(0.2em, 0.8vw, 0.4em);
}

.currency-symbol {
    font-size:1.3rem;
    font-weight: normal;
}

/* Features List */
.pricing-features {
    list-style: none;
    padding: 0;
    margin-bottom: clamp(1.2rem, 4vw, 2rem);
    flex-grow: 1;
}

.pricing-features li {
    padding: clamp(0.4em, 1.5vw, 0.7em) 0;
    border-bottom-width: 0.1rem;
    border-bottom-style: dashed;
}

/* CTA Button */
.pricing-btn {
    display: inline-block;
    padding: clamp(0.5em, 1.8vw, 0.75em) clamp(1em, 3.5vw, 1.8em);
    text-decoration: none;
    border-radius: clamp(1rem, 3vw, 1.5rem);
    font-weight: bold;

    font-size: clamp(0.85rem, 3vw, 1rem);
}
/* CTA Button */
.pricing-btn-info {
    display: inline-block;
    padding: clamp(0.5em, 1.8vw, 0.75em) clamp(1em, 3.5vw, 1.8em);
    text-decoration: none;
    border-radius: clamp(1rem, 3vw, 1.5rem);
    border:solid clamp(0.1rem, 0.1vw, 0.1rem);
    font-weight: bold;
   
    font-size: clamp(0.85rem, 3vw, 1rem);
    margin-top: clamp(0.7rem, 0.4vw, 0.3rem);
}


/* =============================== */
/* Package Holder (alternative)    */
/* =============================== */
.packageHolder {
    width: 100%;
    margin: 0 auto;
}

.package {
    border-radius: clamp(0.8rem, 2.5vw, 1rem);
    margin: 0 clamp(0.3rem, 1vw, 0.6rem);
    box-shadow: 0 clamp(0.15em, 0.5vw, 0.3em) clamp(0.3em, 1vw, 0.5em) rgba(0, 0, 0, 0.2);
    height: 100%;
    display: flex;
    flex-direction: column;
    text-align: center;
}

.packageHeading {
    border-radius: clamp(0.8rem, 2.5vw, 1rem) clamp(0.8rem, 2.5vw, 1rem) 0 0;
    padding: clamp(0.8em, 2.5vw, 1.2em) 0 clamp(0.2em, 0.8vw, 0.4em);
    margin-bottom: clamp(0.6rem, 2vw, 1rem);
}

.packageHeading .title {
    font-size: clamp(1rem, 3.5vw, 1.3rem);
    font-weight: 600;
    padding: 0 clamp(0.6em, 2vw, 1em);
    margin-bottom: clamp(0.4em, 1.2vw, 0.7em);
}

.packageHeading .desc {
    padding: 0 clamp(0.6em, 2vw, 1em);
    font-size: clamp(0.78rem, 2.5vw, 0.92rem);
}

.package .priceHolder {
    padding: clamp(0.7em, 2.5vw, 1.2em) clamp(0.8em, 2.5vw, 1em);
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 clamp(-0.4rem, -1vw, -0.3rem) clamp(0.2rem, 0.5vw, 0.3rem);
    position: relative;
    background-image: url(../images/pricing-bg.png);
    background-size: cover;
    background-position: center;
    border-radius: clamp(0.3rem, 0.8vw, 0.4rem) clamp(0.3rem, 0.8vw, 0.4rem) 0 0;
}

.package .priceHolder::before,
.package .priceHolder::after {
    content: '';
    bottom: clamp(-0.25rem, -0.5vw, -0.2rem);
    width: clamp(0.4rem, 1vw, 0.6rem);
    height: clamp(0.2rem, 0.5vw, 0.3rem);
    position: absolute;
    z-index: 0;
}

.package .priceHolder::before {
    left: 0;
    clip-path: polygon(0 0, 100% 100%, 100% 0);
}

.package .priceHolder::after {
    right: 0;
    clip-path: polygon(0 0, 0 100%, 100% 0);
}

.package .salePrice {
    font-size: clamp(1rem, 3.5vw, 1.3rem);
}

.package .period {
    font-size: clamp(0.7rem, 2vw, 0.82rem);
}

.packageFeatures {
    padding: 0 clamp(0.8em, 2.5vw, 1.2em);
    margin-bottom: clamp(0.6rem, 2vw, 1rem);
    list-style: none;
    text-align: start;
    flex-grow: 1;
}

.packageFeatures .feature {
    padding: clamp(0.4em, 1.5vw, 0.65em) 0;
    border-bottom-width: clamp(0.05rem, 0.15vw, 0.08rem);
    border-bottom-style: dashed;
    list-style: none;
    font-weight: 500;
}

.packageFeatures .feature:last-of-type {
    border-bottom: 0;
}

.package .subscribe {
    display: block;
    text-align: center;
    padding: clamp(0.5em, 1.8vw, 0.7em) clamp(0.8em, 2.5vw, 1em);
    border-radius: 0 0 clamp(0.8rem, 2.5vw, 1rem) clamp(0.8rem, 2.5vw, 1rem);
    font-weight: 500;
    font-size: clamp(0.85rem, 2.5vw, 0.98rem);
    text-decoration: none;
}


/* =============================== */
/* Small Tablet  481px → 600px     */
/* =============================== */
@media (min-width: 481px) {
    .pricing-page-grid {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }

    .pricing-card {
        width: calc(50% - clamp(0.5rem, 2vw, 0.9rem));
    }

    .pricing-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .packageHolder {
        width: calc(50% - clamp(0.3rem, 1vw, 0.5rem));
    }

    .pricing-section-title {
        font-size: clamp(1.4rem, 4.5vw, 1.9rem);
    }

    .currency-btn {
        font-size: clamp(0.8rem, 2vw, 0.95rem);
    }
}


/* =============================== */
/* Medium Tablet  601px → 768px    */
/* =============================== */
@media (min-width: 601px) {
 
    .currency-switcher-section {
        --header-h: clamp(4rem, 12vw, 5.2rem);
    }

    .pricing-section-title {
        font-size: clamp(1.5rem, 4vw, 2rem);
    }

    .pricing-card h3 {
        font-size: clamp(1.15rem, 3vw, 1.45rem);
    }

    .pricing-price {
        font-size: clamp(1.8rem, 5vw, 2.4rem);
    }
}


/* =============================== */
/* Large Tablet  769px → 1024px    */
/* =============================== */
@media (min-width: 769px) {
   
    .currency-switcher-section {
        --header-h: clamp(4.5rem, 10vw, 5.5rem);
    }

    .pricing-page-grid {
        gap: clamp(1.2rem, 2.5vw, 2rem);
        padding: clamp(1.8rem, 3.5vw, 2.8rem) clamp(1em, 3vw, 2em);
    }

    .pricing-card {
        width: clamp(14rem, 28vw, 20rem);
    }

    .pricing-section-title {
        font-size: clamp(1.6rem, 3.5vw, 2.1rem);
    }

    .packageHolder {
        width: clamp(14rem, 30vw, 20rem);
    }
}


/* =============================== */
/* Small Desktop  1025px → 1280px  */
/* =============================== */
@media (min-width: 1025px) {
  
    .currency-switcher-section {
        position: static;
        box-shadow: none;
        padding: clamp(1.5rem, 3vw, 2.5rem) 0 clamp(0.8rem, 2vw, 1.2rem);
    }

    .pricing-container {
        max-width: clamp(60rem, 90vw, 75rem);
        padding: clamp(3rem, 5vw, 5rem) clamp(1.5em, 3vw, 2.5em);
    }

    .pricing-section-title {
        font-size: clamp(1.7rem, 2.5vw, 2.2rem);
    }

    .pricing-page-grid {
        flex-wrap: nowrap;
        justify-content: center;
    }

    .pricing-card {
        width: clamp(15rem, 25vw, 20rem);
    }

    .pricing-grid {
        flex-wrap: nowrap;
    }

    .packageHolder {
        width: 33.33%;
    }

    .currency-btn {
        font-size: clamp(0.85rem, 1vw, 1rem);
        padding: clamp(0.4em, 0.8vw, 0.6em) clamp(1em, 1.8vw, 1.5em);
    }
}


/* =============================== */
/* Medium Desktop  1281px → 1440px */
/* =============================== */
@media (min-width: 1281px) {
    .pricing-section-title {
        font-size: clamp(1.8rem, 2.2vw, 2.4rem);
    }

    .pricing-card h3 {
        font-size: clamp(1.2rem, 1.5vw, 1.5rem);
    }

    .pricing-price {
        font-size: clamp(2rem, 2.5vw, 2.6rem);
    }
}


/* =============================== */
/* Large Desktop  1441px → 1920px  */
/* =============================== */
@media (min-width: 1441px) {
    .pricing-container {
        max-width: clamp(70rem, 88vw, 90rem);
        padding: clamp(3.5rem, 4vw, 5.5rem) clamp(2em, 3vw, 3em);
    }

    .pricing-section-title {
        font-size: clamp(2rem, 2vw, 2.6rem);
    }
}


/* =============================== */
/* Extra Large  1921px+            */
/* =============================== */
@media (min-width: 1921px) {
    .pricing-section-title {
        font-size: clamp(2.2rem, 1.8vw, 3rem);
    }

    .pricing-card h3 {
        font-size: clamp(1.4rem, 1.2vw, 1.7rem);
    }

    .pricing-price {
        font-size: clamp(2.2rem, 2vw, 3rem);
    }
}




/* =============================== */
/* .white-pricing                  */
/* =============================== */
.white-pricing {
    background-color: var(--white);
    color: var(--helperColor);
}

.white-pricing .pricing-section-title {
    color: var(--helperColor);
}

.white-pricing .pricing-section-title::after {
    background-image: linear-gradient(90deg, var(--lightHelper) 0%, var(--lightHelper) 100%);
}

.white-pricing .currency-switcher-section {
    background-color: var(--white);
}

.white-pricing .currency-switcher-container {
    background: var(--white);
    border-color: var(--hrColor);
}

.white-pricing .currency-btn {
    color: var(--helperColor);
}

.white-pricing .currency-btn.active {
    background-color: var(--helperColor);
    color: var(--white);
    box-shadow: 0 clamp(0.2em, 0.8vw, 0.4em) clamp(0.5em, 1.5vw, 0.8em) rgba(2, 117, 216, 0.3);
}

.white-pricing .pricing-card {
    background: var(--white);
    border-color: var(--lightHelper);
}

.white-pricing .pricing-card h3 {
    color: var(--helperColor);
}

.white-pricing .pricing-price {
    color: var(--primaryColor);
}

.white-pricing .currency-symbol {
    color: var(--helperColor);
}

.white-pricing .pricing-features li {
    border-bottom-color: var(--lightHelper);
    color: var(--helperColor);
}

.white-pricing .pricing-btn {
    background-color: var(--helperColor);
    color: var(--white);
}

.white-pricing .pricing-btn:hover {
    background-color: var(--lightHelper);
}
.white-pricing .pricing-btn-info {
    background-color: var(--white);
}

/* .white-pricing .pricing-btn-info:hover {
    background-color: var(--helperColor);
    color: var(--white);
} */

/* Package */
.white-pricing .package {
    background-color: #F8F5FF;
}

.white-pricing .packageHeading {
    background-color: var(--primaryColor);
    color: var(--helperColor);
}

.white-pricing .package .priceHolder {
    background-color: var(--helperColor);
    color: var(--white);
}

.white-pricing .package .priceHolder::before,
.white-pricing .package .priceHolder::after {
    background-color: var(--helperColor);
}

.white-pricing .package .mainPrice {
    color: var(--white);
}

.white-pricing .package .period {
    color: var(--primaryColor);
}

.white-pricing .packageFeatures .feature {
    border-bottom-color: var(--lightHelper);
    color: var(--helperColor);
}

.white-pricing .package .subscribe {
    background-color: var(--lightHelper);
    color: var(--white);
}


/* =============================== */
/* .blue-pricing                   */
/* =============================== */
.blue-pricing {
    background-color: var(--lightHelper);
    color: var(--white);
}

.blue-pricing .pricing-section-title {
    color: var(--white);
}

.blue-pricing .pricing-section-title::after {
    background-image: linear-gradient(90deg, var(--white) 0%, var(--white) 100%);
}

/* Currency Switcher */
.blue-pricing .currency-switcher-section {
    background-color: var(--lightHelper);
}

.blue-pricing .currency-switcher-container {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
}

.blue-pricing .currency-btn {
    color: var(--white);
}

.blue-pricing .currency-btn.active {
    background-color: var(--white);
    color: var(--lightHelper);
    box-shadow: 0 clamp(0.2em, 0.8vw, 0.4em) clamp(0.5em, 1.5vw, 0.8em) rgba(0, 0, 0, 0.2);
}

.blue-pricing .currency-btn:hover:not(.active) {
    background-color: rgba(255, 255, 255, 0.15);
}

/* Pricing Card */
.blue-pricing .pricing-card {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
}

.blue-pricing .pricing-card h3 {
    color: var(--white);
}

.blue-pricing .pricing-price {
    color: var(--white);
}

.blue-pricing .currency-symbol {
    color: rgba(255, 255, 255, 0.75);
}

.blue-pricing .pricing-features li {
    border-bottom-color: rgba(255, 255, 255, 0.35);
    color: var(--white);
}

.blue-pricing .pricing-btn {
    background-color: var(--white);
    color: var(--lightHelper);
}

.blue-pricing .pricing-btn:hover {
    background-color: var(--helperColor);
    color: var(--white);
}
.blue-pricing .pricing-btn-info {
    background-color: var(--white);
    color: var(--lightHelper);
}

.blue-pricing .pricing-btn-info:hover {
    background-color: var(--helperColor);
    color: var(--white);
}

/* Package */
.blue-pricing .package {
    background-color: rgba(255, 255, 255, 0.1);
}

.blue-pricing .packageHeading {
    background-color: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.blue-pricing .package .priceHolder {
    background-color: rgba(255, 255, 255, 0.15);
    color: var(--white);
}

.blue-pricing .package .priceHolder::before,
.blue-pricing .package .priceHolder::after {
    background-color: rgba(255, 255, 255, 0.15);
}

.blue-pricing .package .mainPrice {
    color: var(--white);
}

.blue-pricing .package .period {
    color: rgba(255, 255, 255, 0.75);
}

.blue-pricing .packageFeatures .feature {
    border-bottom-color: rgba(255, 255, 255, 0.3);
    color: var(--white);
}

.blue-pricing .package .subscribe {
    background-color: var(--white);
    color: var(--lightHelper);
}