/* CSS Variables */
:root {
    --primary-color: #BB86FC;
    --secondary-color: #03DAC6;
    --accent-color: #CF6679;
    --background-dark: #121212;
    --surface-dark: #1E1E1E;
    --surface-light: #2D2D2D;
    --text-primary: #FFFFFF;
    --text-secondary: #B3B3B3;
    --text-tertiary: #808080;
    --border-color: #333333;
    --shadow-dark: rgba(0, 0, 0, 0.3);
    --gradient-1: linear-gradient(135deg, #BB86FC, #03DAC6);
    --gradient-2: linear-gradient(135deg, #03DAC6, #CF6679);
    --transition: all 0.3s ease;
}

/* Base Styles */
body {
    font-family: 'Vazirmatn', sans-serif;
    background-color: var(--background-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    direction: rtl;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Header Styles */
header {
    background-color: var(--surface-dark);
    box-shadow: 0 4px 20px var(--shadow-dark);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    width: 80px;
    margin-left: 15px;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.company-name {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
}

.company-en {
    font-size: 14px;
    color: var(--secondary-color);
    font-weight: 500;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-right: 30px;
}

nav ul li a {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 16px;
    position: relative;
    transition: var(--transition);
}

nav ul li a:hover {
    color: var(--primary-color);
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    right: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

nav ul li a:hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    font-size: 24px;
    color: var(--primary-color);
    cursor: pointer;
    transition: var(--transition);
    z-index: 1002;
}
.mobile-menu-btn:hover {
    color: var(--secondary-color);
}

/* Coming Soon Section */
.coming-soon {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--surface-dark), var(--background-dark));
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.coming-soon-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.coming-soon-icon {
    width: 120px;
    height: 120px;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 40px;
}

.coming-soon-icon i {
    font-size: 3.5rem;
    color: var(--background-dark);
}

.coming-soon-content h1 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.coming-soon-content p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 50px;
    line-height: 1.8;
}

/* Notify Form */
.notify-form {
    background-color: var(--surface-light);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 50px;
    box-shadow: 0 10px 30px var(--shadow-dark);
    overflow: hidden;
    box-sizing: border-box;
    font-family: 'Vazirmatn', sans-serif;
}

.notify-form h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 30px;
}

.notify-form form {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    width: 100%;
}

.email-input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    border-radius: 50px;
    background-color: var(--background-dark);
    color: var(--text-primary);
    font-family: 'Vazirmatn', sans-serif;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
}

.email-input:focus {
    box-shadow: 0 0 0 2px var(--primary-color);
}

.submit-btn {
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    background: var(--gradient-1);
    color: var(--background-dark);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Vazirmatn', sans-serif;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(187, 134, 252, 0.3);
}

.form-message {
    font-size: 0.9rem;
    min-height: 20px;
    text-align: center;
}

/* Coming Soon Features */
.coming-soon-features {
    text-align: right;
    margin-bottom: 50px;
}

.coming-soon-features h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.feature-item {
    display: flex;
    align-items: center;
    background-color: var(--surface-light);
    padding: 15px 20px;
    border-radius: 50px;
    transition: var(--transition);
}

.feature-item:hover {
    transform: translateX(-10px);
    box-shadow: 0 5px 15px var(--shadow-dark);
}

.feature-item i {
    color: var(--secondary-color);
    margin-left: 15px;
    font-size: 1.2rem;
}

.feature-item span {
    color: var(--text-primary);
    font-weight: 500;
}

/* Back Home Button */
.back-home {
    margin-top: 20px;
}

.back-home-btn {
    display: inline-flex;
    align-items: center;
    background: var(--gradient-2);
    color: var(--background-dark);
    padding: 14px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(207, 102, 121, 0.3);
}

.back-home-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(207, 102, 121, 0.4);
}

.back-home-btn i {
    margin-right: 10px;
}

/* Footer Styles */
footer {
    background-color: var(--surface-dark);
    padding: 70px 0 20px;
    color: var(--text-secondary);
    border-top: 1px solid var(--border-color);
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-logo {
    flex: 1;
    min-width: 250px;
}

.footer-logo-img {
    width: 80px;
    margin-bottom: 15px;
}

.footer-logo-text {
    display: flex;
    flex-direction: column;
}

.footer-logo-text .company-name {
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 5px;
}

.footer-logo-text .slogan {
    font-size: 1rem;
    font-weight: 400;
    color: var(--primary-color);
}

.footer-links {
    flex: 2;
    display: flex;
    gap: 50px;
}

.footer-column {
    flex: 1;
}

.footer-column h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 20px;
    position: relative;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    right: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition);
}

.footer-column ul li a:hover {
    color: var(--primary-color);
    padding-right: 5px;
}

.footer-newsletter {
    flex: 1;
    min-width: 250px;
}

.footer-newsletter h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 15px;
}

.footer-newsletter p {
    margin-bottom: 20px;
    line-height: 1.6;
}

.newsletter-form {
    display: flex;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    border-radius: 50px 0 0 50px;
    background-color: var(--surface-light);
    color: var(--text-primary);
    font-family: 'Vazirmatn', sans-serif;
}

.newsletter-form input::placeholder {
    color: var(--text-tertiary);
}

.newsletter-form button {
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 0 50px 50px 0;
    background: var(--gradient-1);
    color: var(--background-dark);
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-form button:hover {
    background: var(--gradient-2);
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
    font-size: 0.9rem;
    color: var(--text-tertiary);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .coming-soon-content h1 {
        font-size: 2rem;
    }

    .coming-soon-content p {
        font-size: 1.1rem;
    }
}


/* Improved Mobile Menu Styles */
@media (max-width: 768px) {
    /* Header Mobile Styles - IMPROVED */
    header {
        position: relative;
    }
    
    header .container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 15px;
        position: relative;
        flex-wrap: wrap;
    }
    
    /* Position the mobile menu button */
    .mobile-menu-btn {
        display: block;
        order: 1;
    }
    
    /* Logo positioning */
    .logo {
        order: 2;
        margin: 0;
    }
    
    /* Navigation menu - appears as column when clicked */
    nav {
        order: 3;
        width: 100%;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--surface-dark);
        z-index: 1001;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease-out;
        box-shadow: 0 4px 20px var(--shadow-dark);
    }
    
    nav.active {
        max-height: 400px; /* Adjust based on number of menu items */
        transition: max-height 0.4s ease-in;
    }
    
    nav ul {
        display: flex;
        flex-direction: column; /* This makes it a COLUMN */
        width: 100%;
        padding: 0;
        margin: 0;
        list-style: none;
    }
    
    nav ul li {
        text-align: center;
        margin: 0;
        width: 100%;
        border-bottom: 1px solid var(--border-color);
    }
    
    nav ul li:last-child {
        border-bottom: none;
    }
    
    nav ul li a {
        display: block;
        padding: 15px 20px;
        width: 100%;
        font-size: 16px;
        transition: var(--transition);
    }
    
    nav ul li a:hover {
        background-color: var(--surface-light);
        padding-right: 25px;
    }
    
    nav ul li a::after {
        display: none; /* Remove underline effect on mobile */
    }
    
    /* Optional: Add animation for menu items */
    nav ul li {
        opacity: 0;
        transform: translateY(-10px);
        transition: all 0.3s ease;
    }
    
    nav.active ul li {
        opacity: 1;
        transform: translateY(0);
    }
    
    /* Stagger the animation */
    nav.active ul li:nth-child(1) { transition-delay: 0.1s; }
    nav.active ul li:nth-child(2) { transition-delay: 0.15s; }
    nav.active ul li:nth-child(3) { transition-delay: 0.2s; }
    nav.active ul li:nth-child(4) { transition-delay: 0.25s; }
    nav.active ul li:nth-child(5) { transition-delay: 0.3s; }
    
    /* Rest of your responsive styles remain the same */
    .coming-soon {
        padding: 60px 0;
    }

    .coming-soon-icon {
        width: 100px;
        height: 100px;
    }

    .coming-soon-icon i {
        font-size: 3rem;
    }

    .coming-soon-content h1 {
        font-size: 1.8rem;
    }

    .coming-soon-content p {
        font-size: 1rem;
    }
    .notify-form {
            padding: 25px 20px;
        }
        
        .notify-form form {
            flex-direction: column;
            gap: 12px;
        }
        
        .email-input,
        .submit-btn {
            width: 100%;
            box-sizing: border-box;
            font-family: 'Vazirmatn', sans-serif;
        }
        
        .submit-btn {
            padding: 12px 20px;
        }

    /* Footer */
    footer {
        padding: 50px 0 20px;
    }

    .footer-content {
        flex-direction: column;
        gap: 40px;
    }

    .footer-logo {
        text-align: center;
    }

    .footer-links {
        width: 100%;
        flex-direction: column;
        gap: 30px;
    }

    .footer-column {
        width: 100%;
    }

    .footer-newsletter {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .coming-soon-content h1 {
        font-size: 1.5rem;
    }

    .coming-soon-content p {
        font-size: 0.95rem;
    }

     .notify-form {
        padding: 20px 15px;
    }
    
    .notify-form h2 {
        font-size: 1.2rem;
        margin-bottom: 20px;
    }
    
    .email-input {
        padding: 12px 15px;
    }
    .coming-soon-features h3 {
        font-size: 1.2rem;
    }

    .feature-item {
        padding: 12px 15px;
    }

    .feature-item span {
        font-size: 0.9rem;
    }
}