@import url('https://cdn.jsdelivr.net/gh/rastikerdar/vazirmatn@v33.003/Vazirmatn-font-face.css');

:root {
    --bg-main: #FFFFFF;
    --bg-sec: #F8FAFC;
    --bg-card: #FFFFFF;
    --bg-card-border: #E2E8F0;
    --primary: #FF6B00;
    --primary-hover: #E05E00;
    --secondary: #FF8533;
    --accent: #10B981;
    --text-main: #0F172A;
    --text-muted: #64748B;
    --font-family: 'Vazirmatn', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--font-family);
}

body {
    background-color: var(--bg-main);
    color: var(--text-main);
    direction: rtl;
    text-align: right;
    line-height: 1.8;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #F1F5F9;
}
::-webkit-scrollbar-thumb {
    background: #CBD5E1;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

/* Minimal Utilities */
.glass-panel {
    background: var(--bg-card);
    border: 1px solid var(--bg-card-border);
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}
.glass-panel:hover {
    box-shadow: 0 15px 40px rgba(255, 107, 0, 0.08);
    border-color: rgba(255, 107, 0, 0.3);
}

.gradient-text {
    background: linear-gradient(135deg, #FF6B00 0%, #FF8533 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: #FFFFFF;
    padding: 14px 32px;
    border-radius: 14px;
    font-weight: 700;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 107, 0, 0.25);
}
.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 107, 0, 0.4);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #FFFFFF;
    color: var(--text-main);
    padding: 14px 32px;
    border-radius: 14px;
    font-weight: 700;
    font-size: 1rem;
    border: 2px solid #E2E8F0;
    cursor: pointer;
    transition: all 0.3s ease;
}
.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(255, 107, 0, 0.04);
}

/* Minimal Header / Navbar (LOGO ONLY) */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
    transition: all 0.3s ease;
}
.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--text-main);
}
.logo-badge {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 900;
    box-shadow: 0 6px 18px rgba(255, 107, 0, 0.3);
}

/* Minimal Hero Section */
.hero {
    position: relative;
    padding: 170px 0 100px 0;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 24px;
    padding-right: 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.hero-content h1 {
    font-size: 3.2rem;
    font-weight: 900;
    line-height: 1.35;
    margin-bottom: 24px;
    color: var(--text-main);
}
.hero-content p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 36px;
}
.hero-btns {
    display: flex;
    gap: 16px;
    margin-bottom: 44px;
}
.hero-stats {
    display: flex;
    gap: 36px;
    padding-top: 28px;
    border-top: 1px solid #E2E8F0;
}
.stat-item h4 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--primary);
}
.stat-item p {
    font-size: 0.95rem;
    color: var(--text-muted);
}
.hero-card {
    position: relative;
    padding: 40px;
    text-align: center;
    background: #FFFFFF;
}

/* Section Common */
.section {
    padding: 100px 24px;
    max-width: 1200px;
    margin: 0 auto;
}
.section-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 60px auto;
}
.section-header span {
    color: var(--primary);
    font-weight: 800;
    font-size: 0.95rem;
    background: rgba(255, 107, 0, 0.08);
    padding: 6px 18px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 14px;
}
.section-header h2 {
    font-size: 2.4rem;
    font-weight: 900;
    margin-bottom: 12px;
    color: var(--text-main);
}
.section-header p {
    color: var(--text-muted);
    font-size: 1.05rem;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}
.service-card {
    padding: 36px;
}
.service-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: rgba(255, 107, 0, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 24px;
}
.service-card h3 {
    font-size: 1.35rem;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--text-main);
}
.service-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Growth Calculator Card */
.calc-box {
    padding: 44px;
    max-width: 850px;
    margin: 0 auto;
    background: #FFFFFF;
}
.calc-inputs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-bottom: 36px;
}
.input-group label {
    display: block;
    margin-bottom: 10px;
    color: var(--text-main);
    font-weight: 700;
    font-size: 1rem;
}
.range-slider {
    width: 100%;
    accent-color: var(--primary);
    cursor: pointer;
    height: 8px;
}
.calc-results {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    background: var(--bg-sec);
    padding: 28px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid #E2E8F0;
}
.calc-res-item h3 {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--primary);
}
.calc-res-item p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 4px;
}

/* Portfolio & Case Studies */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}
.portfolio-card {
    padding: 32px;
    background: #FFFFFF;
}
.metrics-badge {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 107, 0, 0.06);
    border: 1px solid rgba(255, 107, 0, 0.2);
    color: var(--primary);
    padding: 10px 18px;
    border-radius: 12px;
    font-weight: 800;
    font-size: 0.95rem;
    margin-bottom: 16px;
}

/* Packages Grid */
.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}
.package-card {
    padding: 40px;
    position: relative;
    display: flex;
    flex-direction: column;
    background: #FFFFFF;
}
.package-card.popular {
    border: 2.5px solid var(--primary);
    box-shadow: 0 15px 40px rgba(255, 107, 0, 0.12);
}
.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: white;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 800;
}
.package-features {
    list-style: none;
    margin: 28px 0 36px 0;
    flex-grow: 1;
}
.package-features li {
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-main);
    font-size: 0.95rem;
}

/* Team Section */
.team-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}
.team-card {
    padding: 36px;
    text-align: center;
    background: #FFFFFF;
}
.team-avatar {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    margin: 0 auto 20px auto;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
    font-weight: 900;
    box-shadow: 0 10px 25px rgba(255, 107, 0, 0.3);
}

/* Blog Cards */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}
.blog-card {
    padding: 30px;
    background: #FFFFFF;
}

/* Modal */
.modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
}
.modal-backdrop.active {
    opacity: 1;
    pointer-events: auto;
}
.modal-content {
    width: 100%;
    max-width: 520px;
    padding: 40px;
    position: relative;
    background: #FFFFFF;
}
.close-modal {
    position: absolute;
    top: 20px;
    left: 20px;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.8rem;
    cursor: pointer;
}

.form-group {
    margin-bottom: 20px;
}
.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-main);
}
.form-control {
    width: 100%;
    background: #F8FAFC;
    border: 1.5px solid #E2E8F0;
    padding: 14px 18px;
    border-radius: 12px;
    color: var(--text-main);
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s ease;
}
.form-control:focus {
    border-color: var(--primary);
    background: #FFFFFF;
}

/* Minimal Footer */
footer {
    background: #F8FAFC;
    border-top: 1px solid #E2E8F0;
    padding: 70px 24px 35px 24px;
}
.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}
.footer-bottom {
    text-align: center;
    padding-top: 35px;
    border-top: 1px solid #E2E8F0;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Mobile & Tablet Responsive Optimization */
@media (max-width: 900px) {
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 130px;
        padding-bottom: 60px;
    }
    .hero-content h1 {
        font-size: 2.2rem;
    }
    .hero-btns {
        flex-direction: column;
        gap: 12px;
    }
    .hero-btns button, .hero-btns a {
        width: 100%;
    }
    .hero-stats {
        justify-content: space-around;
        gap: 12px;
    }
    .stat-item h4 {
        font-size: 1.5rem;
    }
    .calc-inputs {
        grid-template-columns: 1fr;
    }
    .calc-results {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .team-grid {
        grid-template-columns: 1fr;
    }
    .footer-container {
        grid-template-columns: 1fr;
    }
}
