/* Global Styles */
:root {
    --primary-color: #00BCD4;
    --secondary-color: #F0B90B;
    --dark-color: #333333;
    --light-color: #FFFFFF;
    --gray-color: #F5F5F5;
    --gray-dark: #888888;
    --success-color: #4CAF50;
    --danger-color: #F44336;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Tajawal', sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
    background-color: #FFFFFF;
    direction: rtl;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cairo', sans-serif;
    font-weight: 700;
    line-height: 1.3;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

a:hover {
    color: var(--secondary-color);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5rem;
    color: var(--primary-color);
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--secondary-color);
    border-radius: 2px;
}

.hidden {
    display: none !important;
}

/* Form Layout */
.form-group {
    margin-bottom: 1.5rem;
    position: relative;
    background: #fff;
    border-radius: 8px;
    padding: 1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.form-group:focus-within {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.form-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.form-label {
    font-weight: 600;
    font-size: 0.9375rem;
    color: #2d3748;
    margin: 0;
}

/* Input Styles */
.input-with-icon {
    position: relative;
    display: flex;
    align-items: center;
}

.input-icon {
    position: absolute;
    left: 1rem;
    color: #a0aec0;
    font-size: 1.1rem;
    transition: color 0.2s ease;
}

.form-input {
    width: 100%;
    padding: 0.75rem 1rem 0.75rem 2.75rem;
    font-size: 1rem;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    background-color: #fff;
    transition: all 0.2s ease;
    height: 48px;
}

.form-input:focus {
    border-color: #4299e1;
    box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.2);
    outline: none;
}

.form-input::placeholder {
    color: #a0aec0;
    opacity: 1;
}

/* Input Actions */
.input-actions {
    position: absolute;
    right: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.input-clear {
    background: none;
    border: none;
    color: #a0aec0;
    cursor: pointer;
    padding: 0.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.input-clear:hover {
    color: #4a5568;
    background-color: #edf2f7;
}

/* Card Type Indicator */
.card-type {
    width: 32px;
    height: 24px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.8;
}

/* Form Footer */
.form-footer {
    margin-top: 0.5rem;
    min-height: 1.5rem;
}

/* Tooltips */
.help-tooltip {
    background: none;
    border: none;
    color: #a0aec0;
    cursor: help;
    padding: 0.25rem;
    margin: 0;
    font-size: 1rem;
    line-height: 1;
    transition: color 0.2s ease;
    position: relative;
}

.help-tooltip:hover {
    color: #4a5568;
}

.tooltip {
    position: fixed;
    background: #2d3748;
    color: white;
    padding: 0.5rem 0.75rem;
    border-radius: 4px;
    font-size: 0.8125rem;
    pointer-events: none;
    z-index: 1000;
    max-width: 250px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateY(5px);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #2d3748 transparent transparent transparent;
}

.tooltip.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Focus States */
.form-group.focused {
    border-color: #4299e1;
    box-shadow: 0 0 0 1px #4299e1;
}

.form-input.filled {
    background-color: #f8fafc;
}

/* Loading State */
.btn-loading {
    position: relative;
    pointer-events: none;
    color: transparent !important;
}

.btn-loading::after {
    content: '';
    position: absolute;
    width: 1.5rem;
    height: 1.5rem;
    top: 50%;
    left: 50%;
    margin: -0.75rem 0 0 -0.75rem;
    border: 2px solid #fff;
    border-radius: 50%;
    border-right-color: transparent;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Form Validation */
.error-message {
    color: #e53e3e;
    font-size: 0.8125rem;
    margin-top: 0.25rem;
    line-height: 1.4;
    animation: fadeIn 0.2s ease-out;
}

.error {
    border-color: #fc8181 !important;
    background-color: #fff5f5;
}

.error .input-icon {
    color: #e53e3e;
}

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

/* Success Message */
.success-message {
    position: fixed;
    top: 1rem;
    right: 1rem;
    left: 1rem;
    max-width: 500px;
    margin: 0 auto;
    padding: 1rem;
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    border-radius: 0.25rem;
    text-align: center;
    box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.1);
    z-index: 9999;
    animation: slideDown 0.3s ease-out;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.success-message::before {
    content: '✓';
    margin-left: 0.5rem;
    font-weight: bold;
}

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

/* Input with icon */
.input-with-icon {
    position: relative;
}

.input-with-icon i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #6c757d;
}

.input-with-icon input {
    padding-right: 1rem;
    padding-left: 2.5rem;
}

/* Form hints */
.hint {
    font-size: 0.75rem;
    color: #6c757d;
    margin-top: 0.25rem;
}

/* Header Styles */
.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, #0097A7 100%);
    color: var(--light-color);
    padding: 50px 0 80px;
    position: relative;
    overflow: hidden;
}

/* Pattern removed to resolve missing file error */

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.nav-links {
    display: flex;
    gap: 20px;
}

.nav-links a {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    background: var(--secondary-color);
    color: var(--dark-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.nav-links a:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
    background: #FFD700;
    color: var(--dark-color);
}

/* Add active state for current page */
.nav-links a.active {
    background: #FFD700;
    color: var(--dark-color);
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    /* Add mobile menu toggle button styles here if needed */
}

.logo h1 {
    font-size: 2.2rem;
    color: var(--light-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.fox-text {
    color: var(--light-color);
}

.master-text {
    color: var(--secondary-color);
    margin-left: 2px;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding-top: 50px;
}

.main-title {
    font-size: 3rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.subtitle {
    font-size: 1.5rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* تنسيقات أزرار الهيرو */
.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 30px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 30px;
    background-color: #4e73df;
    color: white;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    text-align: center;
    min-width: 160px;
    font-size: 1.1rem;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(78, 115, 223, 0.4);
    background-color: #2e59d9;
    color: white;
}

.cta-button.secondary-button {
    background-color: #F0B90B;
    color: #333333;
    border: 2px solid #F0B90B;
    transition: all 0.3s ease;
}

.cta-button.secondary-button:hover {
    background-color: #d4a30a;
    border-color: #d4a30a;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(240, 185, 11, 0.4);
    color: #333333;
}

.cta-button.download-btn {
    background-color: #1cc88a;
    border-color: #1cc88a;
}

.cta-button.download-btn:hover {
    background-color: #17a673;
    border-color: #17a673;
    box-shadow: 0 5px 15px rgba(23, 166, 115, 0.4);
}

.cta-button i {
    margin-left: 8px;
}

/* تنسيقات للشاشات الصغيرة */
@media (max-width: 768px) {
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    
    .cta-button {
        width: 100%;
        max-width: 250px;
        padding: 10px 20px;
    }
}

/* Tutorials Section */
.tutorials-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.tutorials-section .section-title {
    text-align: center;
    color: #333;
    font-size: 32px;
    margin-bottom: 15px;
    font-weight: 700;
    position: relative;
    padding-bottom: 15px;
}

.tutorials-section .section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 50%;
    transform: translateX(50%);
    width: 80px;
    height: 3px;
    background-color: #F0B90B;
}

.tutorials-section .section-subtitle {
    text-align: center;
    color: #666;
    font-size: 18px;
    margin-bottom: 40px;
    max-width: 700px;
    margin-right: auto;
    margin-left: auto;
    line-height: 1.6;
}

.tutorials-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.tutorial-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.tutorial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.tutorial-icon {
    background: linear-gradient(135deg, #00BCD4 0%, #0097A7 100%);
    color: white;
    font-size: 30px;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 25px auto 20px;
}

.tutorial-card h3 {
    color: #333;
    font-size: 20px;
    margin-bottom: 15px;
    text-align: center;
    padding: 0 15px;
}

.tutorial-card p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 25px;
    padding: 0 15px;
    text-align: center;
    flex-grow: 1;
}

.tutorial-card .btn {
    display: block;
    margin: 0 15px 25px;
    text-align: center;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.tutorial-card .btn-primary {
    background: linear-gradient(135deg, #00BCD4 0%, #0097A7 100%);
    color: white;
    border: none;
}

.tutorial-card .btn-primary:hover {
    background: linear-gradient(135deg, #0097A7 0%, #007c8a 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 188, 212, 0.3);
}

.tutorial-card .btn-secondary {
    background: linear-gradient(135deg, #F0B90B 0%, #d6a40a 100%);
    color: #000;
    border: none;
}

.tutorial-card .btn-secondary:hover {
    background: linear-gradient(135deg, #d6a40a 0%, #b38908 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(240, 185, 11, 0.3);
}

.tutorial-card .btn-outline {
    background: transparent;
    border: 2px solid #00BCD4;
    color: #00BCD4;
}

.tutorial-card .btn-outline:hover {
    background: #00BCD4;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 188, 212, 0.3);
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .tutorials-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 750px;
    }
}

@media (max-width: 768px) {
    .tutorials-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
    
    .tutorials-section .section-title {
        font-size: 28px;
    }
    
    .tutorials-section .section-subtitle {
        font-size: 16px;
    }
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background-color: #0097A7;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: #000;
}

.btn-secondary:hover {
    background-color: #FFD700;
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

/* Features Section */
.features {
    padding: 80px 0;
    background-color: var(--light-color);
}

.features-showcase {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin: 30px 0;
    justify-content: center;
    align-items: flex-start;
}

.features-image {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    text-align: center;
}

.feature-screenshot {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border: 1px solid #e1e1e1;
}

.features-list {
    flex: 1;
    min-width: 300px;
}

.feature-item {
    margin-bottom: 30px;
    display: flex;
    align-items: flex-start;
    padding: 10px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background-color: rgba(0, 0, 0, 0.02);
    transform: translateY(-2px);
}

.feature-item i {
    font-size: 24px;
    color: var(--primary-color);
    margin-right: 15px;
    margin-top: 3px;
    min-width: 30px;
    text-align: center;
}

.feature-item h4 {
    margin-bottom: 10px;
    font-size: 18px;
    color: var(--dark-color);
    font-weight: 600;
    display: block;
    width: 100%;
}

.feature-item p {
    color: var(--text-color);
    line-height: 1.7;
    margin: 0;
    letter-spacing: 0.3px;
    word-spacing: 2px;
    font-size: 15px;
}

.feature-item .content {
    flex: 1;
}

.special-feature {
    text-align: center;
    color: var(--primary-color);
    margin: 10px 0 30px;
    font-size: 1.5rem;
    font-weight: 600;
    position: relative;
    display: inline-block;
    padding: 0 15px;
}

.special-feature::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 2px;
}

.features-subtitle {
    font-size: 1.3rem;
    color: var(--dark-color);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
    width: 100%;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    background-color: #fff;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-card i {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.feature-card h3 {
    margin-bottom: 15px;
    font-size: 22px;
    color: var(--dark-color);
}

.feature-card p {
    color: var(--text-color);
    line-height: 1.6;
}

.additional-features {
    margin-top: 40px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
}

.feature-column {
    flex: 1;
    min-width: 300px;
}

.feature-item-small {
    background-color: #fff;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

.feature-item-small i {
    font-size: 20px;
    color: var(--primary-color);
    margin-right: 15px;
    min-width: 20px;
}

.feature-item-small p {
    margin: 0;
    font-size: 14px;
    color: var(--text-color);
    line-height: 1.4;
}

/* Subscription Plans Section */
.subscription {
    padding: 100px 0;
    background-color: var(--gray-color);
}

.pricing-card h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.pricing-card .price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 20px;
}

.pricing-card .price span {
    font-size: 1rem;
    color: var(--gray-dark);
}

.pricing-card ul {
    margin-bottom: 25px;
    padding: 0 20px;
}

.pricing-card ul li {
    margin-bottom: 10px;
    position: relative;
    padding-right: 20px;
}

.pricing-card ul li:before {
    content: '✓';
    color: var(--success-color);
    position: absolute;
    right: 0;
}

.pricing-card.binance-card {
    border: 2px solid #F0B90B;
    transform: scale(1.05);
    z-index: 1;
    position: relative;
    overflow: visible;
}

.best-value-badge {
    position: absolute;
    top: -15px;
    right: -10px;
    background-color: #F0B90B;
    color: var(--dark-color);
    padding: 5px 15px;
    font-size: 0.9rem;
    font-weight: 700;
    border-radius: 20px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

.pricing-card.paypal-card {
    border: 2px solid #0070BA;
}

.payment-method-icon {
    margin-bottom: 20px;
}

.payment-logo-image {
    height: 40px;
    width: auto;
    margin-top: 10px;
    object-fit: contain;
}

.subscribe-btn {
    display: inline-block;
    padding: 12px 30px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--light-color);
    background-color: var(--primary-color);
}

.subscribe-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.binance-card .subscribe-btn {
    background-color: #F0B90B;
    color: var(--dark-color);
}

.binance-card .subscribe-btn:hover {
    background-color: #FFD700;
}

.paypal-card .subscribe-btn {
    background-color: #0070BA;
    color: var(--light-color);
}

.paypal-card .subscribe-btn:hover {
    background-color: #003087;
}

.pricing-cards {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.pricing-card {
    background-color: var(--light-color);
    border-radius: 15px;
    width: 100%;
    max-width: 350px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    padding: 30px;
    text-align: center;
}

.payment-method-icon {
    margin-bottom: 20px;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.plan-badge {
    position: absolute;
    top: 20px;
    right: -30px;
    background-color: var(--secondary-color);
    color: var(--dark-color);
    padding: 5px 30px;
    font-size: 0.9rem;
    font-weight: 700;
    transform: rotate(45deg);
}

.plan-header {
    background-color: var(--primary-color);
    color: var(--light-color);
    padding: 30px 20px;
    text-align: center;
}

.premium .plan-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, #0097A7 100%);
}

.plan-header h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.plan-price {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.plan-duration {
    font-size: 1rem;
    opacity: 0.8;
}

.plan-features {
    padding: 30px;
}

.plan-features ul li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.plan-features ul li i {
    margin-left: 10px;
    font-size: 1.2rem;
}

.plan-features ul li .fa-check {
    color: var(--success-color);
}

.plan-features ul li .fa-times {
    color: var(--danger-color);
}

.plan-button {
    display: block;
    width: 80%;
    margin: 0 auto 30px;
    padding: 15px;
    background-color: var(--primary-color);
    color: var(--light-color);
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.premium .plan-button {
    background-color: var(--secondary-color);
    color: var(--dark-color);
}

.plan-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Payment Methods Section */
.payment-methods {
    padding: 100px 0;
    background-color: var(--light-color);
}

.payment-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

.tab-button {
    padding: 15px 30px;
    background-color: var(--gray-color);
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    margin: 0 10px;
    transition: all 0.3s ease;
}

.tab-button.active {
    background-color: var(--primary-color);
    color: var(--light-color);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.binance-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.binance-info {
    flex: 1;
    min-width: 300px;
}

.binance-info h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.payment-details {
    background-color: var(--gray-color);
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
}

.payment-details p {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.payment-details span {
    font-weight: 700;
    color: var(--primary-color);
}

.binance-steps {
    margin: 30px 0;
}

.binance-steps ol {
    padding-right: 20px;
}

.binance-steps ol li {
    margin-bottom: 10px;
}

.download-button {
    display: inline-block;
    background-color: #F0B90B;
    color: var(--dark-color);
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.download-button:hover {
    background-color: #FFD700;
    transform: translateY(-3px);
}

.qr-container {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
}

.qr-code {
    background-color: #1E2026;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.qr-code img {
    width: 200px;
    height: 200px;
    margin-bottom: 20px;
}

.qr-label {
    color: var(--light-color);
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.qr-price {
    color: var(--secondary-color);
    font-size: 1.5rem;
    font-weight: 700;
}

.paypal-container {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.paypal-container h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.paypal-button-container {
    margin: 40px 0;
}

.paypal-button {
    display: inline-block;
    background-color: #0070BA;
    color: var(--light-color);
    padding: 15px 40px;
    border: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.paypal-button:hover {
    background-color: #003087;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.paypal-note {
    color: var(--gray-dark);
    font-size: 0.9rem;
    margin-top: 20px;
}

/* FAQ Section */
.faq {
    padding: 100px 0;
    background-color: var(--gray-color);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--light-color);
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question h3 {
    font-size: 1.3rem;
    color: var(--dark-color);
}

.faq-icon {
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 20px 20px;
    max-height: 1000px;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background-color: var(--gray-color);
}

.contact-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    justify-content: space-between;
}

.contact-info {
    flex: 1;
    min-width: 300px;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-left: 15px;
}

.contact-form {
    flex: 2;
    min-width: 300px;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form input,
.contact-form textarea {
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: 'Tajawal', sans-serif;
    font-size: 1rem;
}

.contact-form textarea {
    min-height: 150px;
    resize: vertical;
}

.submit-btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--light-color);
    padding: 12px 30px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    background-color: var(--secondary-color);
    color: var(--dark-color);
}

/* Payment Modal */
.payment-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.payment-modal.show {
    display: flex;
}

.modal-content {
    background-color: var(--light-color);
    border-radius: 10px;
    padding: 30px;
    width: 90%;
    max-width: 500px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.close-modal {
    position: absolute;
    top: 15px;
    left: 15px;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--gray-dark);
    transition: all 0.3s ease;
}

.close-modal:hover {
    color: var(--danger-color);
}

.modal-content h2 {
    text-align: center;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.payment-methods {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin: 25px 0;
    flex-wrap: wrap;
    padding: 0 15px;
}

.payment-method {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 40px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.payment-method::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.payment-method:hover::before {
    opacity: 1;
}

.payment-method i {
    color: #fff;
    font-size: 26px;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 1px 2px rgba(0,0,0,0.2));
}

.payment-method[title="Visa"]:hover {
    background: #1A1F71;
    border-color: #1A1F71;
}

.payment-method[title="Mastercard"]:hover {
    background: #EB001B;
    border-color: #EB001B;
}

.payment-method[title="American Express"]:hover {
    background: #016FD0;
    border-color: #016FD0;
}

.payment-method[title="PayPal"]:hover {
    background: #003087;
    border-color: #003087;
}

.payment-method:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.payment-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.payment-option {
    display: flex;
    align-items: center;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.payment-option:hover {
    border-color: var(--primary-color);
    background-color: rgba(0, 188, 212, 0.05);
}

.payment-option img {
    height: 40px;
    margin-left: 15px;
}

.payment-option span {
    font-weight: 600;
}

/* WhatsApp Chat Button */
.whatsapp-chat {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 100;
}

.whatsapp-chat a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: var(--light-color);
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.whatsapp-chat a:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.whatsapp-chat i {
    font-size: 2rem;
}

/* Language Switcher */
.language-switcher {
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 100;
    display: flex;
    gap: 10px;
}

.logo h1 {
    font-size: 2.2rem;
    color: var(--light-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.fox-text {
    color: var(--light-color);
}

.master-text {
    color: var(--secondary-color);
    margin-left: 2px;
}

.lang-btn {
    background-color: rgba(255, 255, 255, 0.8);
    color: var(--dark-color);
    border: none;
    border-radius: 5px;
    padding: 5px 10px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.lang-btn:hover,
.lang-btn.active {
    background-color: var(--secondary-color);
    color: var(--dark-color);
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background-color: var(--light-color);
}

.testimonials-slider {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.testimonial-card {
    background-color: var(--gray-color);
    border-radius: 10px;
    padding: 30px;
    width: 100%;
    max-width: 400px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.testimonial-card .quote {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 20px;
    position: relative;
    padding: 0 20px;
}

.testimonial-card .quote::before,
.testimonial-card .quote::after {
    font-size: 2rem;
    color: var(--primary-color);
    opacity: 0.3;
    position: absolute;
}

.testimonial-card .quote::before {
    content: '\201C';
    top: -10px;
    right: 0;
}

.testimonial-card .quote::after {
    content: '\201D';
    bottom: -20px;
    left: 0;
}

.client-info {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.client-info h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--dark-color);
}

.client-info p {
    color: var(--gray-dark);
    font-size: 0.9rem;
}

/* Footer Section */
.footer {
    background-color: var(--dark-color);
    color: var(--light-color);
    padding: 80px 0 20px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-logo h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--light-color);
}

.footer-logo p {
    color: var(--gray-dark);
}

.footer-links h3, .footer-contact h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--light-color);
}

.footer-links ul li, .footer-contact ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: var(--gray-dark);
    transition: all 0.3s ease;
}

.footer-links ul li a:hover {
    color: var(--primary-color);
    padding-right: 5px;
}

.footer-contact ul li {
    display: flex;
    align-items: center;
    color: var(--gray-dark);
}

.footer-contact ul li i {
    margin-left: 10px;
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: var(--gray-dark);
    font-size: 0.9rem;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .main-title {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1.3rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 80px 0 120px;
    }
    
    .main-title {
        font-size: 2rem;
    }
    
    .subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 40px;
    }
    
    .features, .subscription, .payment-methods, .faq {
        padding: 80px 0;
    }
    
    .pricing-cards {
        flex-direction: column;
        align-items: center;
    }
    
    .pricing-card {
        margin-bottom: 30px;
    }
    
    .binance-container {
        flex-direction: column;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 30px;
    }
}

@media (max-width: 576px) {
    .hero {
        padding: 60px 0 100px;
    }
    
    .main-title {
        font-size: 1.8rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .cta-button {
        padding: 12px 30px;
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .features, .subscription, .payment-methods, .faq {
        padding: 60px 0;
    }
    
    .payment-tabs {
        flex-direction: column;
        gap: 15px;
    }
    
    .tab-button {
        width: 100%;
    }
}
