/* Slimify Core Landing Sections - Styling */

.slimify-sec-wrapper {
    
    direction: rtl;
    text-align: right;
    box-sizing: border-box;
    margin: 0px auto;
}

.slimify-sec-wrapper * {
    box-sizing: border-box;
}

/* Common Section Headers */
.slimify-sec-header {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 40px auto;
}

.slimify-sec-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 18px;
    background: #ecfdf5;
    color: #065f46;
    border: 1px solid #a7f3d0;
    border-radius: 9999px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 14px;
}

@media (max-width: 640px) {
    .slimify-sec-badge {
        align-items: center !important;
        justify-content: center !important;
        width: 100% !important;
    }
}


.slimify-sec-title {
    color: #0d281e;
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 12px 0;
    line-height: 1.35;
}

@media (min-width: 640px) {
    .slimify-sec-title {
        font-size: 20px;
    }
}

.slimify-sec-subtitle {
    color: #4b6354;
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
}


/* =========================================================
   1. WHY CHOOSE SLIMIFY SECTION - ACCORDION CARDS
   ========================================================= */

.slimify-why-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

@media (min-width: 640px) {
    .slimify-why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .slimify-why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.slimify-why-card {
    background: #ffffff;
    border: 1.5px solid #e6efe9;
    border-radius: 24px;
    padding: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px -10px rgba(5, 150, 105, 0.05);
    overflow: hidden;
}

.slimify-why-card:hover {
    border-color: #10b981;
}

/* رأس الكرت */
.slimify-why-card-header {
    display: flex;
    align-items: center;
    gap: 14px;
}

.slimify-why-icon {
    width: 30px;
    height: 30px;
    min-width: 30px;
    border-radius: 16px;
    background: #ecfdf5;
    border: 1px solid #a7f3d0;
    color: #059669;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.slimify-why-heading {
    flex: 1;
    font-size: 16px;
    font-weight: 600;
    color: #0d281e;
    margin: 0;
    line-height: 1.4;
}

/* علامة الفتح والإغلاق */
.slimify-why-card-header::after {
    content: "+";
    width: 30px;
    height: 30px;
    min-width: 30px;
    border-radius: 50%;
    background: #ecfdf5;
    color: #059669;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 400;
    transition: all 0.3s ease;
}

/* إخفاء المعلومات */
.slimify-why-content {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition:
        max-height 0.5s ease,
        opacity 0.3s ease,
        padding 0.3s ease;
}

/* عند فتح الكرت */
.slimify-why-card.active {
    border-color: #10b981;
    box-shadow: 0 20px 35px -12px rgba(5, 150, 105, 0.12);
}

.slimify-why-card.active .slimify-why-icon {
    background: #059669;
    color: #ffffff;
}

.slimify-why-card.active .slimify-why-card-header::after {
    content: "−";
    background: #059669;
    color: #ffffff;
}

.slimify-why-card.active .slimify-why-content {
    max-height: 500px;
    opacity: 1;
    padding-top: 18px;
}

.slimify-why-text {
    font-size: 14px;
    color: #4b6354;
    line-height: 1.65;
    margin: 0;
}

.slimify-why-stat {
    margin-top: 16px;
    padding-top: 14px;
    border-top: 1px dashed #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 12px;
    font-weight: 800;
    color: #065f46;
}

/* =========================================================
   2. HOW IT WORKS SECTION (Interactive 3-Pillar Layout)
   ========================================================= */
.slimify-how-container {
    background: #ffffff;
    border-radius: 30px;
    border: 1.5px solid #e2ebe5;
    padding: 36px 28px;
    box-shadow: 0 20px 40px -15px rgba(5, 150, 105, 0.06);
}

.slimify-how-steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    position: relative;
}

@media (min-width: 900px) {
    .slimify-how-steps {
        grid-template-columns: repeat(3, 1fr);
    }
}

.slimify-how-step {
    background: #f8faf8;
    border: 1.5px solid #e6efe9;
    border-radius: 24px;
    padding: 30px 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
    transition: all 0.3s ease;
}

.slimify-how-step:hover {
    background: #ffffff;
    border-color: #059669;
    transform: translateY(-4px);
    box-shadow: 0 15px 30px -10px rgba(5, 150, 105, 0.12);
}

.slimify-step-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.slimify-step-badge-num {
    font-size: 14px;
    font-weight: 900;
    color: #ffffff;
    background: #059669;
    width: 32px;
    height: 32px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slimify-step-icon-wrap {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: #ecfdf5;
    color: #059669;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slimify-step-title {
    font-size: 16px;
    font-weight: 600;
    color: #0d281e;
    margin: 0;
    line-height: 1.35;
}

.slimify-step-desc {
    font-size: 14px;
    color: #4b6354;
    line-height: 1.65;
    margin: 0;
}

.slimify-step-highlight {
    background: #ecfdf5;
    border-radius: 12px;
    padding: 10px 14px;
    font-size: 12px;
    font-weight: 800;
    color: #065f46;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* =========================================================
   3. COMPARISON TABLE SECTION
   ========================================================= */
.slimify-comp-card {
    background: #ffffff;
    border-radius: 28px;
    border: 1.5px solid #e2ebe5;
    box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.slimify-comp-table-wrap {
    overflow-x: auto;
    width: 100%;
}

.slimify-comp-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 650px;
}



@media (max-width: 900px) {
    .slimify-comp-table {
    width: 950px;

}
}


.slimify-comp-table th, 
.slimify-comp-table td {
    text-align: right;
    font-size: 12px;
}

.slimify-comp-table th {
    background: #f8faf8;
    color: #0d281e;
    font-weight: 600;
    border-bottom: 2px solid #e2e8f0;
}

.slimify-comp-table th.highlight-col {
    background: #ecfdf5;
    color: #065f46;
    font-size: 12px;
    font-weight: 600;
    border-bottom: 2px solid #a7f3d0;
}

.slimify-comp-table td {
    border-bottom: 1px solid #f1f5f9;
    color: #334155;
    line-height: 1.5;
}

.slimify-comp-table td.highlight-col {
    background: #f0fdf4;
    font-weight: 600;
    color: #065f46;
}

.slimify-comp-table tr:hover td {
    background: #fbfdfb;
}

.slimify-comp-table tr:hover td.highlight-col {
    background: #e6f7ef;
}

.slimify-check-icon {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #059669;
    font-weight: 600;
}

.slimify-cross-icon {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #ef4444;
    font-weight: 600;
}

/* =========================================================
   4. TRUST & QUALITY BADGES SECTION
   ========================================================= */
.slimify-trust-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

@media (min-width: 640px) {
    .slimify-trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .slimify-trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.slimify-trust-card {
    background: #ffffff;
    border: 1.5px solid #e2ebe5;
    border-radius: 22px;
    padding: 24px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    transition: all 0.25s ease;
    box-shadow: 0 8px 20px -8px rgba(0, 0, 0, 0.04);
}

.slimify-trust-card:hover {
    border-color: #059669;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px -10px rgba(5, 150, 105, 0.12);
}

.slimify-trust-icon-box {
    width: 60px;
    height: 60px;
    border-radius: 20px;
    background: #ecfdf5;
    border: 1.5px solid #a7f3d0;
    color: #059669;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slimify-trust-name {
    font-size: 16px;
    font-weight: 600;
    color: #0d281e;
    margin: 0;
}

.slimify-trust-desc {
    font-size: 13px;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* =========================================================
   5. CTA FINAL BANNER SECTION
   ========================================================= */
.slimify-cta-card {
    background: linear-gradient(135deg, #0d281e 0%, #154734 60%, #0a231a 100%);
    color: #ffffff;
    border-radius: 32px;
    padding: 44px 32px;
    border: 1px solid rgba(52, 211, 153, 0.3);
    box-shadow: 0 25px 50px -12px rgba(13, 40, 30, 0.6);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.slimify-cta-glow {
    position: absolute;
    top: -80px;
    right: -80px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.25) 0%, rgba(16, 185, 129, 0) 70%);
    pointer-events: none;
}

.slimify-cta-content {
    position: relative;
    z-index: 2;
    max-width: 780px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
}

.slimify-cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 20px;
    background: rgba(251, 191, 36, 0.15);
    border: 1px solid rgba(251, 191, 36, 0.35);
    color: #fde68a;
    border-radius: 9999px;
    font-size: 13px;
    font-weight: 800;
}

.slimify-cta-title {
    font-size: 30px;
    font-weight: 900;
    color: #ffffff;
    margin: 0;
    line-height: 1.3;
}

@media (min-width: 640px) {
    .slimify-cta-title {
        font-size: 40px;
    }
}

.slimify-cta-desc {
    font-size: 15px;
    color: #cbd5e1;
    line-height: 1.7;
    margin: 0;
}

/* Countdown Timer Deal */
.slimify-cta-countdown-box {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1.5px solid rgba(255, 255, 255, 0.16);
    border-radius: 22px;
    padding: 16px 24px;
    max-width: 420px;
    width: 100%;
    margin: 6px auto;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.2);
}

.slimify-countdown-header {
    font-size: 13px;
    font-weight: 800;
    color: #fde68a;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 12px;
}

.slimify-countdown-digits {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
    font-weight: 800;
    color: #ffffff;
}

.slimify-digit-block {
    background: rgba(8, 30, 22, 0.88);
    border: 1.5px solid rgba(52, 211, 153, 0.35);
    padding: 6px 12px;
    border-radius: 14px;
    min-width: 58px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    transition: all 0.2s ease;
}

.slimify-digit-val {
    display: block;
    font-size: 24px;
    line-height: 1.1;
    color: #ffffff;
    letter-spacing: 0.5px;
}

.slimify-digit-block.highlight .slimify-digit-val {
    color: #fbbf24;
}

.slimify-digit-lbl {
    display: block;
    font-size: 11px;
    font-weight: 700;
    color: #6ee7b7;
    margin-top: 2px;
}

.slimify-digit-sep {
    font-size: 20px;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.6);
    user-select: none;
}

.slimify-cta-actions {
    display: flex;
    flex-direction: column;
    gap: 14px;
    width: 100%;
    margin-top: 10px;
}

@media (min-width: 640px) {
    .slimify-cta-actions {
        flex-direction: row;
        justify-content: center;
        width: auto;
    }
}

.slimify-cta-btn-main {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 36px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #ffffff !important;
    text-decoration: none !important;
    border-radius: 16px;
    font-size: 15px;
    font-weight: 900;
    box-shadow: 0 15px 30px -5px rgba(16, 185, 129, 0.4);
    transition: all 0.25s ease;
    border: none;
    cursor: pointer;
}

.slimify-cta-btn-main:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 35px -5px rgba(16, 185, 129, 0.55);
    color: #ffffff !important;
}

.slimify-cta-btn-wa {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 26px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff !important;
    text-decoration: none !important;
    border-radius: 16px;
    font-size: 14px;
    font-weight: 800;
    transition: all 0.25s ease;
}

.slimify-cta-btn-wa:hover {
    background: #25d366;
    border-color: #25d366;
    color: #ffffff !important;
}

.slimify-cta-guarantee-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 14px;
    font-size: 13px;
    color: #94a3b8;
}

.slimify-g-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.slimify-g-item svg {
    color: #34d399;
}
