/* ===== متغيرات الألوان ===== */
:root {
    --primary-pink: #ee6a9c;
    --dark-blue: #243b71;
    --purple: #835391;
    --light-pink: #f8c4da;
    --light-pink-fade: #fde8f0;
    --gray: #b3b3b3;
    --light-bg: #faefd3;
    --white: #ffffff;
    --text-dark: #333333;
    --text-light: #666666;
    
    --transition: all 0.3s ease;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* ===== إعدادات عامة ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    direction: rtl;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== الأزرار ===== */
.cta-button {
    display: inline-block;
    text-decoration: none;
    text-align: center;
    background: linear-gradient(135deg, var(--primary-pink), #d94a7d);
    color: white;
    border: none;
    padding: 16px 40px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(238, 106, 156, 0.3);
    font-family: inherit;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(238, 106, 156, 0.4);
}

.cta-button:active {
    transform: translateY(-1px);
}

/* ===== العناوين ===== */
.section-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-pink);
    margin-bottom: 5px;
    text-align: center;
}

.section-title.white-text {
    color: white;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 20px;
}

.section-subtitle.white-text {
    color: rgba(255, 255, 255, 0.9);
}

/* ===== الهيرو سكشن ===== */
.hero {
    background: linear-gradient(135deg, rgba(238, 106, 156, 0.1), rgba(248, 196, 218, 0.2));
    padding: 40px 0 50px 0;
    min-height: auto;
    display: flex;
    align-items: center;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

.hero-content {
    display: flex;
    gap: 60px;
    align-items: center;
}

.hero-text {
    animation: fadeInLeft 0.8s ease;
    flex: 1;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-pink);
    margin-bottom: 20px;
    line-height: 1.3;
}

.hero-subtitle {
    font-size: 22px;
    color: var(--dark-blue);
    font-weight: 600;
    margin-bottom: 20px;
}

.hero-description {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.8;
}

.hero-cta {
    font-size: 18px;
    padding: 18px 50px;
}

/* ===== صورة ياسمين المنفصلة ===== */
.yasmin-section {
    padding: 20px 0 30px 0;
    background: white;
}

.yasmin-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 20px;
}

.yasmin-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: var(--shadow);
    display: block;
    position: relative;
    z-index: auto;
}

/* ===== سكشن البروف ===== */
.proof {
    padding: 40px 0;
    background-color: var(--light-bg);
}

.proof-card {
    background: white;
    padding: 50px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    margin-top: 20px;
    border-top: 5px solid var(--primary-pink);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.proof-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.proof-image-img {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.proof-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.proof-title {
    font-size: 24px;
    color: var(--primary-pink);
    margin-bottom: 30px;
    text-align: center;
}

.proof-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 30px;
    text-align: center;
}

.stat {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.stat-number {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-pink);
}

.stat-label {
    font-size: 16px;
    font-weight: 600;
    color: var(--dark-blue);
}

.stat-note {
    font-size: 14px;
    color: var(--text-light);
}

.proof-text {
    text-align: center;
    font-size: 18px;
    color: var(--text-dark);
    font-weight: 600;
}

/* ===== سكشن المشاكل ===== */
.problems {
    background: linear-gradient(135deg, var(--dark-blue), #1a2a4a);
    padding: 40px 0;
    color: white;
}

.problems-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    margin-top: 20px;
}

.problem-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    transition: var(--transition);
}

.problem-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(-5px);
}

.problem-icon {
    font-size: 24px;
    color: #ff6b6b;
    min-width: 30px;
    text-align: center;
}

.problem-item p {
    font-size: 16px;
    line-height: 1.8;
}

/* ===== سكشن الحلول ===== */
.solutions {
    padding: 40px 0;
    background: linear-gradient(135deg, var(--light-pink-fade), white);
}

.solutions-intro {
    text-align: center;
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 25px;
}

.solutions-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

.solution-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.solution-item:hover {
    box-shadow: var(--shadow);
    transform: translateX(-5px);
}

.solution-icon {
    font-size: 24px;
    color: #4caf50;
    min-width: 30px;
    text-align: center;
}

.solution-item p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-dark);
}

/* ===== أقسام الكتب المنفصلة ===== */
.book-section {
    padding: 40px 0;
    background: white;
}

.book-section.book-3 {
    background: linear-gradient(135deg, white, rgba(248, 196, 218, 0.1));
}

.book-section.book-1 {
    background: linear-gradient(135deg, rgba(248, 196, 218, 0.1), white);
}

.book-section.book-2 {
    background: linear-gradient(135deg, white, rgba(131, 83, 145, 0.05));
}

.book-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.book-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.book-image img {
    width: 100%;
    height: auto;
    max-width: 400px;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.book-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.book-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-pink);
}

.book-subtitle {
    font-size: 18px;
    color: var(--text-light);
    font-weight: 600;
}

.book-price {
    display: flex;
    gap: 15px;
    align-items: center;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--light-pink);
}

.old-price {
    font-size: 16px;
    color: var(--gray);
    text-decoration: line-through;
}

.new-price {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-pink);
}

.book-intro {
    font-size: 16px;
    color: var(--text-light);
    font-weight: 600;
}

.book-description {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
}

.book-benefits {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.benefit {
    font-size: 14px;
    color: var(--text-dark);
    line-height: 1.6;
}

.book-content-no-image {
    grid-template-columns: 1fr;
}

.book-info-full {
    width: 100%;
}

/* ===== سكشن البونصات ===== */
.bonuses {
    padding: 40px 0;
    background: linear-gradient(135deg, var(--light-pink-fade), white);
}

.bonuses-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 25px;
}

.bonus-card {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
}

.bonus-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-10px);
}

.bonus-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-pink);
    margin-bottom: 15px;
}

.bonus-description {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.7;
}

.bonus-value {
    font-size: 16px;
    color: var(--text-dark);
    font-weight: 600;
}

.free-badge {
    background: linear-gradient(135deg, var(--primary-pink), #d94a7d);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
}

/* ===== سكشن القيمة ===== */
.value {
    padding: 40px 0;
    background: linear-gradient(135deg, var(--light-pink-fade), white);
}

.value-display {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin: 25px 0;
    flex-wrap: wrap;
}

.value-old,
.value-new {
    text-align: center;
}

.value-label {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 10px;
}

.value-amount {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-pink);
}

.value-amount.strikethrough {
    text-decoration: line-through;
    color: var(--gray);
}

.value-amount.highlight {
    background: linear-gradient(135deg, var(--primary-pink), #d94a7d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.value-arrow {
    font-size: 40px;
    color: var(--primary-pink);
}

.discount-badge {
    background: linear-gradient(135deg, var(--primary-pink), #d94a7d);
    color: white;
    padding: 20px 40px;
    border-radius: 50px;
    text-align: center;
    margin: 30px auto;
    width: fit-content;
    box-shadow: 0 5px 15px rgba(238, 106, 156, 0.3);
}

.discount-text {
    font-size: 24px;
    font-weight: 700;
}

.value-reason {
    text-align: center;
    font-size: 16px;
    color: var(--text-light);
    margin-top: 30px;
    line-height: 1.8;
}

/* ===== سكشن الشهادة ===== */
.testimonial {
    padding: 40px 0;
    background: linear-gradient(135deg, rgba(238, 106, 156, 0.1), rgba(248, 196, 218, 0.2));
    margin-top: 0;
}

.testimonial .container {
    display: flex;
    justify-content: center;
}

.testimonial-content {
    animation: fadeInLeft 0.8s ease;
    max-width: 800px;
}

.testimonial-text {
    font-size: 18px;
    color: var(--text-dark);
    line-height: 2;
    margin-bottom: 40px;
    font-style: italic;
    padding: 30px;
    background: white;
    border-radius: 10px;
    border-right: 5px solid var(--primary-pink);
}

.testimonial-author {
    margin-bottom: 30px;
}

.author-name {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-pink);
    margin-bottom: 5px;
}

.author-title {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 5px;
}

.author-company {
    font-size: 14px;
    color: var(--dark-blue);
    font-weight: 600;
}

.testimonial-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.stat-box {
    background: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.stat-number {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-pink);
}

.stat-text {
    font-size: 14px;
    color: var(--text-light);
}

/* ===== سكشن لحظة القرار ===== */
.decision {
    background: linear-gradient(135deg, var(--dark-blue), #1a2a4a);
    padding: 40px 0;
    color: white;
    text-align: center;
}

.decision-intro {
    font-size: 24px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 10px;
}

.decision-main {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-pink);
    margin-bottom: 30px;
}

.decision-text {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    line-height: 1.8;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.decision-cta {
    font-size: 20px;
    padding: 20px 60px;
    margin-bottom: 40px;
}

.decision-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 600px;
    margin: 0 auto;
}

.feature {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
}

/* ===== سكشن الأسئلة الشائعة ===== */
.faqs {
    padding: 40px 0;
    background: linear-gradient(135deg, var(--light-pink-fade), white);
}

.faqs-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    margin-top: 25px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.faq-item {
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 25px;
    background: white;
    border: 2px solid var(--light-pink);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
    font-weight: 600;
    color: var(--dark-blue);
    transition: var(--transition);
    text-align: right;
}

.faq-question:hover {
    background: var(--light-pink-fade);
    border-color: var(--primary-pink);
}

.faq-icon {
    font-size: 24px;
    color: var(--primary-pink);
    transition: var(--transition);
}

.faq-item.active .faq-question {
    background: var(--primary-pink);
    color: white;
    border-color: var(--primary-pink);
}

.faq-item.active .faq-icon {
    color: white;
    transform: rotate(45deg);
}

.faq-answer {
    padding: 25px;
    background: var(--light-bg);
    display: none;
    border-top: 2px solid var(--light-pink);
}

.faq-item.active .faq-answer {
    display: block;
    animation: slideDown 0.3s ease;
}

.faq-answer p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.8;
}

/* ===== الفوتر ===== */
.footer {
    background: var(--dark-blue);
    color: white;
    padding: 40px 0;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.footer-logo h3 {
    font-size: 24px;
    margin-bottom: 5px;
    color: var(--primary-pink);
}

.footer-logo p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

/* ===== الحركات والتأثيرات ===== */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== التجاوب (Responsive) ===== */
@media (max-width: 768px) {
    .proof-card {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .hero-content {
        flex-direction: column;
        gap: 30px;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .section-title {
        font-size: 28px;
    }

    .book-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .bonuses-grid {
        grid-template-columns: 1fr;
    }

    .proof-stats {
        grid-template-columns: 1fr;
    }

    .decision-features {
        grid-template-columns: 1fr;
    }

    .value-display {
        flex-direction: column;
        gap: 20px;
    }

    .value-arrow {
        transform: rotate(90deg);
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 24px;
    }

    .section-title {
        font-size: 22px;
    }

    .cta-button {
        padding: 14px 30px;
        font-size: 14px;
    }

    .book-title {
        font-size: 28px;
    }

    .new-price {
        font-size: 24px;
    }

    .faq-question {
        padding: 18px;
        font-size: 14px;
    }

    .faq-answer {
        padding: 18px;
    }

    .book-content {
        padding: 20px;
    }

    .testimonial-stats {
        grid-template-columns: 1fr;
    }
}
