/* ========================================
   EHSAN PIROOZ - MAIN STYLESHEET
   Theme: White & Light Green
======================================== */

@import url('https://fonts.googleapis.com/css2?family=Vazirmatn:wght@300;400;500;600;700;800;900&display=swap');

:root {
    --primary: #00C853;
    --primary-dark: #00A846;
    --primary-light: #69F0AE;
    --primary-ultra-light: #E8F5E9;
    --secondary: #1B5E20;
    --accent: #76FF03;
    --white: #FFFFFF;
    --gray-100: #F8F9FA;
    --gray-200: #E9ECEF;
    --gray-300: #DEE2E6;
    --gray-500: #ADB5BD;
    --gray-700: #495057;
    --gray-900: #212529;
    --text-main: #2D3436;
    --text-light: #636E72;
    --shadow-sm: 0 2px 8px rgba(0,200,83,0.08);
    --shadow-md: 0 8px 32px rgba(0,200,83,0.15);
    --shadow-lg: 0 20px 60px rgba(0,200,83,0.2);
    --radius: 16px;
    --radius-lg: 24px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Vazirmatn', sans-serif;
    background: var(--white);
    color: var(--text-main);
    direction: rtl;
    overflow-x: hidden;
    line-height: 1.8;
}

/* ---- SCROLLBAR ---- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--gray-100); }
::-webkit-scrollbar-thumb { 
    background: linear-gradient(180deg, var(--primary), var(--primary-dark));
    border-radius: 3px;
}

/* ---- SELECTION ---- */
::selection {
    background: var(--primary-light);
    color: var(--secondary);
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0,200,83,0.1);
    transition: var(--transition);
    padding: 0;
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
}

.navbar-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 75px;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.brand-logo {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    font-weight: 900;
    box-shadow: 0 4px 15px rgba(0,200,83,0.3);
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-size: 17px;
    font-weight: 800;
    color: var(--text-main);
    line-height: 1;
}

.brand-title {
    font-size: 11px;
    color: var(--primary);
    font-weight: 500;
    line-height: 1.4;
}

.navbar-nav {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 4px;
}

.navbar-nav a {
    text-decoration: none;
    color: var(--text-main);
    font-size: 14px;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 10px;
    transition: var(--transition);
    display: block;
}

.navbar-nav a:hover,
.navbar-nav a.active {
    background: var(--primary-ultra-light);
    color: var(--primary-dark);
}

.navbar-cta {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark)) !important;
    color: white !important;
    box-shadow: 0 4px 15px rgba(0,200,83,0.3);
}

.navbar-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,200,83,0.4) !important;
    background: linear-gradient(135deg, var(--primary-dark), var(--secondary)) !important;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    border-radius: 10px;
    transition: var(--transition);
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--text-main);
    border-radius: 2px;
    transition: var(--transition);
    display: block;
}

.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== HERO SECTION ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #fff 0%, #F1FFF6 40%, #E8F5E9 100%);
    padding-top: 75px;
}

.hero-bg-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
}

.shape-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0,200,83,0.08) 0%, transparent 70%);
    top: -100px;
    left: -200px;
    animation: float1 8s ease-in-out infinite;
}

.shape-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(105,240,174,0.12) 0%, transparent 70%);
    bottom: -50px;
    right: -100px;
    animation: float2 6s ease-in-out infinite;
}

.shape-3 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(0,200,83,0.1) 0%, transparent 70%);
    top: 40%;
    left: 50%;
    animation: float3 10s ease-in-out infinite;
}

@keyframes float1 {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(10deg); }
}

@keyframes float2 {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(20px) rotate(-10deg); }
}

@keyframes float3 {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-20px) scale(1.1); }
}

.hero-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 80px 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary-ultra-light);
    border: 1px solid rgba(0,200,83,0.2);
    color: var(--primary-dark);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 24px;
}

.hero-badge-dot {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-title {
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 900;
    color: var(--text-main);
    line-height: 1.2;
    margin-bottom: 12px;
}

.hero-title .highlight {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(18px, 2.5vw, 26px);
    color: var(--primary-dark);
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-desc {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.9;
    margin-bottom: 40px;
    max-width: 540px;
}

.hero-keywords {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
}

.keyword-tag {
    background: white;
    border: 1.5px solid rgba(0,200,83,0.25);
    color: var(--primary-dark);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.keyword-tag:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,200,83,0.3);
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    padding: 16px 32px;
    border-radius: var(--radius);
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
    transition: var(--transition);
    box-shadow: 0 8px 25px rgba(0,200,83,0.35);
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(0,200,83,0.45);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: white;
    color: var(--primary-dark);
    padding: 16px 32px;
    border-radius: var(--radius);
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    border: 2px solid rgba(0,200,83,0.2);
}

.btn-secondary:hover {
    background: var(--primary-ultra-light);
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

/* Hero Image/Card Side */
.hero-visual {
    position: relative;
}

.hero-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(0,200,83,0.1);
    position: relative;
    overflow: hidden;
}

.hero-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary), var(--primary-dark));
}

.profile-area {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 32px;
}

.profile-img-wrapper {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-ultra-light), white);
    border: 4px solid var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,200,83,0.2);
}

.profile-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.profile-placeholder {
    font-size: 60px;
    color: var(--primary);
}

.profile-online {
    position: absolute;
    bottom: 8px;
    left: 8px;
    width: 18px;
    height: 18px;
    background: #00C853;
    border-radius: 50%;
    border: 3px solid white;
}

.profile-name {
    font-size: 22px;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 6px;
}

.profile-role {
    font-size: 14px;
    color: var(--primary-dark);
    font-weight: 600;
    background: var(--primary-ultra-light);
    padding: 5px 16px;
    border-radius: 20px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 28px;
}

.stat-item {
    text-align: center;
    padding: 16px 12px;
    background: var(--gray-100);
    border-radius: var(--radius);
    transition: var(--transition);
}

.stat-item:hover {
    background: var(--primary-ultra-light);
    transform: translateY(-2px);
}

.stat-number {
    font-size: 26px;
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 11px;
    color: var(--text-light);
    font-weight: 500;
}

.bee2b-promo {
    background: linear-gradient(135deg, var(--primary-ultra-light), #fff);
    border: 1.5px solid rgba(0,200,83,0.2);
    border-radius: var(--radius);
    padding: 18px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    transition: var(--transition);
}

.bee2b-promo:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}

.bee2b-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 22px;
    flex-shrink: 0;
}

.bee2b-text strong {
    display: block;
    font-size: 14px;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 2px;
}

.bee2b-text span {
    font-size: 12px;
    color: var(--text-light);
}

/* ===== SECTION COMMON ===== */
.section {
    padding: 100px 0;
}

.section-alt {
    background: linear-gradient(180deg, var(--gray-100) 0%, white 100%);
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-header {
    text-align: center;
    margin-bottom: 70px;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary-ultra-light);
    color: var(--primary-dark);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 20px;
    border: 1px solid rgba(0,200,83,0.15);
}

.section-title {
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 900;
    color: var(--text-main);
    margin-bottom: 16px;
    line-height: 1.3;
}

.section-title .green {
    color: var(--primary);
}

.section-desc {
    font-size: 16px;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.9;
}

.divider {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    border-radius: 2px;
    margin: 20px auto 0;
}

/* ===== SERVICES SECTION ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.service-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 36px 30px;
    border: 1.5px solid var(--gray-200);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    display: block;
}

.service-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    height: 0;
    background: linear-gradient(180deg, transparent, var(--primary-ultra-light));
    transition: var(--transition);
}

.service-card:hover {
    border-color: var(--primary);
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.service-card:hover::before {
    height: 100%;
}

.service-icon {
    width: 64px;
    height: 64px;
    background: var(--primary-ultra-light);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: var(--primary);
    margin-bottom: 24px;
    transition: var(--transition);
    position: relative;
    z-index: 1;
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(0,200,83,0.3);
}

.service-title {
    font-size: 18px;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.service-desc {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--primary);
    font-size: 13px;
    font-weight: 700;
    margin-top: 20px;
    position: relative;
    z-index: 1;
    transition: var(--transition);
}

.service-link i {
    transition: var(--transition);
}

.service-card:hover .service-link i {
    transform: translateX(-4px);
}

/* ===== BEE2B CRM SECTION ===== */
.bee2b-section {
    background: linear-gradient(135deg, var(--secondary) 0%, #2E7D32 50%, var(--primary-dark) 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.bee2b-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%2369F0AE' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.bee2b-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.bee2b-text-side {
    color: white;
}

.bee2b-text-side .section-badge {
    background: rgba(105,240,174,0.15);
    color: var(--primary-light);
    border-color: rgba(105,240,174,0.2);
}

.bee2b-text-side .section-title {
    color: white;
}

.bee2b-text-side .section-title .green {
    color: var(--primary-light);
}

.bee2b-text-side p {
    color: rgba(255,255,255,0.8);
    font-size: 16px;
    line-height: 1.9;
    margin-bottom: 30px;
}

.bee2b-features {
    list-style: none;
    margin-bottom: 40px;
}

.bee2b-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255,255,255,0.9);
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 14px;
}

.bee2b-features li i {
    width: 28px;
    height: 28px;
    background: rgba(105,240,174,0.15);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-light);
    font-size: 13px;
    flex-shrink: 0;
}

.btn-white {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: white;
    color: var(--primary-dark);
    padding: 16px 32px;
    border-radius: var(--radius);
    text-decoration: none;
    font-size: 15px;
    font-weight: 800;
    transition: var(--transition);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.btn-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.3);
}

.bee2b-mockup {
    position: relative;
}

.mockup-browser {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.mockup-bar {
    background: rgba(255,255,255,0.08);
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.mockup-dots {
    display: flex;
    gap: 6px;
}

.mockup-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.dot-red { background: #ff5f57; }
.dot-yellow { background: #febc2e; }
.dot-green { background: #28c840; }

.mockup-url {
    background: rgba(255,255,255,0.1);
    border-radius: 8px;
    padding: 5px 14px;
    color: rgba(255,255,255,0.7);
    font-size: 12px;
    flex: 1;
    text-align: center;
}

.mockup-body {
    padding: 28px;
}

.crm-preview {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.crm-row {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255,255,255,0.06);
    border-radius: 12px;
    padding: 14px 16px;
    animation: slideIn 0.5s ease forwards;
}

@keyframes slideIn {
    from { opacity: 0; transform: translateX(20px); }
    to { opacity: 1; transform: translateX(0); }
}

.crm-avatar {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 14px;
    font-weight: 700;
    flex-shrink: 0;
}

.crm-info strong {
    display: block;
    color: white;
    font-size: 13px;
    font-weight: 700;
}

.crm-info span {
    font-size: 11px;
    color: rgba(255,255,255,0.5);
}

.crm-badge {
    margin-right: auto;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 700;
}

.badge-hot { background: rgba(255,82,82,0.15); color: #ff5252; }
.badge-warm { background: rgba(255,193,7,0.15); color: #ffc107; }
.badge-new { background: rgba(0,200,83,0.15); color: var(--primary-light); }

/* ===== PORTFOLIO / CLIENTS ===== */
.clients-ticker {
    overflow: hidden;
    position: relative;
}

.ticker-track {
    display: flex;
    gap: 24px;
    animation: ticker 30s linear infinite;
    width: max-content;
}

.ticker-track:hover {
    animation-play-state: paused;
}

@keyframes ticker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.client-pill {
    display: flex;
    align-items: center;
    gap: 10px;
    background: white;
    border: 1.5px solid var(--gray-200);
    border-radius: 50px;
    padding: 10px 22px;
    white-space: nowrap;
    transition: var(--transition);
    cursor: default;
    box-shadow: var(--shadow-sm);
}

.client-pill:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.client-pill-icon {
    width: 32px;
    height: 32px;
    background: var(--primary-ultra-light);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 14px;
    font-weight: 800;
}

.client-pill span {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-main);
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-top: 50px;
}

.client-card {
    background: white;
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 24px 20px;
    text-align: center;
    transition: var(--transition);
    cursor: default;
}

.client-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.client-card-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-ultra-light), white);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 800;
    color: var(--primary-dark);
    margin: 0 auto 14px;
}

.client-card-name {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 4px;
}

.client-card-cat {
    font-size: 11px;
    color: var(--text-light);
}

/* ===== ABOUT SECTION ===== */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image-side {
    position: relative;
}

.about-img-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(0,200,83,0.1);
    text-align: center;
}

.about-avatar {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-ultra-light), white);
    border: 5px solid var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 80px;
    color: var(--primary);
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,200,83,0.2);
}

.about-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.floating-badge {
    position: absolute;
    background: white;
    border-radius: var(--radius);
    padding: 14px 18px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0,200,83,0.1);
    display: flex;
    align-items: center;
    gap: 10px;
    animation: floatBadge 3s ease-in-out infinite;
}

@keyframes floatBadge {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.floating-badge-1 {
    top: 20px;
    left: -30px;
    animation-delay: 0s;
}

.floating-badge-2 {
    bottom: 40px;
    right: -30px;
    animation-delay: 1.5s;
}

.fb-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
}

.fb-text strong {
    display: block;
    font-size: 16px;
    font-weight: 800;
    color: var(--primary);
}

.fb-text span {
    font-size: 11px;
    color: var(--text-light);
}

.about-text-side .section-header {
    text-align: right;
    margin-bottom: 30px;
}

.about-text-side .divider {
    margin: 20px 0 0;
}

.about-desc {
    font-size: 15px;
    color: var(--text-light);
    line-height: 2;
    margin-bottom: 20px;
}

.about-expertise {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
    margin-bottom: 36px;
}

.expertise-tag {
    background: var(--primary-ultra-light);
    border: 1px solid rgba(0,200,83,0.2);
    color: var(--primary-dark);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
}

/* ===== TESTIMONIALS ===== */
.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.testimonial-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 32px;
    border: 1.5px solid var(--gray-200);
    transition: var(--transition);
    position: relative;
}

.testimonial-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.testimonial-quote {
    font-size: 40px;
    color: var(--primary-light);
    line-height: 1;
    margin-bottom: 16px;
    font-family: serif;
}

.testimonial-text {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.9;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.author-avatar {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    font-weight: 700;
}

.author-name {
    font-size: 15px;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 2px;
}

.author-pos {
    font-size: 12px;
    color: var(--text-light);
}

.stars {
    color: #FFC107;
    font-size: 13px;
    letter-spacing: 2px;
    margin-top: 4px;
}

/* ===== BLOG ===== */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.blog-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1.5px solid var(--gray-200);
    transition: var(--transition);
    text-decoration: none;
    display: block;
    color: inherit;
}

.blog-card:hover {
    border-color: var(--primary);
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.blog-card-img {
    height: 200px;
    background: linear-gradient(135deg, var(--primary-ultra-light), var(--gray-100));
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.blog-card:hover .blog-card-img img {
    transform: scale(1.05);
}

.blog-card-img-placeholder {
    font-size: 60px;
    color: var(--primary-light);
    opacity: 0.5;
}

.blog-cat-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--primary);
    color: white;
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
}

.blog-card-body {
    padding: 24px;
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 14px;
}

.blog-meta span {
    font-size: 12px;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 5px;
}

.blog-title {
    font-size: 17px;
    font-weight: 800;
    color: var(--text-main);
    line-height: 1.5;
    margin-bottom: 12px;
    transition: var(--transition);
}

.blog-card:hover .blog-title {
    color: var(--primary-dark);
}

.blog-excerpt {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.8;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--primary);
    font-size: 13px;
    font-weight: 700;
    margin-top: 16px;
    transition: var(--transition);
}

/* ===== CTA SECTION ===== */
.cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    top: -200px;
    right: -100px;
}

.cta-section::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    bottom: -150px;
    left: -50px;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 900;
    color: white;
    margin-bottom: 16px;
}

.cta-desc {
    font-size: 17px;
    color: rgba(255,255,255,0.85);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-white-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: white;
    padding: 16px 32px;
    border-radius: var(--radius);
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
    transition: var(--transition);
    border: 2px solid rgba(255,255,255,0.4);
}

.btn-white-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: white;
    transform: translateY(-3px);
}

/* ===== CONTACT SECTION ===== */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
    align-items: start;
}

.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-info-card {
    background: white;
    border-radius: var(--radius);
    padding: 24px;
    border: 1.5px solid var(--gray-200);
    display: flex;
    align-items: center;
    gap: 16px;
    transition: var(--transition);
}

.contact-info-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
    transform: translateX(4px);
}

.ci-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-ultra-light), white);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 20px;
    flex-shrink: 0;
}

.ci-label {
    font-size: 12px;
    color: var(--text-light);
    margin-bottom: 4px;
}

.ci-value {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-main);
}

.contact-form-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 44px;
    border: 1.5px solid var(--gray-200);
    box-shadow: var(--shadow-sm);
}

.form-title {
    font-size: 22px;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 30px;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-main);
}

.form-group label span {
    color: var(--primary);
}

.form-control {
    padding: 14px 18px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius);
    font-family: 'Vazirmatn', sans-serif;
    font-size: 14px;
    color: var(--text-main);
    background: var(--gray-100);
    transition: var(--transition);
    outline: none;
    direction: rtl;
}

.form-control:focus {
    border-color: var(--primary);
    background: white;
    box-shadow: 0 0 0 4px rgba(0,200,83,0.1);
}

textarea.form-control {
    resize: vertical;
    min-height: 140px;
}

/* ===== FOOTER ===== */
.footer {
    background: linear-gradient(135deg, var(--gray-900) 0%, #1a2820 100%);
    color: rgba(255,255,255,0.8);
    padding-top: 80px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
}

.footer-about p {
    font-size: 14px;
    line-height: 1.9;
    color: rgba(255,255,255,0.6);
    margin: 20px 0 28px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.6);
    font-size: 16px;
    text-decoration: none;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,200,83,0.3);
}

.footer-col h4 {
    font-size: 15px;
    font-weight: 800;
    color: white;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 12px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 30px;
    height: 2px;
    background: var(--primary);
    border-radius: 1px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links a:hover {
    color: var(--primary-light);
    padding-right: 4px;
}

.footer-links a i {
    font-size: 10px;
    color: var(--primary);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 24px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(255,255,255,0.4);
}

.footer-bottom a {
    color: var(--primary-light);
    text-decoration: none;
}

/* ===== BACK TO TOP ===== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: 0 8px 25px rgba(0,200,83,0.35);
    border: none;
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(0,200,83,0.45);
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 56px;
    height: 56px;
    background: #25D366;
    color: white;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(37,211,102,0.4);
    transition: var(--transition);
    z-index: 999;
    animation: whatsappPulse 2s ease-in-out infinite;
}

@keyframes whatsappPulse {
    0%, 100% { box-shadow: 0 8px 25px rgba(37,211,102,0.4); }
    50% { box-shadow: 0 8px 40px rgba(37,211,102,0.7); }
}

.whatsapp-float:hover {
    transform: translateY(-4px) scale(1.05);
    background: #128C7E;
}

/* ===== LOADING ANIMATION ===== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .clients-grid { grid-template-columns: repeat(4, 1fr); }
    .hero-container { gap: 40px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .navbar-nav { display: none; }
    .hamburger { display: flex; }
    
    .mobile-menu {
        display: none;
        position: fixed;
        inset: 75px 0 0;
        background: white;
        z-index: 999;
        padding: 20px;
        box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    }
    
    .mobile-menu.open { display: block; }
    
    .mobile-menu ul {
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: 4px;
    }
    
    .mobile-menu ul a {
        display: block;
        padding: 14px 18px;
        border-radius: 12px;
        text-decoration: none;
        color: var(--text-main);
        font-weight: 600;
        font-size: 16px;
        transition: var(--transition);
    }
    
    .mobile-menu ul a:hover {
        background: var(--primary-ultra-light);
        color: var(--primary-dark);
    }
    
    .hero-container { 
        grid-template-columns: 1fr; 
        padding: 40px 20px;
    }
    
    .hero-visual { display: none; }
    
    .services-grid { grid-template-columns: 1fr; }
    .clients-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials-slider { grid-template-columns: 1fr; }
    .blog-grid { grid-template-columns: 1fr; }
    .about-content { grid-template-columns: 1fr; }
    .bee2b-content { grid-template-columns: 1fr; }
    .contact-wrapper { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .form-grid { grid-template-columns: 1fr; }
    
    .floating-badge { display: none; }
}

/* ===== ADMIN STYLES ===== */
.admin-body {
    background: var(--gray-100);
    direction: rtl;
}

.admin-login {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-ultra-light), white);
}

.login-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 50px 40px;
    width: 100%;
    max-width: 420px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(0,200,83,0.1);
    text-align: center;
}

.login-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: white;
    margin: 0 auto 28px;
    box-shadow: 0 10px 30px rgba(0,200,83,0.3);
}

.sidebar {
    width: 260px;
    background: white;
    border-left: 1px solid var(--gray-200);
    height: 100vh;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 100;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.sidebar-header {
    padding: 28px 24px;
    border-bottom: 1px solid var(--gray-200);
}

.sidebar-nav {
    padding: 20px 16px;
    flex: 1;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.sidebar-nav a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: 12px;
    text-decoration: none;
    color: var(--text-main);
    font-size: 14px;
    font-weight: 600;
    transition: var(--transition);
}

.sidebar-nav a:hover,
.sidebar-nav a.active {
    background: var(--primary-ultra-light);
    color: var(--primary-dark);
}

.sidebar-nav a i {
    width: 20px;
    text-align: center;
    color: var(--primary);
}

.admin-main {
    margin-right: 260px;
    padding: 30px;
    min-height: 100vh;
}

.admin-topbar {
    background: white;
    border-radius: var(--radius);
    padding: 18px 28px;
    margin-bottom: 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
}

.dashboard-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.dash-stat-card {
    background: white;
    border-radius: var(--radius);
    padding: 26px;
    border: 1.5px solid var(--gray-200);
    transition: var(--transition);
}

.dash-stat-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
}

.dash-stat-num {
    font-size: 36px;
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 8px;
}

.dash-stat-label {
    font-size: 14px;
    color: var(--text-light);
    font-weight: 600;
}

.admin-card {
    background: white;
    border-radius: var(--radius);
    padding: 28px;
    border: 1.5px solid var(--gray-200);
    margin-bottom: 24px;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
}

.admin-table th {
    background: var(--gray-100);
    padding: 14px 18px;
    text-align: right;
    font-size: 13px;
    font-weight: 700;
    color: var(--text-main);
    border-bottom: 1px solid var(--gray-200);
}

.admin-table td {
    padding: 14px 18px;
    border-bottom: 1px solid var(--gray-200);
    font-size: 14px;
    color: var(--text-main);
}

.admin-table tr:hover td {
    background: var(--gray-100);
}

.badge-published {
    background: rgba(0,200,83,0.1);
    color: var(--primary-dark);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
}

.badge-draft {
    background: rgba(255,193,7,0.1);
    color: #f57c00;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
}

.btn-sm {
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn-edit {
    background: var(--primary-ultra-light);
    color: var(--primary-dark);
}

.btn-delete {
    background: rgba(244,67,54,0.1);
    color: #f44336;
}

.btn-edit:hover { background: var(--primary); color: white; }
.btn-delete:hover { background: #f44336; color: white; }

.alert {
    padding: 14px 20px;
    border-radius: var(--radius);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.alert-success {
    background: rgba(0,200,83,0.1);
    color: var(--primary-dark);
    border: 1px solid rgba(0,200,83,0.2);
}

.alert-error {
    background: rgba(244,67,54,0.1);
    color: #c62828;
    border: 1px solid rgba(244,67,54,0.2);
}
/* ============================================
   NAVBAR - COMPLETE FIX
   ============================================ */

.navbar {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 9999;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 200, 83, 0.12);
    transition: all 0.3s ease;
    height: 75px;
}

.navbar.scrolled {
    box-shadow: 0 4px 30px rgba(0, 200, 83, 0.12);
}

.navbar-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    height: 75px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

/* ---- Brand ---- */
.navbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    flex-shrink: 0;
}

.brand-logo {
    width: 46px;
    height: 46px;
    background: linear-gradient(135deg, #00C853, #00A846);
    border-radius: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 22px;
    font-weight: 900;
    box-shadow: 0 4px 15px rgba(0, 200, 83, 0.35);
    flex-shrink: 0;
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.brand-name {
    font-size: 17px;
    font-weight: 800;
    color: #2D3436;
    margin-bottom: 3px;
}

.brand-title {
    font-size: 11px;
    color: #00C853;
    font-weight: 600;
}

/* ---- Desktop Nav ---- */
.navbar-nav {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2px;
    flex: 1;
    justify-content: center;
}

.navbar-nav li {
    margin: 0;
    padding: 0;
}

.navbar-nav a {
    display: flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    color: #2D3436;
    font-size: 13.5px;
    font-weight: 600;
    padding: 8px 13px;
    border-radius: 10px;
    transition: all 0.25s ease;
    white-space: nowrap;
    font-family: 'Vazirmatn', sans-serif;
}

.navbar-nav a i {
    font-size: 12px;
    color: #00C853;
}

.navbar-nav a:hover {
    background: #E8F5E9;
    color: #00A846;
}

.navbar-nav a.nav-active {
    background: #E8F5E9;
    color: #00A846;
    font-weight: 700;
}

/* bee2b special */
.navbar-nav a.nav-bee2b {
    color: #00A846;
    border: 1.5px solid rgba(0, 200, 83, 0.25);
}

.navbar-nav a.nav-bee2b:hover {
    background: #00C853;
    color: #fff;
    border-color: #00C853;
}

.navbar-nav a.nav-bee2b i {
    color: inherit;
}

/* CTA Button */
.navbar-nav a.nav-cta {
    background: linear-gradient(135deg, #00C853, #00A846);
    color: #fff !important;
    border-radius: 12px;
    padding: 10px 18px;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(0, 200, 83, 0.35);
    margin-right: 6px;
}

.navbar-nav a.nav-cta i {
    color: #fff !important;
}

.navbar-nav a.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 200, 83, 0.45);
    background: linear-gradient(135deg, #00A846, #1B5E20);
}

/* ---- Hamburger ---- */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    background: #E8F5E9;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
    padding: 0;
}

.hamburger:hover {
    background: #00C853;
}

.hamburger:hover span {
    background: #fff;
}

.hamburger span {
    display: block;
    width: 22px;
    height: 2.5px;
    background: #2D3436;
    border-radius: 3px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.hamburger.is-open span:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
}

.hamburger.is-open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger.is-open span:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
}

/* ---- Mobile Overlay ---- */
.mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9997;
    backdrop-filter: blur(4px);
}

.mobile-overlay.show {
    display: block;
    animation: fadeIn 0.3s ease;
}

/* ---- Mobile Menu ---- */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -340px;
    width: 320px;
    height: 100vh;
    background: #fff;
    z-index: 9998;
    transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    box-shadow: -10px 0 50px rgba(0, 0, 0, 0.1);
}

.mobile-menu.is-open {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px 20px 20px;
    border-bottom: 1px solid #E8F5E9;
    background: linear-gradient(135deg, #F1FFF6, #fff);
    flex-shrink: 0;
}

.mobile-close {
    margin-right: auto;
    width: 36px;
    height: 36px;
    background: #ffeef0;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f44336;
    font-size: 16px;
    flex-shrink: 0;
    transition: all 0.2s ease;
}

.mobile-close:hover {
    background: #f44336;
    color: #fff;
    transform: rotate(90deg);
}

.mobile-nav {
    list-style: none;
    margin: 0;
    padding: 16px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mobile-nav li {
    margin: 0;
}

.mobile-nav a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 14px;
    text-decoration: none;
    color: #2D3436;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.25s ease;
    font-family: 'Vazirmatn', sans-serif;
}

.mobile-nav a:hover {
    background: #E8F5E9;
    color: #00A846;
}

.mobile-nav a.mob-active {
    background: #E8F5E9;
    color: #00A846;
    font-weight: 700;
}

.mob-icon {
    width: 38px;
    height: 38px;
    background: #E8F5E9;
    border-radius: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00C853;
    font-size: 15px;
    flex-shrink: 0;
    transition: all 0.25s ease;
}

.mobile-nav a:hover .mob-icon {
    background: #00C853;
    color: #fff;
}

.mobile-nav a.mob-active .mob-icon {
    background: #00C853;
    color: #fff;
}

.mob-arrow {
    margin-right: auto;
    font-size: 11px;
    color: #ADB5BD;
}

/* bee2b mobile */
.mobile-nav a.mob-bee2b {
    border: 1.5px solid rgba(0, 200, 83, 0.2);
    color: #00A846;
}

.mobile-nav a.mob-bee2b .mob-icon {
    background: rgba(0, 200, 83, 0.15);
    color: #00A846;
}

.mobile-nav a.mob-bee2b:hover {
    background: #00C853;
    color: #fff;
    border-color: #00C853;
}

.mobile-nav a.mob-bee2b:hover .mob-icon {
    background: rgba(255,255,255,0.2);
    color: #fff;
}

/* CTA mobile */
.mobile-nav a.mob-cta {
    background: linear-gradient(135deg, #00C853, #00A846);
    color: #fff !important;
    box-shadow: 0 4px 20px rgba(0, 200, 83, 0.3);
    margin-top: 8px;
}

.mobile-nav a.mob-cta .mob-icon {
    background: rgba(255,255,255,0.2);
    color: #fff;
}

.mobile-nav a.mob-cta .mob-arrow {
    color: rgba(255,255,255,0.6);
}

.mobile-menu-footer {
    padding: 20px;
    border-top: 1px solid #E8F5E9;
    text-align: center;
    flex-shrink: 0;
}

.mobile-menu-footer p {
    font-size: 12px;
    color: #ADB5BD;
    margin-bottom: 12px;
}

.mob-social {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.mob-social a {
    width: 38px;
    height: 38px;
    border-radius: 11px;
    background: #E8F5E9;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00A846;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.25s ease;
}

.mob-social a:hover {
    background: #00C853;
    color: #fff;
    transform: translateY(-2px);
}

/* ---- Responsive ---- */
@media (max-width: 1100px) {
    .navbar-nav a {
        font-size: 12.5px;
        padding: 7px 10px;
    }
}

@media (max-width: 900px) {
    .navbar-nav {
        display: none;
    }
    .hamburger {
        display: flex;
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}