@font-face {
    font-family: 'Bahij_Janna';
    src: url('../fonts/Bahij_Janna_Regular.ttf') format('truetype');
}
@font-face {
    font-family: 'Bahij_Janna';
    src: url('../fonts/Bahij_Janna_Bold.ttf') format('truetype');
    font-weight: bold;
}
@font-face {
    font-family: 'Tajawal';
    src: url('../fonts/Tajawal-ExtraLight.ttf') format('truetype');
    font-weight: 200;
    font-style: normal;
}

@font-face {
    font-family: 'Tajawal';
    src: url('../fonts/Tajawal-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Tajawal';
    src: url('../fonts/Tajawal-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Tajawal';
    src: url('../fonts/Tajawal-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Tajawal';
    src: url('../fonts/Tajawal-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Tajawal';
    src: url('../fonts/Tajawal-ExtraBold.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
}

@font-face {
    font-family: 'Tajawal';
    src: url('../fonts/Tajawal-Black.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-dark: #2f4859;
    --primary-teal: #39ba90;
    --primary-teal-light: #269b8a;
    --accent-gold: #f4b222;
    --gray-bg: #f8fafc;
    --gray-border: #e2e8f0;
    --text-dark: #2f4859;
    --text-mid: #475569;
    --text-light: #64748b;
    --white: #ffffff;
    --shadow-sm: 0 10px 25px -5px rgba(0,0,0,0.05), 0 8px 10px -6px rgba(0,0,0,0.02);
    --shadow-md: 0 20px 25px -12px rgba(0,0,0,0.08);
    --shadow-lg: 0 25px 50px -12px rgba(0,0,0,0.15);
}

body {
    font-family: 'Inter', 'Bahij_Janna', sans-serif;
    background-color: var(--white);
    color: var(--text-dark);
    line-height: 1.5;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

/* RTL Support */
body[dir="rtl"] {
    font-family: 'Bahij_Janna', 'Inter', sans-serif;
    text-align: right;
}
body.lang-fa {
    font-family: 'Bahij_Janna', 'Inter', sans-serif;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
}

/* ===== NAVBAR ===== */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    flex-wrap: wrap;
    gap: 20px;
    border-bottom: 1px solid var(--gray-border);
    background: var(--white);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    background-color: rgba(255,255,255,0.95);
}
.logo-area {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
}
.logo-icon {
    width: 48px;
    height: 48px;
    background: #efefef;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 24px;
    color: var(--accent-gold);
    box-shadow: var(--shadow-sm);
}
.logo-text h1 {
    /*font-size: 1.5rem;*/
    /*font-weight: 800;*/
    letter-spacing: -0.3px;
    color: var(--primary-dark);

    font-family:'Tajawal', sans-serif;
    font-weight: 900;
    font-size: 1.8rem;
}
.logo-text p {
    font-size: 0.7rem;
    color: var(--primary-teal);
    font-weight: 500;
}

/* Desktop Menu */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 28px;
    list-style: none;
}
.nav-menu li a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 700;
    transition: 0.2s;
    font-size: 0.95rem;
}
.nav-menu li a:hover {
    color: var(--primary-teal);
}
.nav-buttons {
    display: flex;
    gap: 12px;
    align-items: center;
}
.btn-login {
    background: transparent;
    border: 1px solid var(--primary-teal);
    padding: 8px 20px;
    border-radius: 40px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.2s;
    color: var(--primary-teal);
    text-decoration: none;
}
.btn-register {
    background: var(--primary-teal);
    border: none;
    padding: 8px 20px;
    border-radius: 40px;
    font-weight: 600;
    cursor: pointer;
    color: white;
    text-decoration: none;
}
/* Language Dropdown */
.lang-dropdown {
    position: relative;
    display: inline-block;
}
.lang-btn {
    background: var(--gray-bg);
    border: 1px solid var(--gray-border);
    padding: 8px 16px;
    border-radius: 40px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}
.lang-dropdown-content {
    display: none;
    position: absolute;
    background: white;
    min-width: 140px;
    box-shadow: var(--shadow-md);
    border-radius: 16px;
    z-index: 1;
    top: 45px;
    right: 0;
    border: 1px solid var(--gray-border);
}
body[dir="rtl"] .lang-dropdown-content {
    right: auto;
    left: 0;
}
.lang-dropdown-content a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    text-decoration: none;
    color: var(--text-dark);
    transition: 0.2s;
    border-radius: 16px;
}
.lang-dropdown-content a:hover {
    background: var(--gray-bg);
}
.lang-dropdown:hover .lang-dropdown-content {
    display: block;
}
.mobile-menu-icon {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    gap: 60px;
    margin: 70px 0 90px;
    flex-wrap: wrap;
}
.hero-content {
    flex: 1;
}
.hero-badge {
    background: rgba(30, 123, 110, 0.12);
    color: var(--primary-teal);
    padding: 6px 14px;
    border-radius: 100px;
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 24px;
}
.hero-content h1 {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--primary-dark);
}
.hero-content p {
    font-size: 1.1rem;
    color: var(--text-mid);
    margin-bottom: 32px;
    max-width: 550px;
}
.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}
.hero-stats div strong {
    font-size: 1.8rem;
    color: var(--primary-teal);
}
.hero-image {
    flex: 1;
    background: linear-gradient(145deg, #eef6f4, #ffffff);
    border-radius: 48px;
    padding: 40px;
    text-align: center;
    box-shadow: var(--shadow-lg);
}
.mockup-icon {
    font-size: 5rem;
    color: var(--primary-teal);
    margin-bottom: 20px;
}

/* Sections */
section {
    margin: 80px 0;
}
.section-title {
    text-align: center;
    font-size: 2.3rem;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--primary-dark);
}
.section-sub {
    text-align: center;
    color: var(--text-mid);
    margin-bottom: 56px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* About */
.about-grid {
    display: flex;
    gap: 48px;
    align-items: center;
    flex-wrap: wrap;
}
.about-text {
    flex: 1;
}
.about-stats {
    display: flex;
    gap: 32px;
    margin-top: 32px;
}
/* Target Businesses Grid */
        .business-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 24px;
            margin: 40px 0;
        }
        .business-item {
            background: var(--white);
            border: 1px solid var(--gray-border);
            border-radius: 24px;
            padding: 20px 12px;
            text-align: center;
            transition: all 0.2s;
            font-weight: 600;
            box-shadow: var(--shadow-sm);
        }
        .business-item i {
            font-size: 1.8rem;
            color: var(--primary-teal);
            margin-bottom: 10px;
            display: block;
        }
        .business-item:hover {
            transform: translateY(-4px);
            border-color: var(--primary-teal);
        }

        /* Tax Highlight */
        .tax-banner {
            background: linear-gradient(120deg, #eef6f4, #ffffff);
            border-radius: 40px;
            padding: 32px;
            text-align: center;
            margin: 40px 0;
            border: 1px solid var(--primary-teal-light);
        }
        .tax-banner i {
            font-size: 2.5rem;
            color: var(--accent-gold);
        }

        /* Mobile App Section */
        .mobile-app-section {
            background: linear-gradient(135deg, var(--primary-dark), #1a4a5f);
            border-radius: 48px;
            padding: 48px 40px;
            margin: 60px 0;
            color: white;
        }
        .mobile-app-grid {
            display: flex;
            align-items: center;
            gap: 48px;
            flex-wrap: wrap;
            justify-content: center;
        }
        .mobile-app-content {
            flex: 1;
            text-align: center;
        }
        .mobile-app-content h3 {
            font-size: 1.8rem;
            margin-bottom: 16px;
        }
        .store-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            margin-top: 28px;
            flex-wrap: wrap;
        }
        .store-btn {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            background: rgba(255,255,255,0.15);
            backdrop-filter: blur(10px);
            padding: 12px 28px;
            border-radius: 50px;
            text-decoration: none;
            color: white;
            font-weight: 600;
            transition: 0.2s;
            border: 1px solid rgba(255,255,255,0.3);
        }
        .store-btn i {
            font-size: 1.8rem;
        }
        .store-btn:hover {
            background: var(--accent-gold);
            color: var(--primary-dark);
            transform: translateY(-3px);
        }
        .qr-mock {
            background: white;
            padding: 15px;
            border-radius: 24px;
            display: inline-block;
            text-align: center;
        }
        .qr-mock i {
            font-size: 4rem;
            color: var(--primary-teal);
        }
/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}
.feature-card {
    background: white;
    border-radius: 28px;
    padding: 28px;
    transition: all 0.3s;
    border: 1px solid var(--gray-border);
    box-shadow: var(--shadow-sm);
}
.feature-card:hover {
    transform: translateY(-6px);
    border-color: var(--primary-teal-light);
}
.feature-icon {
    font-size: 2.4rem;
    color: var(--primary-teal);
    margin-bottom: 20px;
}

/* Pricing */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}
.pricing-card {
    background: white;
    border-radius: 28px;
    border: 1px solid var(--gray-border);
    padding: 32px 24px;
    text-align: center;
    transition: 0.2s;
}
.pricing-card.popular {
    border-top: 5px solid var(--primary-teal);
    box-shadow: var(--shadow-md);
    transform: scale(1.02);
}
.price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-dark);
    margin: 16px 0;
}
.pricing-features {
    list-style: none;
    margin: 24px 0;
}
.pricing-features li {
    padding: 8px 0;
}

/* Contact Form */
.contact-wrapper {
    /*display: flex;*/
    gap: 48px;
    background: var(--gray-bg);
    border-radius: 48px;
    padding: 48px;
    flex-wrap: wrap;
}
.contact-info {
    flex: 1;
}
.contact-form {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.contact-form input, .contact-form textarea {
    padding: 14px 20px;
    border-radius: 30px;
    border: 1px solid var(--gray-border);
    font-family: inherit;
}
/* CTA */
.cta-section {
    background: linear-gradient(110deg, var(--primary-dark) 0%, #16475c 100%);
    border-radius: 48px;
    padding: 64px 40px;
    text-align: center;
    color: white;
}

footer {
    border-top: 1px solid var(--gray-border);
    padding: 48px 0 32px;
    text-align: center;
    color: var(--text-mid);
}

@media (max-width: 900px) {
    .nav-menu, .nav-buttons {
        display: none;
    }
    .mobile-menu-icon {
        display: block;
    }
    .navbar.responsive .nav-menu,
    .navbar.responsive .nav-buttons {
        display: flex;
        flex-direction: column;
        width: 100%;
        align-items: center;
    }
    .navbar.responsive {
        flex-direction: column;
    }
    .hero h1 { font-size: 2rem; }
    .section-title { font-size: 1.8rem; }
}
button, .btn-login, .btn-register, .lang-btn { cursor: pointer; }
.pricing-card a {
    text-decoration: none;
    color: var(--primary-teal);
}