﻿            body { font-family: Arial, sans-serif; direction: rtl; }
            .header { background: #0a5f59; color: white; padding: 20px; text-align: center; }
            .content { padding: 20px; background: #f8fffe; }
            .field { margin-bottom: 15px; }
            .label { font-weight: bold; color: #0a5f59; }
            .value { color: #333; }

/* ==================== AFFILIATE MARKETING PAGE STYLES ==================== */

/* Affiliate Hero Section */
.affiliate-hero {
    background: linear-gradient(135deg, #0a5f59 0%, #084a45 100%);
    padding: 170px 0 80px;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-top: 0;
}

.affiliate-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="affiliate-pattern" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23affiliate-pattern)"/></svg>');
    opacity: 0.3;
}

.affiliate-hero-content {
    position: relative;
    z-index: 2;
}

.affiliate-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.affiliate-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto 30px;
    line-height: 1.6;
}

.affiliate-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(228, 165, 32, 0.2);
    color: #e4a520;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 30px;
    border: 1px solid rgba(228, 165, 32, 0.3);
}

/* Affiliate Content */
.affiliate-content {
    padding: 80px 0;
    background: #f8fffe;
}

/* How It Works Section */
.how-it-works {
    background: white;
    border-radius: 20px;
    padding: 60px 40px;
    box-shadow: 0 20px 60px rgba(10, 95, 89, 0.1);
    margin-bottom: 60px;
    border: 1px solid rgba(10, 95, 89, 0.05);
}

.how-it-works h2 {
    color: #0a5f59;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 40px;
    text-align: center;
    position: relative;
}

.how-it-works h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #0a5f59 0%, #e4a520 100%);
    border-radius: 2px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.step-card {
    text-align: center;
    padding: 40px 30px;
    background: linear-gradient(135deg, #f8fffe 0%, #ffffff 100%);
    border-radius: 20px;
    border: 2px solid rgba(10, 95, 89, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0a5f59 0%, #e4a520 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.step-card:hover::before {
    opacity: 1;
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(10, 95, 89, 0.15);
    border-color: #0a5f59;
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #0a5f59 0%, #e4a520 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin: 0 auto 25px;
    box-shadow: 0 10px 30px rgba(10, 95, 89, 0.3);
}

.step-card h3 {
    color: #0a5f59;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.step-card p {
    color: #666;
    line-height: 1.7;
    font-size: 1.1rem;
}

/* Commission Structure */
.commission-section {
    background: white;
    border-radius: 20px;
    padding: 60px 40px;
    box-shadow: 0 20px 60px rgba(10, 95, 89, 0.1);
    margin-bottom: 60px;
    border: 1px solid rgba(10, 95, 89, 0.05);
}

.commission-section h2 {
    color: #0a5f59;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 40px;
    text-align: center;
    position: relative;
}

.commission-section h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #0a5f59 0%, #e4a520 100%);
    border-radius: 2px;
}

.commission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.commission-card {
    background: linear-gradient(135deg, #f8fffe 0%, #ffffff 100%);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    border: 2px solid rgba(10, 95, 89, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.commission-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0a5f59 0%, #e4a520 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.commission-card:hover::before {
    opacity: 1;
}

.commission-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(10, 95, 89, 0.2);
    border-color: #0a5f59;
}

.commission-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #0a5f59 0%, #e4a520 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 20px;
    box-shadow: 0 8px 25px rgba(10, 95, 89, 0.3);
}

.commission-card h3 {
    color: #0a5f59;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.commission-amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: #e4a520;
    margin-bottom: 10px;
}

.commission-card p {
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
}

/* Benefits Section */
.benefits-section {
    background: white;
    border-radius: 20px;
    padding: 60px 40px;
    box-shadow: 0 20px 60px rgba(10, 95, 89, 0.1);
    margin-bottom: 60px;
    border: 1px solid rgba(10, 95, 89, 0.05);
}

.benefits-section h2 {
    color: #0a5f59;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 40px;
    text-align: center;
    position: relative;
}

.benefits-section h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #0a5f59 0%, #e4a520 100%);
    border-radius: 2px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.benefit-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 30px;
    background: linear-gradient(135deg, #f8fffe 0%, #ffffff 100%);
    border-radius: 15px;
    border: 2px solid rgba(10, 95, 89, 0.1);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(10, 95, 89, 0.15);
    border-color: #0a5f59;
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #0a5f59 0%, #e4a520 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
    box-shadow: 0 8px 25px rgba(10, 95, 89, 0.3);
}

.benefit-content h3 {
    color: #0a5f59;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.benefit-content p {
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
    margin: 0;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #0a5f59 0%, #084a45 100%);
    border-radius: 20px;
    padding: 60px 40px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
    margin-bottom: 60px;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="cta-pattern" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23cta-pattern)"/></svg>');
    opacity: 0.3;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
}

.cta-section p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-affiliate {
    background: linear-gradient(135deg, #e4a520 0%, #d4951f 100%);
    color: white;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 25px rgba(228, 165, 32, 0.3);
}

.btn-affiliate:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(228, 165, 32, 0.4);
    color: white;
}

.btn-outline-affiliate {
    background: transparent;
    color: white;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid white;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-outline-affiliate:hover {
    background: white;
    color: #0a5f59;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.3);
}

/* Contact Form Section */
.contact-form-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fffe 0%, #ffffff 50%, #e8f5f3 100%);
}

.contact-form-container {
    background: white;
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 25px 80px rgba(10, 95, 89, 0.15);
    border: 1px solid rgba(10, 95, 89, 0.05);
    position: relative;
    overflow: hidden;
}

.contact-form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0a5f59 0%, #e4a520 100%);
}

.form-header {
    text-align: center;
    margin-bottom: 40px;
}

.form-header h2 {
    color: #0a5f59;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
}

.form-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #0a5f59 0%, #e4a520 100%);
    border-radius: 2px;
}

.form-header p {
    color: #666;
    font-size: 1.1rem;
    margin: 0;
}

.affiliate-form {
    margin-top: 30px;
}

.form-label {
    color: #0a5f59;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 8px;
    display: block;
}

.form-control,
.form-select {
    border: 2px solid rgba(10, 95, 89, 0.1);
    border-radius: 12px;
    padding: 12px 16px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f8fffe;
}

.form-control:focus,
.form-select:focus {
    border-color: #0a5f59;
    box-shadow: 0 0 0 3px rgba(10, 95, 89, 0.1);
    background: white;
    outline: none;
}

.form-control::placeholder {
    color: #999;
    font-style: italic;
}

.form-check {
    margin-bottom: 20px;
}

.form-check-input {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(10, 95, 89, 0.3);
    border-radius: 4px;
    margin-left: 10px;
}

.form-check-input:checked {
    background-color: #0a5f59;
    border-color: #0a5f59;
}

.form-check-input:focus {
    box-shadow: 0 0 0 3px rgba(10, 95, 89, 0.1);
}

.form-check-label {
    color: #333;
    font-size: 0.95rem;
    line-height: 1.5;
}

.terms-link {
    color: #0a5f59;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.terms-link:hover {
    color: #e4a520;
    text-decoration: underline;
}

.form-submit {
    text-align: center;
    margin-top: 30px;
}

.btn-submit {
    background: linear-gradient(135deg, #0a5f59 0%, #084a45 100%);
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    min-width: 200px;
    box-shadow: 0 8px 25px rgba(10, 95, 89, 0.3);
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(10, 95, 89, 0.4);
}

.btn-submit:active {
    transform: translateY(-1px);
}

.btn-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.btn-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.form-message {
    margin-top: 20px;
    padding: 15px 20px;
    border-radius: 10px;
    font-weight: 500;
    text-align: center;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* FAQ Section */
.faq-section {
    background: white;
    border-radius: 20px;
    padding: 60px 40px;
    box-shadow: 0 20px 60px rgba(10, 95, 89, 0.1);
    margin-bottom: 60px;
    border: 1px solid rgba(10, 95, 89, 0.05);
}

.faq-section h2 {
    color: #0a5f59;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 40px;
    text-align: center;
    position: relative;
}

.faq-section h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #0a5f59 0%, #e4a520 100%);
    border-radius: 2px;
}

.faq-accordion {
    margin-top: 50px;
}

.faq-item {
    background: #f8fffe;
    border-radius: 15px;
    margin-bottom: 20px;
    overflow: hidden;
    border: 1px solid rgba(10, 95, 89, 0.1);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 10px 30px rgba(10, 95, 89, 0.1);
}

.faq-question {
    width: 100%;
    padding: 25px 30px;
    background: transparent;
    border: none;
    text-align: right;
    font-size: 1.2rem;
    font-weight: 600;
    color: #0a5f59;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(10, 95, 89, 0.05);
}

.faq-question.active {
    background: #0a5f59;
    color: white;
}

.faq-icon {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.faq-question.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
    background: white;
}

.faq-answer.active {
    max-height: 200px;
    padding: 0 30px 25px;
}

.faq-answer p {
    color: #666;
    line-height: 1.7;
    font-size: 1.1rem;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 991px) {
    .affiliate-hero h1 {
        font-size: 2.5rem;
    }
    
    .steps-grid,
    .commission-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 768px) {
    .affiliate-hero {
        padding: 130px 0 60px;
    }
    
    .affiliate-hero h1 {
        font-size: 2rem;
    }
    
    .affiliate-content {
        padding: 60px 0;
    }
    
    .how-it-works,
    .commission-section,
    .benefits-section,
    .faq-section,
    .cta-section {
        padding: 40px 20px;
    }
    
    .step-card,
    .commission-card {
        padding: 30px 20px;
    }
    
    .benefit-card {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .affiliate-hero h1 {
        font-size: 1.8rem;
    }
    
    .affiliate-hero p {
        font-size: 1rem;
    }
    
    .how-it-works h2,
    .commission-section h2,
    .benefits-section h2,
    .faq-section h2,
    .cta-section h2 {
        font-size: 2rem;
    }
}
