/* Base styles */
:root {
    --primary-color: #00c853;
    --secondary-color: #1ed760;
    --accent-color: #ffd700;
    --text-color: #333;
    --text-light: #666;
    --background-color: #f8f9fa;
    --card-bg: #ffffff;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    font-family: 'Heebo', 'Montserrat', sans-serif;
    color: var(--text-color);
    direction: rtl;
    text-align: right;
}

body {
    overflow-x: hidden;
    background-color: #000;
}

.wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

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

/* Full-screen image section */
.image-section {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 100%);
    z-index: 2;
}

.content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
    padding: 2rem;
    max-width: 90%;
    animation: fadeIn 1s ease-in-out;
}

.logo {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.headline {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.headline span {
    color: var(--primary-color);
    position: relative;
    display: inline-block;
}

.headline span::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--accent-color);
    border-radius: 2px;
}

.subheadline {
    font-size: 1.4rem;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

.offer {
    font-size: 2.2rem;
    font-weight: 700;
    margin: 2rem 0;
    color: var(--accent-color);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.cta-buttons {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
}

.cta-button {
    display: inline-block;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s, box-shadow 0.3s;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: linear-gradient(45deg, var(--primary-color), #69f0ae);
    color: white;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 200, 83, 0.4);
}

.cta-button i {
    margin-left: 8px;
    margin-right: 0;
    font-size: 1.3rem;
    vertical-align: middle;
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    color: white;
    font-size: 2rem;
    animation: bounce 2s infinite;
    cursor: pointer;
}

/* How it works section */
.how-it-works {
    background-color: #111;
    color: white;
    padding: 5rem 2rem;
    text-align: center;
}

.how-steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
}

.step-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 2rem;
    max-width: 300px;
    width: 100%;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    opacity: 0;
    transform: translateY(20px);
}

.step-card.animate {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 200, 83, 0.2);
}

.step-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--primary-color), #69f0ae);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2.5rem;
}

.step-title {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.step-text {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* Income details section */
.income-details {
    background-color: #fff;
    padding: 4rem 2rem;
    text-align: center;
}

.section-title {
    color: var(--primary-color);
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--accent-color);
    border-radius: 2px;
}

.detail-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
}

.detail-card {
    background: #fff;
    border-radius: 15px;
    box-shadow: var(--shadow);
    padding: 2rem;
    max-width: 300px;
    width: 100%;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    border-top: 4px solid var(--primary-color);
}

.detail-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.detail-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--primary-color), #69f0ae);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.detail-title {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.detail-text {
    color: var(--text-light);
    line-height: 1.6;
}

.detail-highlight {
    font-size: 1.2rem;
    color: var(--secondary-color);
    font-weight: 700;
    margin-top: 1rem;
    display: block;
}

/* Testimonials section */
.testimonials {
    background-color: #f9f9f9;
    padding: 4rem 2rem;
    text-align: center;
}

.testimonial-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.testimonial {
    background: #fff;
    border-radius: 15px;
    box-shadow: var(--shadow);
    padding: 2rem;
    max-width: 350px;
    width: 100%;
    text-align: right;
    transition: transform 0.3s, box-shadow 0.3s;
    opacity: 0;
    transform: translateY(20px);
}

.testimonial.animate {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.testimonial:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    flex-direction: row-reverse;
}

.avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-left: 1rem;
    margin-right: 0;
    border: 2px solid var(--primary-color);
    flex-shrink: 0;
    background-color: #e8f5e9;
    display: flex;
    align-items: center;
    justify-content: center;
}

.avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.avatar i {
    font-size: 2rem;
    color: var(--primary-color);
}

.user-details {
    flex-grow: 1;
    text-align: right;
}

.author {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.3rem;
}

.occupation {
    color: var(--text-light);
    font-size: 0.9rem;
}

.rating {
    color: var(--accent-color);
    margin-bottom: 1rem;
    text-align: right;
}

.testimonial-text {
    color: var(--text-light);
    line-height: 1.7;
    text-align: right;
}

.earnings {
    display: block;
    color: var(--primary-color);
    font-weight: 700;
    margin-top: 1rem;
    text-align: right;
}

/* Footer section */
.footer {
    padding: 1.5rem;
    text-align: center;
    background-color: #000;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Social Icons Animation */
.fab.fa-telegram {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

/* Media Queries */
@media (max-width: 768px) {
    .headline {
        font-size: 2.5rem;
    }
    
    .subheadline {
        font-size: 1.2rem;
    }
    
    .offer {
        font-size: 1.8rem;
    }
    
    .bg-image {
        height: 100%;
        width: 100%;
        max-width: none;
        position: absolute;
        left: 0;
        transform: none;
        object-position: center;
    }
    
    .how-steps {
        flex-direction: column;
        align-items: center;
    }
    
    .step-card {
        max-width: 90%;
    }
    
    .detail-cards {
        flex-direction: column;
        align-items: center;
    }
    
    .detail-card {
        max-width: 90%;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .testimonial-container {
        flex-direction: column;
        align-items: center;
    }
    
    .testimonial {
        max-width: 90%;
    }
}

@media (max-width: 480px) {
    .headline {
        font-size: 2rem;
    }
    
    .subheadline {
        font-size: 1rem;
    }
    
    .offer {
        font-size: 1.5rem;
    }
    
    .cta-button {
        padding: 12px 25px;
        font-size: 1rem;
    }
    
    .bg-image {
        height: 100%;
        width: 100%;
        max-width: none;
        position: absolute;
        left: 0;
        object-fit: cover;
        object-position: center;
    }
    
    .logo {
        font-size: 1.8rem;
    }
    
    .step-card {
        padding: 1.5rem;
    }
    
    .step-icon {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
    }
    
    .step-title {
        font-size: 1.3rem;
    }
    
    .testimonial {
        max-width: 100%;
        padding: 1.5rem;
    }
}

/* Specific fix for mobile devices around 430px width */
@media (min-width: 400px) and (max-width: 450px) {
    .bg-image {
        height: 100%;
        width: 100%;
        max-width: none;
        position: absolute;
        left: 0;
        transform: none !important;
        object-fit: cover;
        object-position: 50% 50%;
    }
}

/* Exact fix for 430px width devices */
@media (width: 430px) {
    .bg-image {
        width: 100% !important;
        left: 0 !important;
        transform: none !important;
    }
} 