/* ================================================================ */
/* FONTS & BASE
/* ================================================================ */
@import url('https://fonts.googleapis.com/css2?family=Vazirmatn:wght@300;400;500;700;900&display=swap');

:root {
    --primary: #ff8a00;
    --primary-dark: #cc6e00;
    --primary-light: #ffe4cc;
    --primary-50: #fff4ea;
    --gray-900: #1a1a1a;
    --gray-800: #2f3545;
    --gray-700: #374151;
    --gray-600: #6c757d;
    --gray-500: #8b95a5;
    --gray-400: #9ca3af;
    --gray-300: #d1d5db;
    --gray-200: #e5e7eb;
    --gray-100: #f3f4f6;
    --gray-50: #f9fafb;
    --emerald: #10b981;
    --emerald-dark: #059669;
    --emerald-50: #ecfdf5;
    --rose: #ef4444;
    --blue: #3b82f6;
    --purple: #8b5cf6;
    --orange: #f97316;
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.07);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.08);
    --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1);
    --shadow-2xl: 0 25px 50px -12px rgba(0,0,0,0.15);
    --radius-2xl: 2rem;
    --radius-3xl: 2.5rem;
}

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

body {
    font-family: 'Vazirmatn', 'Segoe UI', sans-serif;
    background: #f8f9fb;
    color: var(--gray-900);
    -webkit-font-smoothing: antialiased;
    line-height: 1.6;
    transition: background 0.3s ease, color 0.3s ease;
}


/* ================================================================ */
/* BACKGROUND DECORATIONS
/* ================================================================ */
.page-wrapper {
    position: relative;
    overflow: hidden;
    min-height: 100vh;
}

.page-wrapper::before {
    content: '';
    position: fixed;
    top: -10%;
    left: -10%;
    width: 50%;
    height: 50%;
    background: rgba(255,138,0,0.08);
    border-radius: 50%;
    filter: blur(120px);
    pointer-events: none;
    z-index: 0;
}

.page-wrapper::after {
    content: '';
    position: fixed;
    bottom: -10%;
    right: -10%;
    width: 40%;
    height: 40%;
    background: rgba(16,185,129,0.06);
    border-radius: 50%;
    filter: blur(120px);
    pointer-events: none;
    z-index: 0;
}

.bg-blob-1 {
    position: fixed;
    top: 30%;
    right: 5%;
    width: 25%;
    height: 25%;
    background: rgba(255,138,0,0.05);
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
    z-index: 0;
}

.bg-blob-2 {
    position: fixed;
    bottom: 20%;
    left: 10%;
    width: 30%;
    height: 30%;
    background: rgba(16,185,129,0.04);
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
    z-index: 0;
}

.bg-pattern {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    opacity: 0.03;
    background-image: radial-gradient(#ff8a00 2px, transparent 2px);
    background-size: 32px 32px;
}

.main-content {
    position: relative;
    z-index: 1;
}


/* ================================================================ */
/* NAVBAR
/* ================================================================ */
.navbar-wrapper {
    padding-top: 1.5rem;
    padding-bottom: 1rem;
    position: relative;
    z-index: 50;
}

.navbar-glass {
    background: rgba(255,255,255,0.65);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,0.5);
    border-radius: 2rem;
    padding: 0.75rem 1.75rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 8px 32px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
}

/* Brand */
.navbar-brand {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.brand-link {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    text-decoration: none;
    font-size: 1.625rem;
    font-weight: 900;
    color: var(--gray-800);
    letter-spacing: -0.05em;
    transition: color 0.3s ease;
}

.brand-link:hover {
    color: var(--gray-900);
}

.brand-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    background: var(--primary);
    border-radius: 1rem;
    color: #fff;
    font-size: 1.625rem;
    font-weight: 900;
    transform: rotate(-6deg);
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(255,138,0,0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.brand-link:hover .brand-icon {
    transform: rotate(-3deg) scale(1.03);
    box-shadow: 0 6px 20px rgba(255,138,0,0.4);
}

.brand-name {
    font-size: 1.625rem;
    font-weight: 900;
    color: var(--gray-800);
    letter-spacing: -0.05em;
}

/* Search */
.navbar-search {
    flex: 1;
    max-width: 420px;
    margin: 0 1.5rem;
}

.search-box {
    position: relative;
    width: 100%;
}

.search-box input {
    width: 100%;
    padding: 0.75rem 1.25rem;
    padding-right: 3.25rem;
    border-radius: 9999px;
    border: 1.5px solid rgba(255,255,255,0.8);
    background: rgba(255,255,255,0.75);
    backdrop-filter: blur(4px);
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--gray-700);
    outline: none;
    transition: all 0.3s ease;
    height: 3.25rem;
}

.search-box input::placeholder {
    color: var(--gray-400);
    font-weight: 400;
}

.search-box input:focus {
    border-color: var(--primary);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(255,138,0,0.1);
}

.search-box .search-icon {
    position: absolute;
    right: 1.125rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray-400);
    font-size: 1.125rem;
    transition: color 0.3s ease;
}

.search-box input:focus+.search-icon,
.search-box input:focus~.search-icon {
    color: var(--primary);
}

/* Actions */
.navbar-actions {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    flex-shrink: 0;
}

.btn-theme {
    width: 3.125rem;
    height: 3.125rem;
    border-radius: 50%;
    border: 1.5px solid rgba(255,255,255,0.6);
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(4px);
    color: var(--gray-600);
    font-size: 1.125rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;
    flex-shrink: 0;
}

.btn-theme:hover {
    background: #fff;
    color: var(--gray-900);
    border-color: var(--gray-300);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.btn-login {
    background: var(--emerald);
    color: #fff;
    border-radius: 9999px;
    padding: 0.75rem 1.75rem;
    font-weight: 700;
    font-size: 0.9375rem;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(16,185,129,0.3);
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    white-space: nowrap;
    height: 3.125rem;
}

.btn-login i {
    font-size: 1rem;
}

.btn-login span {
    font-weight: 700;
}

.btn-login:hover {
    background: var(--emerald-dark);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(16,185,129,0.4);
}

.btn-login:active {
    transform: translateY(0);
}

.btn-menu {
    width: 3.125rem;
    height: 3.125rem;
    border: 1.5px solid rgba(255,255,255,0.6);
    border-radius: 50%;
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(4px);
    color: var(--gray-600);
    font-size: 1.25rem;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.btn-menu:hover {
    background: #fff;
    color: var(--gray-900);
    border-color: var(--gray-300);
}

/* Navbar Links */
.navbar-links {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem 2rem;
    margin-top: 1.5rem;
    padding: 0 1.5rem;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--gray-600);
}

.navbar-links .nav-link {
    color: var(--gray-600);
    text-decoration: none;
    padding: 0.375rem 1rem;
    border-radius: 9999px;
    transition: all 0.3s;
    font-size: 0.9rem;
}

.navbar-links .nav-link:hover {
    color: var(--gray-900);
}

.navbar-links .nav-link.active {
    color: var(--primary);
    background: rgba(255,255,255,0.6);
    box-shadow: var(--shadow-sm);
}

/* Dropdown */
.dropdown-services {
    position: relative;
}

.dropdown-toggle-btn {
    background: rgba(255,255,255,0.5);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255,255,255,0.5);
    border-radius: 9999px;
    padding: 0.375rem 1.25rem;
    font-weight: 700;
    font-size: 0.875rem;
    color: var(--gray-700);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s;
    cursor: pointer;
}

.dropdown-toggle-btn:hover {
    background: #fff;
}

.dropdown-menu-services {
    position: absolute;
    top: calc(100% + 0.75rem);
    right: 0;
    width: 440px;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(16px);
    border: 1px solid var(--gray-200);
    border-radius: 2rem;
    padding: 1.25rem;
    box-shadow: var(--shadow-xl);
    display: none;
    z-index: 100;
}

.dropdown-menu-services.show {
    display: block;
}

.dropdown-header {
    font-weight: 900;
    font-size: 0.75rem;
    color: var(--gray-400);
    padding: 0 0.75rem 0.5rem 0.75rem;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    margin-bottom: 0.5rem;
}

.dropdown-item {
    display: flex;
    align-items: flex-start;
    gap: 0.875rem;
    padding: 0.75rem;
    border-radius: 1rem;
    text-decoration: none;
    color: var(--gray-800);
    transition: all 0.3s;
}

.dropdown-item:hover {
    background: rgba(0,0,0,0.03);
}

.dropdown-item .item-icon {
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1rem;
}

.dropdown-item .item-icon.orange {
    background: #fff4ea;
    color: #f97316;
}
.dropdown-item .item-icon.emerald {
    background: #ecfdf5;
    color: #10b981;
}
.dropdown-item .item-icon.blue {
    background: #eff6ff;
    color: #3b82f6;
}
.dropdown-item .item-icon.purple {
    background: #f5f3ff;
    color: #8b5cf6;
}
.dropdown-item .item-icon.indigo {
    background: #eef2ff;
    color: #6366f1;
}

.dropdown-item .item-title {
    font-weight: 900;
    font-size: 0.875rem;
    display: block;
}

.dropdown-item .item-desc {
    font-size: 0.6875rem;
    color: var(--gray-400);
    font-weight: 700;
}

.dropdown-item .item-arrow {
    color: var(--gray-300);
    margin-right: auto;
    transition: all 0.3s;
    margin-top: 0.25rem;
}

.dropdown-item:hover .item-arrow {
    color: var(--primary);
    transform: translateX(-4px);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    margin-top: 1rem;
    margin-left: 1rem;
    margin-right: 1rem;
    background: rgba(255,255,255,0.8);
    backdrop-filter: blur(12px);
    border-radius: 1.5rem;
    padding: 1rem;
    box-shadow: var(--shadow-lg);
}

.mobile-menu.open {
    display: block;
}

.mobile-menu-inner {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.mobile-link {
    padding: 0.75rem 1rem;
    border-radius: 0.75rem;
    font-weight: 700;
    color: var(--gray-600);
    text-decoration: none;
    transition: all 0.3s;
}

.mobile-link:hover {
    background: rgba(0,0,0,0.03);
    color: var(--gray-900);
}

.mobile-link.active {
    background: var(--primary-50);
    color: var(--primary);
}

.mobile-divider {
    border-top: 1px solid rgba(0,0,0,0.05);
    margin: 0.5rem 0;
}

.mobile-services-toggle {
    width: 100%;
    text-align: right;
    padding: 0.75rem 1rem;
    border-radius: 0.75rem;
    font-weight: 700;
    color: var(--gray-700);
    background: transparent;
    border: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s;
    cursor: pointer;
}

.mobile-services-toggle:hover {
    background: rgba(0,0,0,0.03);
}

.mobile-services-list {
    display: none;
    padding: 0.5rem 1rem;
    background: rgba(0,0,0,0.02);
    border-radius: 0.75rem;
    margin: 0 0.5rem;
}

.mobile-services-list.open {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.mobile-services-list a {
    padding: 0.5rem 0.75rem;
    border-radius: 0.5rem;
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--gray-600);
    text-decoration: none;
    transition: all 0.3s;
}

.mobile-services-list a:hover {
    background: #fff;
    color: var(--primary);
}

.mobile-btn-login {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem;
    background: var(--emerald);
    color: #fff;
    border-radius: 0.75rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
}

.mobile-btn-login:hover {
    background: var(--emerald-dark);
    color: #fff;
}


/* ================================================================ */
/* HERO SECTION
/* ================================================================ */
.hero-section {
    padding: 3rem 0 2rem 0;
    position: relative;
    z-index: 10;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.375rem 1rem;
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(4px);
    border-radius: 9999px;
    border: 1px solid rgba(255,255,255,0.5);
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--gray-600);
    margin-bottom: 2rem;
}

.badge-dot {
    width: 0.625rem;
    height: 0.625rem;
    border-radius: 50%;
    background: var(--primary);
    box-shadow: 0 0 8px rgba(255,138,0,0.3);
}

.hero-title {
    font-size: 3rem;
    font-weight: 900;
    color: var(--gray-800);
    line-height: 1.2;
    margin-bottom: 2rem;
}

.hero-title .text-gray {
    color: var(--gray-600);
}

@media (min-width: 992px) {
    .hero-title {
        font-size: 4.5rem;
    }
}

.hero-desc {
    font-size: 1.125rem;
    color: var(--gray-600);
    line-height: 1.7;
    /* max-width: 540px; */
    font-weight: 500;
    margin-bottom: 2.5rem;
}

.btn-hero {
    background: var(--emerald);
    color: #fff;
    padding: 1rem 2rem;
    border-radius: 1rem;
    font-weight: 700;
    font-size: 1rem;
    border: none;
    box-shadow: 0 8px 24px rgba(16,185,129,0.3);
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    cursor: pointer;
}

.btn-hero:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(16,185,129,0.4);
    background: var(--emerald);
    color: #fff;
}

.hero-image-wrapper {
    position: relative;
    z-index: 10;
}

.hero-image-glass {
    position: absolute;
    inset: -1rem;
    background: rgba(255,255,255,0.4);
    backdrop-filter: blur(16px);
    border-radius: 3.5rem;
    border: 1px solid rgba(255,255,255,0.6);
    box-shadow: var(--shadow-xl);
    transform: rotate(-3deg);
    z-index: -1;
}

.hero-image {
    width: 100%;
    max-height: 600px;
    object-fit: cover;
    border-radius: 3rem;
    border: 4px solid rgba(255,255,255,0.8);
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 1;
}


/* ================================================================ */
/* SECTION HEADER
/* ================================================================ */
.section-header {
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--gray-800);
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--gray-600);
    font-weight: 500;
}

.section-dot {
    display: inline-block;
    width: 0.625rem;
    height: 0.625rem;
    border-radius: 50%;
}

.section-dot.orange {
    background: #f97316;
}
.section-dot.emerald {
    background: #10b981;
}


/* ================================================================ */
/* STEPS SECTION
/* ================================================================ */
.steps-section {
    padding: 4rem 0;
    position: relative;
    z-index: 10;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1rem;
}

.step-card {
    background: #fff;
    border-radius: 2rem;
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    transition: all 0.3s;
    border: 1px solid var(--gray-200);
}

.step-card:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: var(--shadow-2xl);
}

.step-top {
    padding: 2rem 1.5rem 1.25rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.step-top.green {
    background: #e6f4ea;
}
.step-top.red {
    background: #fce8e6;
}
.step-top.blue {
    background: #e8f0fe;
}
.step-top.cyan {
    background: #e0f7fa;
}
.step-top.yellow {
    background: #fff8e1;
}
.step-top.purple {
    background: #f3e5f5;
}
.step-top.pink {
    background: #fce4ec;
}
.step-top.emerald {
    background: #e8f5e9;
}

.step-number {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1;
}

.step-top.green .step-number {
    color: #1e8e3e;
}
.step-top.red .step-number {
    color: #d93025;
}
.step-top.blue .step-number {
    color: #1a73e8;
}
.step-top.cyan .step-number {
    color: #00acc1;
}
.step-top.yellow .step-number {
    color: #fbc02d;
}
.step-top.purple .step-number {
    color: #8e24aa;
}
.step-top.pink .step-number {
    color: #d81b60;
}
.step-top.emerald .step-number {
    color: #2e7d32;
}

.step-icon {
    width: 3.5rem;
    height: 3.5rem;
    background: #fff;
    border-radius: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--gray-800);
    box-shadow: var(--shadow-md);
}

.step-body {
    padding: 0.5rem 1.5rem 1.5rem 1.5rem;
}

.step-title {
    font-size: 1.125rem;
    font-weight: 900;
    color: var(--gray-800);
    margin-bottom: 0.5rem;
}

.step-desc {
    font-size: 0.875rem;
    color: var(--gray-600);
    font-weight: 500;
    line-height: 1.7;
}


/* ================================================================ */
/* PROJECT CARDS - استک‌دار
/* ================================================================ */
.project-card-wrapper {
    display: block;
    text-decoration: none;
    position: relative;
    padding-top: 3rem;
}

.project-stack-2 {
    position: absolute;
    top: 0.5rem;
    left: 12%;
    right: 12%;
    height: 8rem;
    background: rgba(255,255,255,0.4);
    backdrop-filter: blur(12px);
    border-radius: 2rem;
    border: 1px solid rgba(255,255,255,0.6);
    transform: rotate(6deg);
    opacity: 0.5;
    transition: all 0.5s;
    overflow: hidden;
    padding: 0.25rem;
}

.project-card-wrapper:hover .project-stack-2 {
    transform: rotate(12deg) translateY(-1rem);
}

.project-stack-2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 1.75rem;
    opacity: 0.6;
    mix-blend-mode: multiply;
}

.project-stack-1 {
    position: absolute;
    top: 1.5rem;
    left: 6%;
    right: 6%;
    height: 10rem;
    background: rgba(255,255,255,0.6);
    backdrop-filter: blur(12px);
    border-radius: 2rem;
    border: 1px solid rgba(255,255,255,0.6);
    transform: rotate(-3deg);
    transition: all 0.5s;
    overflow: hidden;
    padding: 0.25rem;
    box-shadow: var(--shadow-md);
}

.project-card-wrapper:hover .project-stack-1 {
    transform: rotate(-6deg) translateY(-0.5rem);
}

.project-stack-1 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 1.75rem;
    opacity: 0.9;
}

.project-front {
    position: relative;
    z-index: 20;
    margin-top: 7rem;
    border-radius: 2.5rem;
    padding: 2px;
    background: linear-gradient(to bottom right, #fed7aa, #fff, #a7f3d0);
    box-shadow: var(--shadow-xl);
    transition: all 0.5s;
}

.project-card-wrapper:hover .project-front {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(255,138,0,0.12);
}

.project-front-inner {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(12px);
    border-radius: calc(2.5rem - 2px);
    padding: 1.5rem;
    min-height: 150px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.project-title {
    font-size: 1.125rem;
    font-weight: 900;
    color: var(--gray-800);
    margin-bottom: 0.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.project-desc {
    font-size: 0.8125rem;
    color: var(--gray-600);
    font-weight: 500;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.project-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 1rem;
}

.project-tag {
    font-size: 0.625rem;
    font-weight: 700;
    color: var(--gray-600);
    background: var(--gray-100);
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    border: 1px solid var(--gray-200);
    text-transform: uppercase;
}

.project-arrow {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background: var(--gray-100);
    border: 1px solid var(--gray-200);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-400);
    transition: all 0.3s;
}

.project-card-wrapper:hover .project-arrow {
    background: var(--primary-50);
    color: var(--primary);
    transform: translateX(-4px);
}


/* ================================================================ */
/* CTA BANNER
/* ================================================================ */
.cta-banner {
    margin-top: 4rem;
    background: linear-gradient(to right, rgba(255,138,0,0.1), rgba(251,191,36,0.05));
    border: 1px solid rgba(255,138,0,0.2);
    border-radius: 2.5rem;
    padding: 2rem 2.5rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 8rem;
    height: 8rem;
    background: rgba(255,138,0,0.05);
    border-radius: 50%;
    filter: blur(40px);
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 1;
    flex: 1;
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    background: var(--primary);
    color: #fff;
    font-size: 0.625rem;
    font-weight: 900;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    margin-bottom: 0.5rem;
}

.cta-title {
    font-size: 1.25rem;
    font-weight: 900;
    color: var(--gray-900);
    margin-bottom: 0.25rem;
}

.cta-desc {
    font-size: 0.875rem;
    color: var(--gray-600);
    font-weight: 500;
    max-width: 480px;
}

.btn-cta {
    background: var(--primary);
    color: #fff;
    padding: 0.75rem 1.75rem;
    border-radius: 1rem;
    font-weight: 900;
    font-size: 0.875rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 8px 24px rgba(255,138,0,0.2);
    transition: all 0.3s;
    white-space: nowrap;
    position: relative;
    z-index: 1;
    text-decoration: none;
    border: none;
    cursor: pointer;
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(255,138,0,0.3);
    color: #fff;
}


/* ================================================================ */
/* TESTIMONIALS SECTION
/* ================================================================ */
.testimonials-section {
    padding: 6rem 0;
    position: relative;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.3);
    backdrop-filter: blur(16px);
    border-top: 1px solid rgba(255,255,255,0.6);
    border-bottom: 1px solid rgba(255,255,255,0.6);
    z-index: -1;
}

.testimonial-card {
    background: rgba(255,255,255,0.6);
    backdrop-filter: blur(12px);
    padding: 2rem;
    border-radius: 2rem;
    border: 1px solid rgba(255,255,255,0.6);
    box-shadow: var(--shadow-lg);
    transition: all 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.testimonial-text {
    font-size: 1.125rem;
    color: var(--gray-700);
    line-height: 1.8;
    font-style: italic;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-author img {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #fff;
    box-shadow: var(--shadow-sm);
}

.author-name {
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0;
    font-size: 1rem;
}

.author-company {
    font-size: 0.875rem;
    color: var(--gray-600);
}


/* ================================================================ */
/* BLOG CARDS
/* ================================================================ */
.blog-section {
    padding: 4rem 0;
}

.blog-card {
    display: block;
    text-decoration: none;
    background: rgba(255,255,255,0.8);
    backdrop-filter: blur(12px);
    border-radius: 2.5rem;
    padding: 0.75rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255,255,255,0.6);
    transition: all 0.3s;
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(16,185,129,0.1);
}

.blog-image-wrapper {
    background: #f0f4f8;
    border-radius: 2rem;
    padding: 1.5rem;
    height: 14rem;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 1rem;
    border: 4px solid rgba(255,255,255,0.9);
    transition: transform 0.7s;
    box-shadow: var(--shadow-md);
}

.blog-card:hover .blog-image-wrapper img {
    transform: scale(1.05) rotate(1deg);
}

.blog-body {
    padding: 1.25rem 1rem 0.5rem 1rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-title {
    font-size: 1.125rem;
    font-weight: 900;
    color: var(--gray-800);
    margin-bottom: 0.75rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.3s;
}

.blog-card:hover .blog-title {
    color: var(--emerald);
}

.blog-excerpt {
    font-size: 0.8125rem;
    color: var(--gray-600);
    font-weight: 500;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 1rem;
    flex: 1;
}

.blog-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
}

.blog-date {
    font-size: 0.6875rem;
    font-weight: 700;
    color: var(--gray-400);
    background: var(--gray-100);
    padding: 0.375rem 0.75rem;
    border-radius: 0.75rem;
    border: 1px solid var(--gray-200);
}

.blog-arrow {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background: var(--emerald-50);
    color: var(--emerald);
    border: 1px solid #d1fae5;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.blog-card:hover .blog-arrow {
    background: var(--emerald);
    color: #fff;
    transform: translateX(-4px);
}


/* ================================================================ */
/* FILTER SIDEBAR
/* ================================================================ */
.filter-sidebar {
    background: rgba(255,255,255,0.6);
    backdrop-filter: blur(12px);
    border-radius: 2rem;
    padding: 1.5rem;
    border: 1px solid rgba(255,255,255,0.6);
    box-shadow: var(--shadow-lg);
}

.filter-btn {
    width: 100%;
    text-align: right;
    padding: 0.75rem 1rem;
    border-radius: 1rem;
    border: none;
    background: transparent;
    font-weight: 700;
    font-size: 0.875rem;
    color: var(--gray-600);
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}

.filter-btn:hover {
    background: rgba(0,0,0,0.03);
}

.filter-btn.active {
    background: var(--primary-50);
    color: var(--primary);
}

.filter-btn .badge-count {
    font-size: 0.625rem;
    font-weight: 700;
    padding: 0.125rem 0.5rem;
    border-radius: 9999px;
    background: var(--gray-200);
    color: var(--gray-600);
}

.filter-btn.active .badge-count {
    background: var(--primary);
    color: #fff;
}


/* ================================================================ */
/* FOOTER
/* ================================================================ */
.footer {
    background: rgba(255,255,255,0.4);
    backdrop-filter: blur(24px);
    border-top: 1px solid rgba(255,255,255,0.6);
    padding-top: 4rem;
    padding-bottom: 2rem;
    margin-top: 6rem;
    position: relative;
    z-index: 10;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.footer-brand .brand-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    background: var(--primary);
    border-radius: 1rem;
    color: #fff;
    font-size: 1.5rem;
    font-weight: 900;
    transform: rotate(-6deg);
}

.footer-brand .brand-name {
    font-size: 1.75rem;
    font-weight: 900;
    color: var(--gray-800);
}

.footer-desc {
    color: var(--gray-600);
    font-size: 0.875rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    max-width: 320px;
    font-weight: 500;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
}

.footer-social a {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: #fff;
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-600);
    transition: all 0.3s;
    text-decoration: none;
}

.footer-social a:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    color: var(--primary);
}

.footer-title {
    font-size: 1.125rem;
    font-weight: 900;
    color: var(--gray-800);
    margin-bottom: 1.25rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--gray-600);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.875rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--gray-600);
    font-weight: 500;
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
}

.footer-contact i {
    width: 1.25rem;
    color: var(--primary);
}

.footer-bottom {
    border-top: 1px solid var(--gray-200);
    padding-top: 2rem;
    margin-top: 2rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.footer-copy {
    font-size: 0.875rem;
    color: var(--gray-400);
    font-weight: 500;
    margin: 0;
}

.footer-copy strong {
    color: var(--primary);
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
}

.footer-legal a {
    color: var(--gray-400);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: color 0.3s;
}

.footer-legal a:hover {
    color: var(--gray-600);
}


/* ================================================================ */
/* TEAM MEMBER CARDS
/* ================================================================ */
.team-member-card {
    background: rgba(255,255,255,0.8);
    backdrop-filter: blur(12px);
    border-radius: 2.5rem;
    padding: 2rem 1.5rem;
    border: 1px solid rgba(255,255,255,0.6);
    box-shadow: var(--shadow-lg);
    transition: all 0.3s;
    height: 100%;
    text-align: center;
}

.team-member-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-2xl);
}

.team-member-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.team-member-avatar {
    width: 8rem;
    height: 8rem;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1.25rem auto;
    border: 4px solid var(--primary-50);
    transition: all 0.3s;
    box-shadow: var(--shadow-md);
}

.team-member-card:hover .team-member-avatar {
    border-color: var(--primary);
    box-shadow: 0 0 0 8px rgba(255,138,0,0.1);
}

.team-member-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member-name {
    font-size: 1.25rem;
    font-weight: 900;
    color: var(--gray-800);
    margin-bottom: 0.25rem;
    transition: color 0.3s;
}

.team-member-card:hover .team-member-name {
    color: var(--primary);
}

.team-member-role {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.75rem;
}

.team-member-bio {
    font-size: 0.8125rem;
    color: var(--gray-600);
    font-weight: 500;
    line-height: 1.7;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.team-member-skills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
}

.skill-tag {
    font-size: 0.625rem;
    font-weight: 700;
    color: var(--gray-600);
    background: var(--gray-100);
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    border: 1px solid var(--gray-200);
    transition: all 0.3s;
}

.team-member-card:hover .skill-tag {
    background: var(--primary-50);
    border-color: var(--primary);
    color: var(--primary);
}


/* ================================================================ */
/* TEAM DETAIL PAGE
/* ================================================================ */
.team-detail-avatar-wrapper {
    position: relative;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

.team-detail-avatar-glow {
    position: absolute;
    inset: -2rem;
    background: radial-gradient(circle at center, rgba(255,138,0,0.15), transparent 70%);
    border-radius: 50%;
    filter: blur(40px);
    pointer-events: none;
    animation: avatarGlow 3s ease-in-out infinite alternate;
}

@keyframes avatarGlow {
    0% {
        opacity: 0.5;
        transform: scale(0.95);
    }
    100% {
        opacity: 1;
        transform: scale(1.05);
    }
}

.team-detail-avatar {
    width: 100%;
    max-width: 400px;
    height: auto;
    aspect-ratio: 1/1;
    border-radius: 50%;
    object-fit: cover;
    border: 6px solid rgba(255,255,255,0.8);
    box-shadow: 0 20px 60px rgba(0,0,0,0.12), 0 0 0 1px rgba(255,138,0,0.1);
    position: relative;
    z-index: 1;
}

.team-detail-header {
    padding: 1rem 0;
}

.team-detail-role-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 900;
    color: var(--primary);
    background: var(--primary-50);
    padding: 0.25rem 1rem;
    border-radius: 9999px;
    border: 1px solid rgba(255,138,0,0.2);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.team-detail-name {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--gray-800);
    margin-bottom: 0.25rem;
}

@media (min-width: 768px) {
    .team-detail-name {
        font-size: 3.5rem;
    }
}

.team-detail-role {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--gray-600);
    margin-bottom: 1.5rem;
}

.team-detail-social {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.social-link {
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    text-decoration: none;
    color: var(--gray-600);
    background: var(--gray-100);
    border: 1px solid var(--gray-200);
}

.social-link:hover {
    transform: translateY(-3px);
    color: #fff;
}

.social-link.linkedin:hover {
    background: #0077b5;
    border-color: #0077b5;
    box-shadow: 0 8px 20px rgba(0,119,181,0.3);
}

.social-link.dribbble:hover {
    background: #ea4c89;
    border-color: #ea4c89;
    box-shadow: 0 8px 20px rgba(234,76,137,0.3);
}

.social-link.github:hover {
    background: #181717;
    border-color: #181717;
    box-shadow: 0 8px 20px rgba(24,23,23,0.3);
}

.team-detail-bio {
    max-width: 600px;
}

.team-detail-bio p {
    font-size: 1rem;
    color: var(--gray-600);
    line-height: 1.8;
    font-weight: 500;
    margin-bottom: 1rem;
}

.skill-badge-lg {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    border-radius: 9999px;
    background: rgba(255,255,255,0.8);
    backdrop-filter: blur(4px);
    border: 1px solid var(--gray-200);
    font-weight: 700;
    font-size: 0.875rem;
    color: var(--gray-700);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s;
}

.skill-badge-lg:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
    color: var(--primary);
}

.skill-badge-lg i {
    color: var(--primary);
    font-size: 1rem;
}


/* ================================================================ */
/* BLOG DETAIL PAGE
/* ================================================================ */
.blog-detail {
    padding: 2rem 0 4rem 0;
}

.blog-detail-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--gray-200);
}

.blog-detail-back {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    border-radius: 9999px;
    background: #fff;
    border: 1px solid var(--gray-200);
    font-weight: 700;
    font-size: 0.8125rem;
    color: var(--gray-600);
    text-decoration: none;
    transition: all 0.3s;
}

.blog-detail-back:hover {
    border-color: var(--gray-300);
    color: var(--gray-900);
}

.blog-detail-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--gray-400);
}

.blog-detail-meta i {
    margin-left: 0.25rem;
}

.blog-detail-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 2rem auto;
}

.blog-detail-title {
    font-size: 2rem;
    font-weight: 900;
    color: var(--gray-800);
    line-height: 1.3;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .blog-detail-title {
        font-size: 2.5rem;
    }
}

.blog-detail-author {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 1.5rem 0.5rem 1rem;
    border-radius: 9999px;
    background: #fff;
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-sm);
}

.blog-detail-author img {
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 50%;
    object-fit: cover;
}

.blog-detail-author-name {
    display: block;
    font-weight: 900;
    font-size: 0.875rem;
    color: var(--gray-800);
}

.blog-detail-author-role {
    font-size: 0.6875rem;
    font-weight: 700;
    color: var(--gray-400);
}

/*.blog-detail-image {*/
/*    border-radius: 2.5rem;*/
/*    overflow: hidden;*/
/*    margin-bottom: 2.5rem;*/
/*    box-shadow: var(--shadow-xl);*/
/*    border: 6px solid rgba(255,255,255,0.8);*/
/*}*/

/*.blog-detail-image img {*/
/*    width: 100%;*/
/*    height: auto;*/
/*    max-height: 450px;*/
    /*object-fit: cover;*/
/*     object-fit: contain;*/
/*}*/
.blog-detail-image {
    border-radius: 2.5rem;
    overflow: hidden;
    margin-bottom: 2.5rem;
    margin-left: auto;
    margin-right: auto;
    box-shadow: var(--shadow-xl);
    border: 6px solid rgba(255, 255, 255, 0.8);
    max-width: 100%;
    width: fit-content;
}

.blog-detail-image img {
    width: auto;
    height: auto;
    max-height: 450px;
    max-width: 100%;
    display: block;
}

.blog-detail-content {
    max-width: 800px;
    margin: 0 auto;
}

.blog-detail-excerpt {
    border-right: 4px solid var(--emerald);
    padding-right: 1.25rem;
    margin-bottom: 2rem;
}

.blog-detail-excerpt p {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--gray-600);
    line-height: 1.8;
}

.blog-detail-content p {
    font-size: 1rem;
    color: var(--gray-700);
    line-height: 1.9;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.blog-detail-content h2 {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--gray-800);
    margin: 2.5rem 0 1rem 0;
}

.blog-detail-content h3 {
    font-size: 1.25rem;
    font-weight: 900;
    color: var(--gray-800);
    margin: 2rem 0 1rem 0;
}

.blog-detail-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.blog-detail-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.5rem 0;
    font-size: 0.9375rem;
    color: var(--gray-700);
    font-weight: 500;
    line-height: 1.7;
}

.blog-detail-list li::before {
    content: '\f058';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--emerald);
    font-size: 1rem;
    margin-top: 0.125rem;
    flex-shrink: 0;
}

.blog-detail-conclusion {
    background: linear-gradient(135deg, rgba(249,250,251,0.8), rgba(255,247,237,0.3));
    border-radius: 1.5rem;
    padding: 2rem;
    margin-top: 2rem;
    border: 1px solid var(--gray-200);
}

.blog-detail-conclusion h3 {
    font-weight: 900;
    font-size: 1.125rem;
    color: var(--gray-800);
    margin-top: 0;
    margin-bottom: 0.75rem;
}

.blog-detail-conclusion p {
    margin-bottom: 0;
}

.blog-detail-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--gray-200);
}

.blog-detail-tag {
    padding: 0.25rem 0.875rem;
    border-radius: 9999px;
    background: var(--gray-100);
    border: 1px solid var(--gray-200);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--gray-600);
}

.blog-detail-author-bio {
    max-width: 800px;
    margin: 3rem auto 0 auto;
    padding: 1.5rem;
    border-radius: 1.5rem;
    background: rgba(255,255,255,0.6);
    backdrop-filter: blur(12px);
    border: 1px solid var(--gray-200);
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    box-shadow: var(--shadow-md);
}

.blog-detail-author-bio img {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.blog-detail-author-bio-name {
    font-weight: 900;
    font-size: 1rem;
    color: var(--gray-800);
    margin-bottom: 0.125rem;
}

.blog-detail-author-bio-role {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary);
}

.blog-detail-author-bio-text {
    font-size: 0.8125rem;
    color: var(--gray-600);
    font-weight: 500;
    line-height: 1.7;
    margin: 0.5rem 0 0.75rem 0;
}

.blog-detail-author-bio-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--gray-600);
    text-decoration: none;
    transition: all 0.3s;
}

.blog-detail-author-bio-link:hover {
    color: var(--gray-900);
}

.blog-detail-author-bio-link i {
    transition: transform 0.3s;
}

.blog-detail-author-bio-link:hover i {
    transform: translateX(-4px);
}


/* ================================================================ */
/* BLOG COMMENTS
/* ================================================================ */
.blog-comments {
    max-width: 800px;
    margin: 3rem auto 0 auto;
    padding-top: 2rem;
    border-top: 2px solid var(--gray-200);
}

.blog-comments-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.blog-comments-title-wrapper {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.blog-comments-title-wrapper i {
    font-size: 1.25rem;
    color: var(--primary);
    background: var(--primary-50);
    padding: 0.75rem;
    border-radius: 1rem;
    border: 1px solid rgba(255,138,0,0.15);
}

.blog-comments-title {
    font-weight: 900;
    font-size: 1.125rem;
    color: var(--gray-800);
    margin: 0;
}

.blog-comments-subtitle {
    font-size: 0.6875rem;
    color: var(--gray-400);
    font-weight: 700;
    margin: 0;
}

.blog-comments-count {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--gray-600);
    background: var(--gray-100);
    padding: 0.25rem 0.875rem;
    border-radius: 9999px;
    border: 1px solid var(--gray-200);
}

.blog-comment-form-wrapper {
    background: rgba(255,255,255,0.6);
    backdrop-filter: blur(12px);
    border-radius: 1.5rem;
    padding: 1.75rem;
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-md);
    margin-bottom: 2.5rem;
}

.blog-comment-form-title {
    font-weight: 900;
    font-size: 1rem;
    color: var(--gray-800);
    margin-bottom: 1.25rem;
}

.blog-comment-form .form-label {
    font-weight: 700;
    font-size: 0.8125rem;
    color: var(--gray-700);
}

.blog-comment-form .form-control {
    border-radius: 1rem;
    border: 1px solid var(--gray-200);
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-700);
    transition: all 0.3s;
    background: rgba(255,255,255,0.7);
}

.blog-comment-form .form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(255,138,0,0.12);
    background: #fff;
}

.blog-comment-form .form-control::placeholder {
    color: var(--gray-400);
    font-weight: 400;
}

.btn-comment-submit {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 2rem;
    border-radius: 1rem;
    background: var(--primary);
    color: #fff;
    font-weight: 900;
    font-size: 0.875rem;
    border: none;
    transition: all 0.3s;
    box-shadow: 0 4px 16px rgba(255,138,0,0.25);
}

.btn-comment-submit:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255,138,0,0.35);
    color: #fff;
}

.blog-comments-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.blog-comment-item {
    display: flex;
    gap: 1rem;
    padding: 1.25rem;
    background: rgba(255,255,255,0.5);
    backdrop-filter: blur(8px);
    border-radius: 1.5rem;
    border: 1px solid var(--gray-200);
    transition: all 0.3s;
}

.blog-comment-item:hover {
    background: rgba(255,255,255,0.8);
    box-shadow: var(--shadow-sm);
}

.blog-comment-avatar {
    flex-shrink: 0;
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-comment-avatar-letter {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    font-weight: 900;
    font-size: 1rem;
}

.blog-comment-body {
    flex: 1;
    min-width: 0;
}

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

.blog-comment-author {
    font-weight: 900;
    font-size: 0.875rem;
    color: var(--gray-800);
}

.blog-comment-badge {
    font-size: 0.5625rem;
    font-weight: 700;
    padding: 0.125rem 0.5rem;
    border-radius: 9999px;
    background: var(--gray-200);
    color: var(--gray-600);
    margin-right: 0.375rem;
}

.blog-comment-date {
    font-size: 0.6875rem;
    color: var(--gray-400);
    font-weight: 700;
    margin-right: 0.5rem;
}

.blog-comment-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.blog-comment-like {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    border: 1px solid var(--gray-200);
    background: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--gray-600);
    transition: all 0.3s;
    cursor: pointer;
}

.blog-comment-like:hover {
    border-color: var(--rose);
    background: #fef2f2;
}

.blog-comment-like i {
    font-size: 0.75rem;
    transition: all 0.3s;
}

.blog-comment-like .fas.fa-heart {
    color: #ef4444;
}

.blog-comment-text {
    font-size: 0.875rem;
    color: var(--gray-600);
    line-height: 1.8;
    font-weight: 500;
    margin: 0;
}

/* Comment Reply */
.blog-comment-reply {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--gray-200);
}

.blog-comment-reply-nested {
    margin-right: 2.5rem;
    border-top-color: var(--gray-100);
}

.blog-comment-reply-avatar {
    flex-shrink: 0;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
}

.blog-comment-reply-avatar-letter {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--gray-200);
    color: var(--gray-600);
    font-weight: 900;
    font-size: 0.75rem;
}

.blog-comment-reply-body {
    flex: 1;
    min-width: 0;
}

.blog-comment-reply-header {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.25rem 0.5rem;
    margin-bottom: 0.25rem;
}

.blog-comment-reply-author {
    font-weight: 900;
    font-size: 0.8125rem;
    color: var(--gray-800);
}

.blog-comment-reply-badge {
    font-size: 0.5rem;
    font-weight: 700;
    padding: 0.0625rem 0.5rem;
    border-radius: 9999px;
    background: var(--gray-200);
    color: var(--gray-600);
}

.blog-comment-reply-badge.admin {
    background: var(--primary);
    color: #fff;
}

.blog-comment-reply-date {
    font-size: 0.625rem;
    color: var(--gray-400);
    font-weight: 700;
}

.blog-comment-reply-text {
    font-size: 0.8125rem;
    color: var(--gray-600);
    line-height: 1.7;
    font-weight: 500;
    margin: 0;
}

.blog-comment-reply-text .mention {
    color: var(--primary);
    font-weight: 700;
}

.blog-comment-reply-form-wrapper {
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid var(--gray-200);
}

.blog-comment-reply-form .form-control {
    border-radius: 0.75rem;
    border: 1px solid var(--gray-200);
    padding: 0.5rem 0.75rem;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--gray-700);
    transition: all 0.3s;
    background: rgba(255,255,255,0.7);
    resize: vertical;
}

.blog-comment-reply-form .form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(255,138,0,0.1);
    background: #fff;
}

.btn-reply-submit {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.375rem 1.25rem;
    border-radius: 0.75rem;
    background: var(--primary);
    color: #fff;
    font-weight: 700;
    font-size: 0.75rem;
    border: none;
    transition: all 0.3s;
    cursor: pointer;
}

.btn-reply-submit:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
}

.btn-reply-cancel {
    display: inline-flex;
    align-items: center;
    padding: 0.375rem 1rem;
    border-radius: 0.75rem;
    background: transparent;
    color: var(--gray-500);
    font-weight: 700;
    font-size: 0.75rem;
    border: none;
    transition: all 0.3s;
    cursor: pointer;
}

.btn-reply-cancel:hover {
    color: var(--gray-700);
    background: var(--gray-100);
}


/* ================================================================ */
/* BLOG PAGINATION
/* ================================================================ */
.blog-pagination {
    margin-top: 2.5rem;
    display: flex;
    justify-content: center;
}

.blog-pagination .pagination {
    gap: 0.25rem;
    margin: 0;
}

.blog-pagination .page-item .page-link {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 2.5rem;
    height: 2.5rem;
    padding: 0 0.75rem;
    border-radius: 0.75rem;
    border: 1px solid var(--gray-200);
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(4px);
    color: var(--gray-600);
    font-weight: 700;
    font-size: 0.875rem;
    transition: all 0.3s;
}

.blog-pagination .page-item .page-link:hover {
    background: var(--primary-50);
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.blog-pagination .page-item.active .page-link {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
    box-shadow: 0 4px 16px rgba(255,138,0,0.25);
}

.blog-pagination .page-item.disabled .page-link {
    opacity: 0.4;
    cursor: not-allowed;
    pointer-events: none;
}

.blog-pagination .page-item .page-link i {
    font-size: 0.75rem;
}


/* ================================================================ */
/* BLOG TAG BUTTONS
/* ================================================================ */
.blog-tag-btn {
    padding: 0.375rem 0.875rem;
    border-radius: 9999px;
    border: 1px solid var(--gray-200);
    background: #fff;
    font-weight: 700;
    font-size: 0.75rem;
    color: var(--gray-600);
    transition: all 0.3s;
    cursor: pointer;
}

.blog-tag-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--primary-50);
}

.blog-tag-btn.active {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
    box-shadow: 0 4px 12px rgba(255,138,0,0.25);
}


/* ================================================================ */
/* BLOG SIDEBAR CARD
/* ================================================================ */
.blog-sidebar-card {
    background: rgba(255,255,255,0.4);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.6);
    border-radius: 1.5rem;
    padding: 1.5rem 1.25rem;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s;
}

.blog-sidebar-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.blog-sidebar-card::before {
    content: '';
    position: absolute;
    bottom: -2rem;
    right: -2rem;
    width: 8rem;
    height: 8rem;
    background: rgba(255,138,0,0.08);
    border-radius: 50%;
    filter: blur(40px);
    pointer-events: none;
}

.blog-sidebar-card-inner {
    position: relative;
    z-index: 1;
    text-align: center;
}

.blog-sidebar-card-title {
    font-weight: 900;
    font-size: 0.875rem;
    color: var(--gray-800);
    margin-bottom: 0.25rem;
}

.blog-sidebar-card-desc {
    font-size: 0.625rem;
    color: var(--gray-500);
    font-weight: 700;
    margin-bottom: 1rem;
}

.blog-sidebar-card-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    border-radius: 9999px;
    background: linear-gradient(to right, var(--primary), #ea580c);
    color: #fff;
    font-weight: 900;
    font-size: 0.75rem;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(255,138,0,0.25);
}

.blog-sidebar-card-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255,138,0,0.35);
    color: #fff;
}

.blog-sidebar-card-btn i {
    transition: transform 0.3s;
}

.blog-sidebar-card-btn:hover i {
    transform: translateX(-4px);
}


/* ================================================================ */
/* TERMS PAGE
/* ================================================================ */
.terms-sidebar {
    background: rgba(255,255,255,0.6);
    backdrop-filter: blur(12px);
    border-radius: 2.5rem;
    padding: 1.5rem;
    border: 1px solid rgba(255,255,255,0.6);
    box-shadow: var(--shadow-lg);
}

.terms-sidebar-label {
    display: block;
    font-size: 0.625rem;
    font-weight: 900;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0 0.75rem 0.75rem 0.75rem;
    border-bottom: 1px solid var(--gray-200);
    margin-bottom: 0.5rem;
}

.terms-tab-btn {
    width: 100%;
    text-align: right;
    padding: 0.75rem 1rem;
    border-radius: 1rem;
    border: none;
    background: transparent;
    font-weight: 700;
    font-size: 0.875rem;
    color: var(--gray-600);
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
}

.terms-tab-btn:hover {
    background: rgba(0,0,0,0.03);
    color: var(--gray-900);
}

.terms-tab-btn.active {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 4px 16px rgba(255,138,0,0.25);
}

.terms-tab-btn i {
    width: 1.25rem;
    font-size: 1rem;
    flex-shrink: 0;
}

.terms-content-wrapper {
    background: #fff;
    border-radius: 2.5rem;
    padding: 2rem 2.5rem;
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-2xl);
}

@media (max-width: 575.98px) {
    .terms-content-wrapper {
        padding: 1.25rem;
    }
}

.terms-content {
    display: none;
    animation: termsFadeIn 0.3s ease;
}

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

@keyframes termsFadeIn {
    0% {
        opacity: 0;
        transform: translateY(10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.terms-content-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border-bottom: 1px solid var(--gray-200);
    padding-bottom: 1.25rem;
    margin-bottom: 1.5rem;
}

.terms-content-icon {
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 0.75rem;
    background: var(--primary-50);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
    flex-shrink: 0;
}

.terms-content-title {
    font-weight: 900;
    font-size: 1.125rem;
    color: var(--gray-800);
    margin: 0;
}

@media (min-width: 768px) {
    .terms-content-title {
        font-size: 1.25rem;
    }
}

.terms-content-body p {
    font-size: 0.9375rem;
    color: var(--gray-600);
    font-weight: 500;
    line-height: 1.9;
    margin-bottom: 1rem;
}

.terms-content-body p:last-child {
    margin-bottom: 0;
}

.terms-bullets {
    margin-top: 1.5rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--gray-200);
}

.terms-bullets h4 {
    font-weight: 900;
    font-size: 0.875rem;
    color: var(--gray-800);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.terms-bullets h4::before {
    content: '\f0e7';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--primary);
    font-size: 0.875rem;
}

.terms-bullets ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
}

@media (max-width: 575.98px) {
    .terms-bullets ul {
        grid-template-columns: 1fr;
    }
}

.terms-bullets ul li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    padding: 0.625rem 0.875rem;
    background: var(--gray-50);
    border-radius: 0.75rem;
    border: 1px solid var(--gray-200);
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--gray-700);
    line-height: 1.6;
}

.terms-bullets ul li::before {
    content: '';
    display: inline-block;
    width: 0.375rem;
    height: 0.375rem;
    border-radius: 50%;
    background: var(--primary);
    margin-top: 0.375rem;
    flex-shrink: 0;
}

.terms-bottom-banner {
    padding: 0 0 2rem 0;
}

.terms-bottom-banner-inner {
    background: rgba(255,247,237,0.5);
    border: 1px solid rgba(255,138,0,0.15);
    border-radius: 1.5rem;
    padding: 1.5rem 2rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

@media (max-width: 575.98px) {
    .terms-bottom-banner-inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 1.25rem;
    }
}

.terms-bottom-banner-icon {
    font-size: 2rem;
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.terms-bottom-banner-title {
    font-weight: 900;
    font-size: 0.9375rem;
    color: #78350f;
    margin-bottom: 0.125rem;
}

.terms-bottom-banner-desc {
    font-size: 0.8125rem;
    color: #92400e;
    font-weight: 600;
    line-height: 1.7;
    margin: 0;
}


/* ================================================================ */
/* AUTH PAGES (Login & Register)
/* ================================================================ */
.auth-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
    padding: 2rem 0;
}

.auth-card {
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(16px);
    border-radius: 2.5rem;
    padding: 2.5rem 2rem;
    border: 1px solid rgba(255,255,255,0.6);
    box-shadow: var(--shadow-2xl);
    width: 100%;
}

@media (min-width: 576px) {
    .auth-card {
        padding: 3rem 2.5rem;
    }
}

.auth-header {
    text-align: center;
    margin-bottom: 2rem;
}

.auth-icon {
    width: 4rem;
    height: 4rem;
    background: var(--primary);
    border-radius: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem auto;
    box-shadow: 0 8px 24px rgba(255,138,0,0.25);
    transform: rotate(-6deg);
}

.auth-icon-emoji {
    font-size: 2rem;
    font-weight: 900;
    color: #fff;
    transform: rotate(6deg);
}

.auth-title {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--gray-800);
    margin-bottom: 0.25rem;
}

.auth-subtitle {
    font-size: 0.8125rem;
    color: var(--gray-400);
    font-weight: 700;
}

.auth-error {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    border-radius: 1rem;
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #dc2626;
    font-size: 0.8125rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
}

.auth-error i {
    font-size: 1rem;
    flex-shrink: 0;
}

.auth-success {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    border-radius: 1rem;
    background: #ecfdf5;
    border: 1px solid #a7f3d0;
    color: #059669;
    font-size: 0.8125rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
}

.auth-success i {
    font-size: 1rem;
    flex-shrink: 0;
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.auth-form-group {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
}

.auth-form-label {
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--gray-700);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.auth-form-label i {
    color: var(--gray-400);
    font-size: 0.875rem;
}

.auth-form-input {
    width: 100%;
    padding: 0.75rem 1rem;
    border-radius: 1rem;
    border: 1px solid var(--gray-200);
    background: rgba(255,255,255,0.7);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-700);
    transition: all 0.3s;
    outline: none;
}

.auth-form-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(255,138,0,0.12);
    background: #fff;
}

.auth-form-input::placeholder {
    color: var(--gray-400);
    font-weight: 400;
}

.auth-form-hint {
    font-size: 0.6875rem;
    color: var(--gray-400);
    font-weight: 500;
    margin-top: 0.125rem;
}

.auth-submit-btn {
    width: 100%;
    padding: 0.875rem;
    border-radius: 1rem;
    border: none;
    background: var(--primary);
    color: #fff;
    font-weight: 900;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(255,138,0,0.25);
}

.auth-submit-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255,138,0,0.35);
}

.auth-submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.auth-demo {
    margin-top: 1rem;
    text-align: center;
}

.auth-demo-btn {
    padding: 0.375rem 1.25rem;
    border-radius: 9999px;
    border: 1px solid var(--gray-200);
    background: rgba(255,255,255,0.7);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--gray-600);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s;
    cursor: pointer;
}

.auth-demo-btn:hover {
    background: var(--primary-50);
    border-color: var(--primary);
    color: var(--primary);
}

.auth-security {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding-top: 1rem;
    margin-top: 1rem;
    border-top: 1px solid var(--gray-200);
    font-size: 0.6875rem;
    font-weight: 700;
    color: var(--gray-400);
}

.auth-security i {
    color: var(--emerald);
}

.auth-footer-links {
    text-align: center;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--gray-500);
    margin-top: 1.25rem;
}

.auth-footer-links a {
    color: var(--primary);
    font-weight: 700;
    text-decoration: none;
    margin-right: 0.25rem;
}

.auth-footer-links a:hover {
    text-decoration: underline;
}

.auth-back-home {
    text-align: center;
    margin-top: 1.25rem;
}

.auth-back-home a {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--gray-400);
    text-decoration: none;
    transition: color 0.3s;
}

.auth-back-home a:hover {
    color: var(--gray-600);
}

.auth-back-home a i {
    transition: transform 0.3s;
}

.auth-back-home a:hover i {
    transform: translateX(-4px);
}

@keyframes shake {
    0%,
    100% {
        transform: translateX(0);
    }
    25% {
        transform: translateX(-8px);
    }
    75% {
        transform: translateX(8px);
    }
}


/* ================================================================ */
/* SERVICES PAGE
/* ================================================================ */
.service-card {
    display: block;
    text-decoration: none;
    background: rgba(255,255,255,0.8);
    backdrop-filter: blur(12px);
    border-radius: 2rem;
    padding: 1.75rem 1.5rem;
    border: 1px solid rgba(255,255,255,0.6);
    box-shadow: var(--shadow-lg);
    transition: all 0.3s;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-2xl);
}

.service-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255,138,0,0.03), transparent);
    border-radius: 50%;
    pointer-events: none;
    transition: all 0.5s;
}

.service-card:hover::before {
    transform: scale(1.5);
}

.service-card-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.service-card-icon.orange {
    background: #fff4ea;
    color: #f97316;
}
.service-card-icon.emerald {
    background: #ecfdf5;
    color: #10b981;
}
.service-card-icon.blue {
    background: #eff6ff;
    color: #3b82f6;
}
.service-card-icon.purple {
    background: #f5f3ff;
    color: #8b5cf6;
}
.service-card-icon.indigo {
    background: #eef2ff;
    color: #6366f1;
}

.service-card-title {
    font-weight: 900;
    font-size: 1.125rem;
    color: var(--gray-800);
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
}

.service-card-desc {
    font-size: 0.8125rem;
    color: var(--gray-600);
    font-weight: 500;
    line-height: 1.7;
    margin-bottom: 1.25rem;
    position: relative;
    z-index: 1;
}

.service-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1rem;
    border-top: 1px solid var(--gray-200);
    position: relative;
    z-index: 1;
}

.service-card-tag {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--gray-400);
    transition: color 0.3s;
}

.service-card:hover .service-card-tag {
    color: var(--primary);
}

.service-card-arrow {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background: var(--gray-100);
    border: 1px solid var(--gray-200);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-400);
    transition: all 0.3s;
}

.service-card:hover .service-card-arrow {
    background: var(--primary-50);
    color: var(--primary);
    transform: translateX(-4px);
}


/* ================================================================ */
/* SERVICE DETAIL PAGE
/* ================================================================ */
.service-detail-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.service-detail-badge-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.service-detail-badge-icon.orange {
    background: #fff4ea;
    color: #f97316;
}

.service-detail-badge-text {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.service-detail-title {
    font-size: 2rem;
    font-weight: 900;
    color: var(--gray-800);
    line-height: 1.3;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .service-detail-title {
        font-size: 2.75rem;
    }
}

.service-detail-desc {
    font-size: 1.125rem;
    color: var(--gray-600);
    font-weight: 500;
    line-height: 1.8;
    max-width: 560px;
    margin-bottom: 2rem;
}

.service-detail-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.btn-hero-outline {
    background: transparent;
    color: var(--gray-700);
    padding: 1rem 1.75rem;
    border-radius: 1rem;
    font-weight: 700;
    font-size: 1rem;
    border: 2px solid var(--gray-200);
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    cursor: pointer;
}

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

.service-detail-media {
    position: relative;
    margin: 0 auto;
}

.service-detail-media-glow {
    position: absolute;
    inset: -1.5rem;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.3;
    pointer-events: none;
}

.service-detail-media-glow.orange {
    background: rgba(255,138,0,0.2);
}

.service-detail-media-inner {
    position: relative;
    border-radius: 2rem;
    overflow: hidden;
    box-shadow: var(--shadow-2xl);
    border: 4px solid rgba(255,255,255,0.8);
    aspect-ratio: 4/3;
    background: var(--gray-100);
}

.service-detail-media-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-detail-media-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    background: rgba(255,138,0,0.9);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    padding-right: 0.25rem;
    box-shadow: 0 8px 32px rgba(255,138,0,0.4);
    transition: all 0.3s;
    cursor: pointer;
}

.service-detail-media-play:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

.feature-card {
    text-align: center;
    padding: 1.75rem 1.25rem;
    background: rgba(255,255,255,0.6);
    backdrop-filter: blur(8px);
    border-radius: 1.5rem;
    border: 1px solid var(--gray-200);
    transition: all 0.3s;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.feature-card-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 1rem;
    background: var(--primary-50);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin: 0 auto 0.75rem auto;
}

.feature-card-title {
    font-weight: 900;
    font-size: 1rem;
    color: var(--gray-800);
    margin-bottom: 0.25rem;
}

.feature-card-desc {
    font-size: 0.8125rem;
    color: var(--gray-600);
    font-weight: 500;
    line-height: 1.6;
    margin: 0;
}

/* SEO Top Banner */
.seo-top-banner {
    padding: 0.75rem 0;
    border-top: 1px solid rgba(16,185,129,0.1);
    border-bottom: 1px solid rgba(16,185,129,0.1);
    background: linear-gradient(to right, rgba(16,185,129,0.05), transparent);
    margin-bottom: 0.5rem;
}

.seo-top-banner-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem 1.25rem;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--gray-700);
}

.seo-top-banner-badge {
    background: var(--emerald);
    color: #fff;
    font-size: 0.625rem;
    padding: 0.125rem 0.5rem;
    border-radius: 0.375rem;
    font-weight: 700;
}

.seo-top-banner-text {
    color: var(--gray-600);
}

.seo-top-banner-check {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    color: var(--emerald);
    font-weight: 700;
}

.seo-top-banner-check i {
    font-size: 0.875rem;
}

.service-detail-breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray-500);
    font-weight: 700;
    font-size: 0.875rem;
    text-decoration: none;
    transition: color 0.3s;
}

.service-detail-breadcrumb:hover {
    color: var(--gray-900);
}

.service-detail-hero {
    padding: 1rem 0 2rem 0;
}

.service-detail-badges {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.service-detail-badge {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.service-detail-badge.orange {
    background: #fff4ea;
    color: #f97316;
}

.service-detail-badge-label {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.service-detail-hero-title {
    font-size: 1.75rem;
    font-weight: 900;
    color: var(--gray-800);
    line-height: 1.3;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .service-detail-hero-title {
        font-size: 2.5rem;
    }
}

.service-detail-hero-desc {
    font-size: 1rem;
    color: var(--gray-600);
    font-weight: 500;
    line-height: 1.8;
    max-width: 640px;
}

.service-detail-media-wrapper {
    max-width: 100%;
}

.service-detail-media {
    position: relative;
    border-radius: 1.5rem;
    overflow: hidden;
    background: #111827;
    aspect-ratio: 16/9;
    box-shadow: var(--shadow-2xl);
    border: 1px solid var(--gray-200);
}

.service-detail-media-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
}

.service-detail-media-overlay {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 2;
}

.service-detail-media-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.375rem 0.75rem;
    border-radius: 9999px;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(8px);
    color: #fff;
    font-size: 0.625rem;
    font-weight: 700;
}

.service-detail-media-controls {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    right: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 2;
}

.service-detail-media-play-btn {
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 50%;
    background: #fff;
    border: none;
    color: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: var(--shadow-lg);
}

.service-detail-media-play-btn:hover {
    background: var(--emerald);
    color: #fff;
}

.service-detail-media-hint {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.375rem 0.75rem;
    border-radius: 0.5rem;
    background: rgba(0,0,0,0.4);
    backdrop-filter: blur(8px);
    color: rgba(255,255,255,0.9);
    font-size: 0.625rem;
    font-weight: 700;
}

.service-detail-media-hint i {
    color: var(--emerald);
}

.service-detail-media-caption {
    font-size: 0.75rem;
    color: var(--gray-400);
    font-weight: 700;
    text-align: center;
    margin-top: 0.5rem;
}

.service-detail-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.service-detail-metrics {
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: 2rem;
    padding: 1.5rem 1.25rem;
}

.service-detail-metrics-title {
    font-size: 0.75rem;
    font-weight: 900;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    gap: 0.375rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    margin-bottom: 0.75rem;
}

.service-detail-metrics-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-detail-metrics-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    padding: 0.375rem 0;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--gray-600);
}

.service-detail-metrics-list li i {
    color: var(--emerald);
    margin-top: 0.125rem;
    flex-shrink: 0;
}

.service-detail-team {
    background: rgba(255,255,255,0.5);
    border: 1px solid var(--gray-200);
    border-radius: 2rem;
    padding: 1.5rem 1.25rem;
}

.service-detail-team-title {
    font-size: 0.75rem;
    font-weight: 900;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    gap: 0.375rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    margin-bottom: 0.75rem;
}

.service-detail-team-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.service-detail-team-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem;
    border-radius: 1rem;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s;
}

.service-detail-team-item:hover {
    background: #fff;
    box-shadow: var(--shadow-sm);
}

.service-detail-team-item img {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    object-fit: cover;
}

.service-detail-team-name {
    display: block;
    font-weight: 900;
    font-size: 0.8125rem;
    color: var(--gray-800);
}

.service-detail-team-role {
    font-size: 0.625rem;
    font-weight: 700;
    color: var(--gray-400);
}

.service-detail-content {
    padding: 3rem 0;
}

.service-detail-section-title {
    font-size: 1.25rem;
    font-weight: 900;
    color: var(--gray-800);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.service-detail-section-line {
    display: inline-block;
    width: 0.375rem;
    height: 1.5rem;
    border-radius: 0.25rem;
    background: var(--emerald);
}

.service-detail-full-text {
    font-size: 0.9375rem;
    color: var(--gray-600);
    font-weight: 500;
    line-height: 1.9;
}

.service-detail-seo-block {
    padding: 1.5rem;
    border-radius: 1.5rem;
    margin: 1.5rem 0;
}

.service-detail-seo-block.seo-challenge {
    background: rgba(239,68,68,0.05);
    border: 1px solid rgba(239,68,68,0.1);
}

.service-detail-seo-block p {
    font-size: 0.9375rem;
    color: var(--gray-600);
    font-weight: 500;
    line-height: 1.9;
}

.service-detail-features-grid {
    margin: 1.5rem 0;
}

.service-detail-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    border-radius: 1rem;
    background: rgba(255,255,255,0.5);
    border: 1px solid var(--gray-200);
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--gray-700);
    line-height: 1.6;
    height: 100%;
}

.service-detail-feature-item i {
    color: var(--emerald);
    margin-top: 0.125rem;
    flex-shrink: 0;
}

.service-detail-related {
    margin: 2rem 0;
}

.service-detail-view-all {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--emerald);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    transition: color 0.3s;
}

.service-detail-view-all:hover {
    color: var(--emerald-dark);
}

.service-detail-view-all i {
    transition: transform 0.3s;
}

.service-detail-view-all:hover i {
    transform: translateX(-4px);
}

.service-detail-related-project {
    display: block;
    text-decoration: none;
    background: #fff;
    border: 1px solid var(--gray-200);
    border-radius: 1.5rem;
    overflow: hidden;
    transition: all 0.3s;
    height: 100%;
}

.service-detail-related-project:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.service-detail-related-project-img {
    aspect-ratio: 16/9;
    overflow: hidden;
}

.service-detail-related-project-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.service-detail-related-project:hover .service-detail-related-project-img img {
    transform: scale(1.05);
}

.service-detail-related-project-body {
    padding: 0.75rem 1rem;
}

.service-detail-related-project-title {
    font-weight: 900;
    font-size: 0.875rem;
    color: var(--gray-800);
    margin-bottom: 0.25rem;
}

.service-detail-related-project-desc {
    font-size: 0.75rem;
    color: var(--gray-600);
    font-weight: 500;
    margin: 0;
}

.service-detail-related-article {
    display: flex;
    gap: 0.75rem;
    padding: 0.75rem;
    border-radius: 1rem;
    background: rgba(255,255,255,0.5);
    border: 1px solid var(--gray-200);
    text-decoration: none;
    color: inherit;
    transition: all 0.3s;
    height: 100%;
}

.service-detail-related-article:hover {
    background: #fff;
    box-shadow: var(--shadow-sm);
}

.service-detail-related-article-img {
    width: 4rem;
    height: 4rem;
    border-radius: 0.75rem;
    overflow: hidden;
    flex-shrink: 0;
}

.service-detail-related-article-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-detail-related-article-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-detail-related-article-title {
    font-weight: 900;
    font-size: 0.8125rem;
    color: var(--gray-800);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.service-detail-related-article-date {
    font-size: 0.625rem;
    color: var(--gray-400);
    font-weight: 700;
}

.service-detail-faq {
    margin: 2rem 0;
}

.service-detail-faq-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.service-detail-faq-item {
    border: 1px solid var(--gray-200);
    border-radius: 1rem;
    overflow: hidden;
    transition: all 0.3s;
}

.service-detail-faq-item.open {
    border-color: var(--primary);
}

.service-detail-faq-q {
    width: 100%;
    padding: 0.75rem 1rem;
    background: rgba(255,255,255,0.5);
    border: none;
    text-align: right;
    font-weight: 900;
    font-size: 0.875rem;
    color: var(--gray-800);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: background 0.3s;
}

.service-detail-faq-q:hover {
    background: rgba(255,255,255,0.8);
}

.service-detail-faq-q i:first-child {
    color: var(--emerald);
    flex-shrink: 0;
}

.service-detail-faq-q i:last-child {
    margin-right: auto;
    color: var(--gray-400);
    transition: transform 0.3s;
    flex-shrink: 0;
}

.service-detail-faq-item.open .service-detail-faq-q i:last-child {
    transform: rotate(180deg);
}

.service-detail-faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.service-detail-faq-item.open .service-detail-faq-a {
    max-height: 300px;
}

.service-detail-faq-a p {
    padding: 0 1rem 1rem 1rem;
    margin: 0;
    font-size: 0.8125rem;
    color: var(--gray-600);
    font-weight: 500;
    line-height: 1.8;
    border-top: 1px solid var(--gray-200);
}

.service-detail-google-mockup {
    background: #121212;
    border-radius: 2rem;
    padding: 1.25rem;
    border: 1px solid rgba(255,255,255,0.05);
    box-shadow: var(--shadow-2xl);
    color: #fff;
    position: sticky;
    top: 6rem;
}

.service-detail-google-mockup-header {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    margin-bottom: 0.75rem;
}

.service-detail-google-mockup-dot {
    width: 0.625rem;
    height: 0.625rem;
    border-radius: 50%;
}

.service-detail-google-mockup-dot.red {
    background: #ef4444;
}
.service-detail-google-mockup-dot.yellow {
    background: #f59e0b;
}
.service-detail-google-mockup-dot.green {
    background: #10b981;
}

.service-detail-google-mockup-label {
    font-size: 0.625rem;
    color: var(--gray-400);
    font-weight: 700;
    margin-right: 0.5rem;
}

.service-detail-google-mockup-url {
    font-size: 0.6875rem;
    color: var(--gray-400);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    flex-wrap: wrap;
}

.service-detail-google-mockup-title {
    font-size: 1rem;
    font-weight: 900;
    color: #8ab4f8;
    margin: 0.5rem 0 0.25rem 0;
}

.service-detail-google-mockup-desc {
    font-size: 0.8125rem;
    color: #bdc1c6;
    line-height: 1.6;
    margin: 0;
}

.service-detail-google-mockup-footer {
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(255,255,255,0.05);
    background: rgba(255,255,255,0.03);
    border-radius: 0.75rem;
    padding: 0.75rem;
}

.service-detail-google-mockup-footer-icon {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.625rem;
    font-weight: 900;
    color: #34d399;
}

.service-detail-google-mockup-footer-text {
    font-size: 0.6875rem;
    color: var(--gray-400);
    font-weight: 500;
    line-height: 1.6;
    margin: 0.375rem 0 0 0;
}

.service-detail-cta {
    padding: 1rem 0 3rem 0;
}


/* ================================================================ */
/* CONTACT FAQ
/* ================================================================ */
.contact-faq-section {
    padding: 3rem 0 5rem 0;
    position: relative;
    z-index: 10;
}

.contact-faq-header {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-faq-header-icon {
    font-size: 2rem;
    color: #f97316;
    display: block;
    margin-bottom: 0.5rem;
}

.contact-faq-header-title {
    font-weight: 900;
    font-size: 1.75rem;
    color: var(--gray-800);
    margin: 0 0 0.25rem 0;
}

@media (min-width: 768px) {
    .contact-faq-header-title {
        font-size: 2rem;
    }
}

.contact-faq-header-desc {
    font-size: 0.875rem;
    color: var(--gray-400);
    font-weight: 600;
    margin: 0;
}

.contact-faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    max-width: 900px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .contact-faq-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.25rem;
    }
}

.contact-faq-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: rgba(255,255,255,0.5);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 1.25rem;
    border: 1px solid rgba(255,255,255,0.6);
    box-shadow: 0 4px 16px rgba(0,0,0,0.04);
    transition: all 0.3s ease;
}

.contact-faq-item:hover {
    background: rgba(255,255,255,0.8);
    box-shadow: 0 8px 32px rgba(0,0,0,0.06);
    transform: translateY(-2px);
}

.contact-faq-item-icon {
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 0.875rem;
    background: rgba(255,138,0,0.08);
    color: #f97316;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.contact-faq-item:hover .contact-faq-item-icon {
    background: rgba(255,138,0,0.15);
    transform: scale(1.05);
}

.contact-faq-item-content {
    flex: 1;
    min-width: 0;
}

.contact-faq-item-title {
    font-weight: 900;
    font-size: 0.9375rem;
    color: var(--gray-800);
    margin: 0 0 0.375rem 0;
    line-height: 1.4;
}

@media (min-width: 768px) {
    .contact-faq-item-title {
        font-size: 1rem;
    }
}

.contact-faq-item-desc {
    font-size: 0.8125rem;
    color: var(--gray-600);
    font-weight: 500;
    line-height: 1.7;
    margin: 0;
}

@media (min-width: 768px) {
    .contact-faq-item-desc {
        font-size: 0.875rem;
    }
}
/* ================================================================ */
/* PRICING PAGE - استایل‌های مخصوص صفحه قیمت‌گذاری
/* ================================================================ */

.pricing-page-bg {
    background: var(--bg-body, #fcfdfd);
    position: relative;
    overflow: hidden;
}

.pricing-page-bg::before {
    content: '';
    position: absolute;
    top: 0;
    right: 25%;
    width: 30rem;
    height: 30rem;
    background: rgba(255, 138, 0, 0.08);
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
}

.pricing-page-bg::after {
    content: '';
    position: absolute;
    bottom: 30%;
    left: 25%;
    width: 40rem;
    height: 40rem;
    background: rgba(16, 185, 129, 0.06);
    border-radius: 50%;
    filter: blur(120px);
    pointer-events: none;
}

.pricing-header-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    background: var(--badge-bg, #fff7ed);
    color: var(--badge-color, #ea580c);
    padding: 0.375rem 1rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 900;
    border: 1px solid var(--badge-border, #ffedd5);
}

.pricing-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--text-primary, #2f3545);
    line-height: 1.2;
}

@media (min-width: 768px) {
    .pricing-title {
        font-size: 3.5rem;
    }
}

.pricing-title .highlight {
    color: var(--emerald, #059669);
}

.pricing-desc {
    color: var(--text-muted, #6b7280);
    font-size: 1rem;
    font-weight: 500;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

@media (min-width: 768px) {
    .pricing-desc {
        font-size: 1.125rem;
    }
}


/* ========================================================== */
/* CALCULATOR WRAPPER
/* ========================================================== */
.calc-wrapper {
    background: var(--bg-card, #fff);
    border-radius: 2.5rem;
    border: 1px solid var(--border-color, #f3f4f6);
    box-shadow: 0 20px 40px var(--shadow-color, rgba(0, 0, 0, 0.06));
    overflow: hidden;
}

.calc-controls {
    padding: 2rem 2rem 1.5rem 2rem;
}

@media (min-width: 992px) {
    .calc-controls {
        padding: 2.5rem 3rem 2rem 2.5rem;
        border-left: 1px solid var(--border-color, #f3f4f6);
    }
}

.calc-result {
    background: linear-gradient(135deg, #111827, #1f2937);
    padding: 2rem 2rem 1.5rem 2rem;
    color: #fff;
    position: relative;
    overflow: hidden;
}

@media (min-width: 992px) {
    .calc-result {
        padding: 2.5rem 2.5rem 2rem 2.5rem;
    }
}

.calc-result::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 8rem;
    height: 8rem;
    background: rgba(16, 185, 129, 0.15);
    border-radius: 50%;
    filter: blur(60px);
    pointer-events: none;
}

.calc-result::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 10rem;
    height: 10rem;
    background: rgba(255, 138, 0, 0.08);
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
}

.calc-result>* {
    position: relative;
    z-index: 1;
}


/* ========================================================== */
/* STEP
/* ========================================================== */
.calc-step {
    margin-bottom: 1.75rem;
}

.calc-step:last-child {
    margin-bottom: 0;
}

.calc-step-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.25rem;
}

.calc-step-badge {
    font-size: 0.625rem;
    font-weight: 900;
    padding: 0.125rem 0.5rem;
    border-radius: 0.375rem;
}

.calc-step-badge.orange {
    background: var(--badge-bg, #fff7ed);
    color: var(--badge-color, #ea580c);
}

.calc-step-badge.emerald {
    background: var(--emerald-50, #ecfdf5);
    color: var(--emerald, #059669);
}

.calc-step-title {
    font-size: 1rem;
    font-weight: 900;
    color: var(--text-primary, #1f2937);
    margin: 0;
}

.calc-step-desc {
    font-size: 0.75rem;
    color: var(--text-muted, #9ca3af);
    font-weight: 700;
    margin-bottom: 0.75rem;
}


/* ========================================================== */
/* TIER BUTTONS
/* ========================================================== */
.tier-btn {
    width: 100%;
    padding: 0.75rem;
    border-radius: 1rem;
    border: 1px solid var(--border-color, #f3f4f6);
    background: var(--bg-card, #fff);
    text-align: right;
    transition: all 0.3s;
    cursor: pointer;
}

.tier-btn:hover {
    background: var(--bg-hover, #f9fafb);
}

.tier-btn.active {
    border-color: var(--primary, #f97316);
    background: var(--primary-50, #fff7ed);
}

.tier-btn .tier-icon {
    color: var(--text-muted, #9ca3af);
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.tier-btn.active .tier-icon {
    color: var(--primary, #f97316);
}

.tier-btn .tier-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 900;
    color: var(--text-primary, #1f2937);
}

.tier-btn .tier-desc {
    font-size: 0.625rem;
    color: var(--text-muted, #9ca3af);
    font-weight: 700;
}

.tier-btn .tier-check {
    display: none;
    float: left;
    width: 1rem;
    height: 1rem;
    border-radius: 50%;
    background: var(--primary, #f97316);
    color: #fff;
    font-size: 0.5rem;
    text-align: center;
    line-height: 1rem;
}

.tier-btn.active .tier-check {
    display: block;
}


/* ========================================================== */
/* MODULE BUTTONS
/* ========================================================== */
.module-btn {
    width: 100%;
    padding: 0.75rem 1rem;
    border-radius: 1rem;
    border: 1px solid var(--border-color, #f3f4f6);
    background: var(--bg-card, #fff);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-align: right;
    transition: all 0.3s;
    cursor: pointer;
    margin-bottom: 0.5rem;
}

.module-btn:hover {
    background: var(--bg-hover, #f9fafb);
}

.module-btn.active {
    border-color: var(--emerald, #059669);
    background: var(--emerald-50, #ecfdf5);
}

.module-btn .module-icon {
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1rem;
}

.module-btn .module-icon.pink {
    background: #fdf2f8;
    color: #db2777;
}

.module-btn .module-icon.blue {
    background: #eff6ff;
    color: #2563eb;
}

.module-btn .module-icon.amber {
    background: #fffbeb;
    color: #d97706;
}

.module-btn .module-icon.orange {
    background: #fff7ed;
    color: #ea580c;
}

.module-btn .module-icon.purple {
    background: #f5f3ff;
    color: #7c3aed;
}

.module-btn .module-info {
    flex: 1;
}

.module-btn .module-name {
    display: block;
    font-size: 0.8125rem;
    font-weight: 900;
    color: var(--text-primary, #1f2937);
}

.module-btn .module-price {
    font-size: 0.6875rem;
    font-weight: 700;
    color: var(--emerald, #059669);
}

.module-btn .module-check {
    width: 1.25rem;
    height: 1.25rem;
    border-radius: 0.375rem;
    border: 1px solid var(--border-color, #d1d5db);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0.625rem;
    transition: all 0.3s;
    flex-shrink: 0;
}

.module-btn.active .module-check {
    background: var(--emerald, #059669);
    border-color: var(--emerald, #059669);
}


/* ========================================================== */
/* RESULT
/* ========================================================== */
.result-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.result-header .result-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.75rem;
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid rgba(16, 185, 129, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #34d399;
}

.result-header .result-title {
    font-size: 0.875rem;
    font-weight: 900;
    color: #e5e7eb;
    margin: 0;
}

.result-header .result-subtitle {
    font-size: 0.625rem;
    color: #6b7280;
    font-weight: 700;
    margin: 0;
}

.result-price {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 1.5rem;
    margin-bottom: 1.5rem;
}

.result-price .result-label {
    font-size: 0.75rem;
    color: #9ca3af;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.result-price .result-amount {
    font-size: 2.5rem;
    font-weight: 900;
    color: #34d399;
    font-family: monospace;
}

.result-price .result-amount .sep {
    font-size: 1.25rem;
    color: #fff;
    font-family: inherit;
    margin: 0 0.25rem;
}

.result-price .result-amount .unit {
    font-size: 0.875rem;
    color: #9ca3af;
    font-family: inherit;
    font-weight: 700;
    display: block;
    margin-top: 0.125rem;
}

.result-factors {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 1rem;
    padding: 1rem;
    margin-bottom: 1.5rem;
}

.result-factors .factors-title {
    font-size: 0.625rem;
    color: #6b7280;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.result-factors .factor-tag {
    display: inline-block;
    font-size: 0.625rem;
    font-weight: 900;
    padding: 0.25rem 0.75rem;
    border-radius: 0.375rem;
    background: rgba(16, 185, 129, 0.12);
    color: #34d399;
    border: 1px solid rgba(16, 185, 129, 0.15);
    margin: 0.125rem;
}

.result-notes {
    margin-bottom: 1.5rem;
}

.result-notes .note-item {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.6875rem;
    color: #9ca3af;
    font-weight: 700;
    margin-bottom: 0.375rem;
}

.result-notes .note-item i {
    color: #34d399;
    margin-top: 0.125rem;
}

.btn-calc-submit {
    width: 100%;
    padding: 0.75rem;
    border-radius: 1rem;
    background: var(--emerald, #059669);
    color: #fff;
    font-weight: 900;
    font-size: 0.75rem;
    border: none;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-calc-submit:hover {
    background: var(--emerald-dark, #047857);
    color: #fff;
}

.btn-calc-submit:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.result-footer-note {
    font-size: 0.625rem;
    color: #6b7280;
    font-weight: 700;
    text-align: center;
    margin-top: 0.75rem;
}


/* ========================================================== */
/* PACKAGES
/* ========================================================== */
.package-card {
    border-radius: 2.5rem;
    border: 1px solid var(--border-color, #f3f4f6);
    padding: 2rem 1.5rem;
    background: var(--bg-card, #fff);
    height: 100%;
    transition: all 0.3s;
    position: relative;
}

.package-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px var(--shadow-color, rgba(0, 0, 0, 0.06));
}

.package-card.popular {
    border-color: var(--primary, #f97316);
    background: linear-gradient(135deg, var(--bg-card, #fff), var(--primary-50, #fff7ed));
}

.package-card.enterprise {
    background: #1f2937;
    border-color: #374151;
    color: #fff;
}

.package-card.enterprise .package-name,
.package-card.enterprise .package-tagline,
.package-card.enterprise .package-features li {
    color: #e5e7eb;
}

.package-card.enterprise .package-price {
    color: #34d399;
}

.package-badge {
    font-size: 0.625rem;
    font-weight: 900;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    display: inline-block;
    margin-bottom: 0.75rem;
}

.package-badge.default {
    background: var(--border-color, #f3f4f6);
    color: var(--text-muted, #6b7280);
}

.package-badge.popular-badge {
    background: var(--primary, #f97316);
    color: #fff;
}

.package-badge.enterprise-badge {
    background: rgba(255, 255, 255, 0.1);
    color: #9ca3af;
}

.package-name {
    font-size: 1.125rem;
    font-weight: 900;
    color: var(--text-primary, #1f2937);
    margin-bottom: 0.25rem;
}

.package-tagline {
    font-size: 0.75rem;
    color: var(--text-muted, #6b7280);
    font-weight: 700;
    margin-bottom: 1rem;
}

.package-price {
    font-size: 1.25rem;
    font-weight: 900;
    color: var(--emerald, #059669);
    padding: 0.75rem 0;
    border-top: 1px solid var(--border-color, #f3f4f6);
    border-bottom: 1px solid var(--border-color, #f3f4f6);
    margin-bottom: 1rem;
}

.package-card.enterprise .package-price {
    border-color: #374151;
}

.package-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.package-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-secondary, #4b5563);
    margin-bottom: 0.5rem;
}

.package-features li i {
    color: var(--emerald, #059669);
    margin-top: 0.125rem;
    flex-shrink: 0;
}

.package-card.enterprise .package-features li i {
    color: #34d399;
}

.btn-package {
    width: 100%;
    padding: 0.625rem;
    border-radius: 1rem;
    font-weight: 900;
    font-size: 0.75rem;
    border: 1px solid var(--border-color, #f3f4f6);
    background: var(--bg-card, #fff);
    color: var(--text-primary, #1f2937);
    transition: all 0.3s;
}

.btn-package:hover {
    background: var(--bg-hover, #f9fafb);
}

.btn-package.popular-btn {
    background: var(--primary, #f97316);
    color: #fff;
    border-color: var(--primary, #f97316);
}

.btn-package.popular-btn:hover {
    background: var(--primary-dark, #ea580c);
}

.btn-package.enterprise-btn {
    background: #fff;
    color: #1f2937;
    border-color: #374151;
}

.btn-package.enterprise-btn:hover {
    background: #f3f4f6;
}

.popular-ribbon {
    position: absolute;
    top: -0.75rem;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary, #f97316);
    color: #fff;
    font-size: 0.625rem;
    font-weight: 900;
    padding: 0.25rem 1rem;
    border-radius: 9999px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}


/* ========================================================== */
/* FAQ
/* ========================================================== */
.faq-item {
    background: var(--bg-glass, rgba(255, 255, 255, 0.5));
    backdrop-filter: blur(4px);
    border-radius: 1rem;
    border: 1px solid var(--border-color, #f3f4f6);
    margin-bottom: 0.75rem;
    overflow: hidden;
}

.faq-item .faq-q {
    width: 100%;
    padding: 1rem 1.25rem;
    background: transparent;
    border: none;
    text-align: right;
    font-weight: 900;
    font-size: 0.875rem;
    color: var(--text-primary, #1f2937);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    cursor: pointer;
}

.faq-item .faq-q i {
    transition: transform 0.3s;
    color: var(--text-muted, #9ca3af);
    flex-shrink: 0;
}

.faq-item.open .faq-q i {
    transform: rotate(180deg);
}

.faq-item .faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.open .faq-a {
    max-height: 300px;
}

.faq-item .faq-a-inner {
    padding: 0 1.25rem 1.25rem 1.25rem;
    font-size: 0.8125rem;
    color: var(--text-muted, #6b7280);
    font-weight: 500;
    line-height: 1.8;
    border-top: 1px solid var(--border-color, #f3f4f6);
}


/* ========================================================== */
/* ITEMIZED TABLE
/* ========================================================== */
.itemized-table {
    background: var(--bg-card, #fff);
    border-radius: 2rem;
    overflow: hidden;
    border: 1px solid var(--border-color, #f3f4f6);
}

.itemized-table thead {
    background: var(--bg-hover, #f9fafb);
}

.itemized-table thead th {
    padding: 1rem 1.25rem;
    font-size: 0.75rem;
    font-weight: 900;
    color: var(--text-muted, #6b7280);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-bottom: 1px solid var(--border-color, #f3f4f6);
}

.itemized-table tbody td {
    padding: 1rem 1.25rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-primary, #1f2937);
    border-bottom: 1px solid var(--bg-hover, #f9fafb);
}

.itemized-table tbody tr:last-child td {
    border-bottom: none;
}

.itemized-table tbody .text-muted-custom {
    color: var(--text-muted, #9ca3af);
    font-weight: 500;
}

.itemized-table tbody .text-emerald-custom {
    color: var(--emerald, #059669);
    font-weight: 900;
    font-family: monospace;
}
/* ================================================================ */
/* FLOATING SUPPORT - دکمه شناور پشتیبانی
/* ================================================================ */
.floating-support {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 0.875rem;
    direction: rtl;
}

/* ========================================================== */
/* TOOLTIP - سمت چپ دکمه
/* ========================================================== */
.floating-tooltip {
    background: #1f2937;
    color: #fff;
    padding: 0.625rem 1.125rem;
    border-radius: 1.25rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
    font-size: 0.8125rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.625rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    animation: tooltipSlideIn 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    white-space: nowrap;
    order: 0;
}

@keyframes tooltipSlideIn {
    0% { opacity: 0; transform: translateX(-20px) scale(0.95); }
    100% { opacity: 1; transform: translateX(0) scale(1); }
}

.floating-tooltip i:first-child {
    color: #34d399;
    animation: sparklePulse 2s ease-in-out infinite;
}

@keyframes sparklePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.3); }
}

.floating-tooltip-close {
    background: rgba(255, 255, 255, 0.08);
    border: none;
    color: #9ca3af;
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
    font-size: 0.75rem;
}

.floating-tooltip-close:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
}

/* ========================================================== */
/* FLOATING BUTTON - دکمه اصلی
/* ========================================================== */
.floating-btn {
    width: 4rem;
    height: 4rem;
    border-radius: 1.25rem;
    background: linear-gradient(135deg, #10b981, #059669);
    border: none;
    color: #fff;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
    box-shadow: 0 8px 32px rgba(16, 185, 129, 0.4);
    transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
    flex-shrink: 0;
    order: 1;
}

.floating-btn:hover {
    transform: scale(1.08) translateY(-2px);
    box-shadow: 0 12px 40px rgba(16, 185, 129, 0.5);
}

.floating-btn:active {
    transform: scale(0.95);
}

.floating-btn i {
    position: relative;
    z-index: 2;
    animation: phonePulse 2s ease-in-out infinite;
}

@keyframes phonePulse {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-12deg); }
    75% { transform: rotate(12deg); }
}

.floating-ring {
    position: absolute;
    inset: -0.5rem;
    border-radius: 1.5rem;
    border: 2px solid rgba(16, 185, 129, 0.25);
    animation: ringPulse 2.5s ease-in-out infinite;
}

.floating-ring-2 {
    position: absolute;
    inset: -1rem;
    border-radius: 1.75rem;
    border: 2px solid rgba(16, 185, 129, 0.12);
    animation: ringPulse 2.5s ease-in-out infinite 0.5s;
}

@keyframes ringPulse {
    0%, 100% { transform: scale(1); opacity: 0.4; }
    50% { transform: scale(1.2); opacity: 0; }
}


/* ================================================================ */
/* SUPPORT OVERLAY & MODAL
/* ================================================================ */
.support-overlay {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    direction: rtl;
}

.support-overlay.open {
    display: flex;
}

.support-modal {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 2.5rem;
    max-width: 800px;
    width: 100%;
    max-height: 92vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.3);
    animation: modalSlideIn 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes modalSlideIn {
    0% { opacity: 0; transform: scale(0.95) translateY(20px); }
    100% { opacity: 1; transform: scale(1) translateY(0); }
}

/* ========================================================== */
/* HEADER
/* ========================================================== */
.support-header {
    background: linear-gradient(135deg, #10b981, #047857);
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.support-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 150%;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    pointer-events: none;
}

.support-header-left {
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
    z-index: 1;
    flex: 1;
    min-width: 0;
}

.support-avatars {
    display: flex;
    flex-shrink: 0;
}

.support-avatar {
    position: relative;
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
    margin-right: -0.5rem;
    overflow: hidden;
    flex-shrink: 0;
}

.support-avatar:first-child {
    margin-right: 0;
}

.support-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.support-avatar-dot {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0.625rem;
    height: 0.625rem;
    border-radius: 50%;
    background: #34d399;
    border: 2px solid #fff;
    animation: dotPulse 2s ease-in-out infinite;
}

@keyframes dotPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.3); }
}

.support-title {
    font-weight: 900;
    font-size: 1.125rem;
    color: #fff;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.625rem;
    flex-wrap: wrap;
}

.support-badge {
    font-size: 0.5625rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 0.125rem 0.625rem;
    border-radius: 9999px;
    animation: badgePulse 1.5s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

.support-subtitle {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 600;
    margin: 0.125rem 0 0 0;
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

.support-subtitle i {
    font-size: 0.6875rem;
}

.support-close {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: #fff;
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
    font-size: 1rem;
    position: relative;
    z-index: 1;
}

.support-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

/* ========================================================== */
/* BODY
/* ========================================================== */
.support-body {
    padding: 1.75rem 2rem 1.5rem 2rem;
    overflow-y: auto;
    flex: 1;
    -webkit-overflow-scrolling: touch;
}

.support-body::-webkit-scrollbar {
    width: 4px;
}

.support-body::-webkit-scrollbar-track {
    background: transparent;
}

.support-body::-webkit-scrollbar-thumb {
    background: #d1d5db;
    border-radius: 4px;
}

.support-body::-webkit-scrollbar-thumb:hover {
    background: #9ca3af;
}

.support-section {
    margin-bottom: 1.25rem;
}

.support-section:last-child {
    margin-bottom: 0;
}

.support-section-title {
    font-weight: 900;
    font-size: 0.875rem;
    color: #1f2937;
    margin: 0 0 0.125rem 0;
}

.support-section-desc {
    font-size: 0.75rem;
    color: #9ca3af;
    font-weight: 600;
    margin: 0 0 0.75rem 0;
}

/* ========================================================== */
/* PLATFORMS
/* ========================================================== */
.support-platforms {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.625rem;
}

.support-platform {
    padding: 0.875rem 0.5rem;
    border-radius: 1.25rem;
    border: 2px solid #e5e7eb;
    background: #fff;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.support-platform:hover {
    border-color: #d1d5db;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.support-platform.active {
    border-color: #10b981;
    background: #ecfdf5;
}

.support-platform-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.375rem auto;
    font-size: 1.125rem;
    color: #fff;
}

.support-platform-icon.whatsapp { background: #25D366; }
.support-platform-icon.telegram { background: #229ED9; }
.support-platform-icon.bale { background: #5e35b1; }
.support-platform-icon.eitaa { background: #e65100; }

.support-platform-name {
    display: block;
    font-weight: 900;
    font-size: 0.8125rem;
    color: #1f2937;
}

.support-platform-desc {
    display: block;
    font-size: 0.5625rem;
    color: #9ca3af;
    font-weight: 600;
}

.support-platform-check {
    position: absolute;
    top: 0.375rem;
    left: 0.375rem;
    width: 1.25rem;
    height: 1.25rem;
    border-radius: 50%;
    background: #10b981;
    color: #fff;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 0.5625rem;
}

.support-platform.active .support-platform-check {
    display: flex;
}

/* ========================================================== */
/* CHAT BOX
/* ========================================================== */
.support-chat-box {
    background: #f9fafb;
    border-radius: 1.25rem;
    padding: 1.25rem;
    border: 1px solid #e5e7eb;
}

.support-greeting {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e5e7eb;
}

.support-greeting-icon {
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 50%;
    background: #ecfdf5;
    color: #10b981;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    flex-shrink: 0;
}

.support-greeting-title {
    font-weight: 900;
    font-size: 0.8125rem;
    color: #1f2937;
    margin: 0 0 0.125rem 0;
}

.support-greeting-desc {
    font-size: 0.75rem;
    color: #6b7280;
    font-weight: 500;
    line-height: 1.7;
    margin: 0;
}

.support-greeting-desc strong {
    color: #10b981;
}

/* ========================================================== */
/* FORM
/* ========================================================== */
.support-form {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.support-input {
    width: 100%;
    padding: 0.625rem 1rem;
    border-radius: 1rem;
    border: 2px solid #e5e7eb;
    background: #fff;
    font-size: 0.8125rem;
    font-weight: 500;
    color: #374151;
    outline: none;
    transition: all 0.3s ease;
    text-align: right;
}

.support-input:focus {
    border-color: #10b981;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.support-input::placeholder {
    color: #9ca3af;
    font-weight: 400;
}

.support-textarea-wrap {
    position: relative;
}

.support-textarea {
    width: 100%;
    padding: 0.625rem 1rem;
    padding-bottom: 1.75rem;
    border-radius: 1rem;
    border: 2px solid #e5e7eb;
    background: #fff;
    font-size: 0.8125rem;
    font-weight: 500;
    color: #374151;
    outline: none;
    resize: vertical;
    min-height: 4.5rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.support-textarea:focus {
    border-color: #10b981;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.support-textarea::placeholder {
    color: #9ca3af;
    font-weight: 400;
}

.support-char-count {
    position: absolute;
    bottom: 0.5rem;
    left: 1rem;
    font-size: 0.625rem;
    color: #9ca3af;
    font-weight: 600;
}

/* ========================================================== */
/* BUTTONS
/* ========================================================== */
.support-actions {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.support-btn {
    padding: 0.75rem 1.25rem;
    border-radius: 1rem;
    border: none;
    font-weight: 700;
    font-size: 0.8125rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.support-btn-primary {
    background: #1f2937;
    color: #fff;
}

.support-btn-primary:hover {
    background: #111827;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.support-btn-platform {
    background: #25D366;
    color: #fff;
    transition: all 0.3s ease;
}

.support-btn-platform:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
}

.support-btn-platform.platform-whatsapp { background: #25D366; }
.support-btn-platform.platform-telegram { background: #229ED9; }
.support-btn-platform.platform-bale { background: #5e35b1; }
.support-btn-platform.platform-eitaa { background: #e65100; }

/* ========================================================== */
/* CALL SECTION
/* ========================================================== */
.support-call {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: linear-gradient(135deg, #f9fafb, rgba(255, 138, 0, 0.04));
    border-radius: 1.25rem;
    border: 1px solid #e5e7eb;
    flex-wrap: wrap;
    margin-top: 0.25rem;
}

.support-call-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: rgba(255, 138, 0, 0.1);
    color: #f97316;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.support-call-title {
    font-weight: 900;
    font-size: 0.8125rem;
    color: #1f2937;
    margin: 0;
}

.support-call-desc {
    font-size: 0.6875rem;
    color: #6b7280;
    font-weight: 600;
    margin: 0;
}

.support-call-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    border-radius: 9999px;
    background: #fff;
    border: 2px solid #e5e7eb;
    font-weight: 900;
    font-size: 0.8125rem;
    color: #1f2937;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-right: auto;
    font-family: inherit;
}

.support-call-btn:hover {
    border-color: #f97316;
    color: #f97316;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.support-call-dot {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background: #10b981;
    display: inline-block;
    animation: dotPulse 1.5s ease-in-out infinite;
}

/* ========================================================== */
/* FOOTER
/* ========================================================== */
.support-footer {
    padding: 1rem 2rem;
    background: #f9fafb;
    border-top: 1px solid #e5e7eb;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.75rem;
    flex-shrink: 0;
}

.support-footer-text {
    font-size: 0.6875rem;
    color: #9ca3af;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

.support-footer-text i {
    color: #10b981;
}

.support-footer-link {
    font-size: 0.6875rem;
    font-weight: 700;
    color: #10b981;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    transition: all 0.3s ease;
}

.support-footer-link:hover {
    color: #059669;
}

.support-footer-link i {
    transition: transform 0.3s ease;
}

.support-footer-link:hover i {
    transform: translateX(-4px);
}
/* ================================================================ */
/* ITEMIZED TABLE - نسخه لایت (بهبود یافته)
/* ================================================================ */
.itemized-table {
    background: #f8fafc;
    border-radius: 2rem;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.itemized-table thead {
    background: #f1f4f9;
}

.itemized-table thead th {
    padding: 1rem 1.25rem;
    font-size: 0.75rem;
    font-weight: 900;
    color: #475569;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-bottom: 2px solid #e2e8f0;
}

.itemized-table tbody td {
    padding: 1rem 1.25rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: #1e293b;
    border-bottom: 1px solid #e9edf2;
    background: #ffffff;
    transition: background 0.2s ease;
}

.itemized-table tbody tr:last-child td {
    border-bottom: none;
}

.itemized-table tbody tr:hover td {
    background: #f8fafc;
}

.itemized-table tbody .text-muted-custom {
    color: #94a3b8;
    font-weight: 500;
}

.itemized-table tbody .text-emerald-custom {
    color: #059669;
    font-weight: 900;
    font-family: monospace;
}
.itemized-table {
    background: #22263b36 !important;
}
/* ================================================================ */
/* CALCULATOR SECTION - شبیه بخش کامنت
/* ================================================================ */

/* ========================================================== */
/* LIGHT MODE
/* ========================================================== */
.calc-controls .form-label {
    font-weight: 700 !important;
    font-size: 0.8125rem !important;
    color: #475569 !important;
    margin-bottom: 0.375rem !important;
}

.calc-controls .text-muted {
    color: #94a3b8 !important;
}

/* ========================================================== */
/* DARK MODE
/* ========================================================== */
body.dark-mode .calc-controls .form-label {
    color: var(--text-secondary, #c8d0dc) !important;
}

body.dark-mode .calc-controls .text-muted {
    color: var(--text-muted, #8892a8) !important;
}
/* ================================================================ */
/* PORTFOLIO DETAIL PAGE
/* ================================================================ */

/* ========================================================== */
/* NAV
/* ========================================================== */
.portfolio-detail-nav {
    margin-bottom: 2rem;
}

.portfolio-detail-back {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    border-radius: 9999px;
    background: rgba(255,255,255,0.8);
    border: 1px solid var(--border-color, #e2e8f0);
    font-weight: 700;
    font-size: 0.8125rem;
    color: var(--text-secondary, #475569);
    text-decoration: none;
    transition: all 0.3s ease;
}

.portfolio-detail-back:hover {
    border-color: var(--primary, #ff8a00);
    color: var(--text-primary, #1e293b);
}

/* ========================================================== */
/* HEADER
/* ========================================================== */
.portfolio-detail-header {
    margin-bottom: 2.5rem;
}

.portfolio-detail-badges {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
}

.portfolio-detail-badge {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-muted, #64748b);
    background: var(--bg-hover, #f1f5f9);
    padding: 0.25rem 0.875rem;
    border-radius: 9999px;
    border: 1px solid var(--border-color, #e2e8f0);
}

.portfolio-detail-year {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-muted, #94a3b8);
}

.portfolio-detail-title {
    font-size: 2rem;
    font-weight: 900;
    color: var(--text-primary, #1e293b);
    margin-bottom: 0.75rem;
}

@media (min-width: 768px) {
    .portfolio-detail-title {
        font-size: 2.75rem;
    }
}

.portfolio-detail-desc {
    font-size: 1.125rem;
    color: var(--text-secondary, #475569);
    font-weight: 500;
    line-height: 1.7;
    max-width: 720px;
}

/* ========================================================== */
/* MEDIA
/* ========================================================== */
.portfolio-detail-media {
    margin-bottom: 2rem;
}

.portfolio-detail-media-wrapper {
    position: relative;
    border-radius: 1.5rem;
    overflow: hidden;
    background: #111827;
    aspect-ratio: 16/9;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border-color, #e2e8f0);
}

.portfolio-detail-media-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.85;
}

.portfolio-detail-media-overlay {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 2;
}

.portfolio-detail-media-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.375rem 0.75rem;
    border-radius: 9999px;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(8px);
    color: #fff;
    font-size: 0.625rem;
    font-weight: 700;
}

.portfolio-detail-media-controls {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    right: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 2;
}

.portfolio-detail-media-play {
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 50%;
    background: #fff;
    border: none;
    color: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.portfolio-detail-media-play:hover {
    background: var(--emerald);
    color: #fff;
}

.portfolio-detail-media-hint {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.375rem 0.75rem;
    border-radius: 0.5rem;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(8px);
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.625rem;
    font-weight: 700;
}

.portfolio-detail-media-hint i {
    color: var(--emerald);
}

.portfolio-detail-media-caption {
    font-size: 0.75rem;
    color: var(--text-muted, #94a3b8);
    font-weight: 600;
    text-align: center;
    margin-top: 0.5rem;
}

/* ========================================================== */
/* SIDEBAR
/* ========================================================== */
.portfolio-detail-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.portfolio-detail-info {
    background: var(--bg-hover, #f1f5f9);
    border: 1px solid var(--border-color, #e2e8f0);
    border-radius: 2rem;
    padding: 1.5rem 1.25rem;
}

.portfolio-detail-info-title {
    font-size: 0.75rem;
    font-weight: 900;
    color: var(--text-muted, #64748b);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    gap: 0.375rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    margin-bottom: 0.75rem;
}

.portfolio-detail-info-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.portfolio-detail-info-list > div {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.25rem 0;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.05);
}

.portfolio-detail-info-list > div:last-child {
    border-bottom: none;
}

.portfolio-detail-info-list dt {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-muted, #94a3b8);
}

.portfolio-detail-info-list dd {
    font-size: 0.8125rem;
    font-weight: 900;
    color: var(--text-primary, #1e293b);
    margin: 0;
}

/* ========================================================== */
/* TEAM
/* ========================================================== */
.portfolio-detail-team {
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid var(--border-color, #e2e8f0);
    border-radius: 2rem;
    padding: 1.5rem 1.25rem;
}

.portfolio-detail-team-title {
    font-size: 0.75rem;
    font-weight: 900;
    color: var(--text-muted, #64748b);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    gap: 0.375rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    margin-bottom: 0.75rem;
}

.portfolio-detail-team-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.portfolio-detail-team-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem;
    border-radius: 1rem;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.portfolio-detail-team-item:hover {
    background: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.portfolio-detail-team-item img {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    object-fit: cover;
}

.portfolio-detail-team-name {
    display: block;
    font-weight: 900;
    font-size: 0.8125rem;
    color: var(--text-primary, #1e293b);
}

.portfolio-detail-team-role {
    font-size: 0.625rem;
    font-weight: 700;
    color: var(--text-muted, #94a3b8);
}

/* ========================================================== */
/* SEO CONTENT
/* ========================================================== */
.portfolio-detail-seo {
    padding-top: 2.5rem;
    border-top: 1px solid var(--border-color, #e2e8f0);
    margin-top: 2.5rem;
}

.portfolio-detail-section {
    margin-bottom: 2rem;
}

.portfolio-detail-section:last-child {
    margin-bottom: 0;
}

.portfolio-detail-section-title {
    font-size: 1.25rem;
    font-weight: 900;
    color: var(--text-primary, #1e293b);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.portfolio-detail-section-subtitle {
    font-size: 1rem;
    font-weight: 900;
    color: var(--text-primary, #1e293b);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.portfolio-detail-section-line {
    display: inline-block;
    width: 0.375rem;
    height: 1.5rem;
    border-radius: 0.25rem;
    background: var(--emerald);
}

.portfolio-detail-section-text {
    font-size: 0.9375rem;
    color: var(--text-secondary, #475569);
    font-weight: 500;
    line-height: 1.9;
}

.seo-challenge {
    background: rgba(239, 68, 68, 0.04);
    border: 1px solid rgba(239, 68, 68, 0.08);
    padding: 1.5rem;
    border-radius: 1.5rem;
}

.seo-solution {
    background: rgba(16, 185, 129, 0.04);
    border: 1px solid rgba(16, 185, 129, 0.08);
    padding: 1.5rem;
    border-radius: 1.5rem;
}

/* ========================================================== */
/* PROCESS LIST
/* ========================================================== */
.portfolio-detail-process-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.portfolio-detail-process-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid var(--border-color, #e2e8f0);
    border-radius: 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-secondary, #475569);
    line-height: 1.6;
}

.portfolio-detail-process-list li i {
    color: var(--emerald);
    margin-top: 0.125rem;
    flex-shrink: 0;
}

/* ========================================================== */
/* STATS
/* ========================================================== */
.portfolio-detail-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 1.5rem;
}

@media (min-width: 768px) {
    .portfolio-detail-stats {
        grid-template-columns: repeat(4, 1fr);
    }
}

.portfolio-detail-stat {
    text-align: center;
    padding: 1.25rem;
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid var(--border-color, #e2e8f0);
    border-radius: 1.25rem;
}

.portfolio-detail-stat-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--emerald);
}

.portfolio-detail-stat-label {
    display: block;
    font-size: 0.625rem;
    font-weight: 700;
    color: var(--text-muted, #94a3b8);
    margin-top: 0.125rem;
}

/* ========================================================== */
/* FAQ
/* ========================================================== */
.portfolio-detail-faq {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.portfolio-detail-faq-item {
    border: 1px solid var(--border-color, #e2e8f0);
    border-radius: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.portfolio-detail-faq-item.open {
    border-color: var(--primary);
}

.portfolio-detail-faq-q {
    width: 100%;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    text-align: right;
    font-weight: 900;
    font-size: 0.875rem;
    color: var(--text-primary, #1e293b);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: background 0.3s ease;
}

.portfolio-detail-faq-q:hover {
    background: rgba(255, 255, 255, 0.8);
}

.portfolio-detail-faq-q i:first-child {
    color: var(--emerald);
    flex-shrink: 0;
}

.portfolio-detail-faq-q i:last-child {
    margin-right: auto;
    color: var(--text-muted, #94a3b8);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.portfolio-detail-faq-item.open .portfolio-detail-faq-q i:last-child {
    transform: rotate(180deg);
}

.portfolio-detail-faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.portfolio-detail-faq-item.open .portfolio-detail-faq-a {
    max-height: 300px;
}

.portfolio-detail-faq-a p {
    padding: 0 1rem 1rem 1rem;
    margin: 0;
    font-size: 0.8125rem;
    color: var(--text-secondary, #475569);
    font-weight: 500;
    line-height: 1.8;
    border-top: 1px solid var(--border-color, #e2e8f0);
}

/* ========================================================== */
/* GOOGLE MOCKUP
/* ========================================================== */
.portfolio-detail-google-mockup {
    background: #121212;
    border-radius: 2rem;
    padding: 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    color: #fff;
    position: sticky;
    top: 6rem;
}

.portfolio-detail-google-mockup-header {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 0.75rem;
}

.portfolio-detail-google-mockup-dot {
    width: 0.625rem;
    height: 0.625rem;
    border-radius: 50%;
}

.portfolio-detail-google-mockup-dot.red { background: #ef4444; }
.portfolio-detail-google-mockup-dot.yellow { background: #f59e0b; }
.portfolio-detail-google-mockup-dot.green { background: #10b981; }

.portfolio-detail-google-mockup-label {
    font-size: 0.625rem;
    color: #6b7280;
    font-weight: 700;
    margin-right: 0.5rem;
}

.portfolio-detail-google-mockup-url {
    font-size: 0.6875rem;
    color: #6b7280;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    flex-wrap: wrap;
}

.portfolio-detail-google-mockup-title {
    font-size: 1rem;
    font-weight: 900;
    color: #8ab4f8;
    margin: 0.5rem 0 0.25rem 0;
}

.portfolio-detail-google-mockup-desc {
    font-size: 0.8125rem;
    color: #bdc1c6;
    line-height: 1.6;
    margin: 0;
}

.portfolio-detail-google-mockup-footer {
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(255, 255, 255, 0.03);
    border-radius: 0.75rem;
    padding: 0.75rem;
}

.portfolio-detail-google-mockup-footer-icon {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.625rem;
    font-weight: 900;
    color: #34d399;
}

.portfolio-detail-google-mockup-footer-text {
    font-size: 0.6875rem;
    color: #9ca3af;
    font-weight: 500;
    line-height: 1.6;
    margin: 0.375rem 0 0 0;
}

/* ========================================================== */
/* SIMILAR PROJECTS
/* ========================================================== */
.portfolio-detail-similar {
    padding-top: 3rem;
    margin-top: 3rem;
    border-top: 1px solid var(--border-color, #e2e8f0);
}

.portfolio-detail-similar-title {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--text-primary, #1e293b);
    margin-bottom: 1.5rem;
}

.similar-project-card {
    display: block;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    border-radius: 2rem;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    height: 100%;
}

.similar-project-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06);
}

.similar-project-img {
    aspect-ratio: 16/9;
    overflow: hidden;
}

.similar-project-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.similar-project-card:hover .similar-project-img img {
    transform: scale(1.05);
}

.similar-project-body {
    padding: 1.25rem 1.25rem 1.5rem 1.25rem;
}

.similar-project-title {
    font-weight: 900;
    font-size: 1rem;
    color: var(--text-primary, #1e293b);
    margin-bottom: 0.25rem;
}

.similar-project-desc {
    font-size: 0.8125rem;
    color: var(--text-secondary, #475569);
    font-weight: 500;
    margin: 0;
}
/* ================================================================ */
/* PRELOADER - اختصاصی نارنجیفای
/* ================================================================ */
.preloader {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: #f8f9fb;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

/* ========================================================== */
/* DARK MODE PRELOADER
/* ========================================================== */
body.dark-mode .preloader {
    background: #1a1d2e;
}

/* ========================================================== */
/* PRELOADER HIDE
/* ========================================================== */
.preloader.hide {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader-container {
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* ========================================================== */
/* ORBITS - دایره‌های چرخان
/* ========================================================== */
.preloader-orbits {
    position: absolute;
    inset: -120px -80px;
    pointer-events: none;
}

.preloader-orbit {
    position: absolute;
    border-radius: 50%;
    border: 2px solid rgba(255, 138, 0, 0.08);
    animation: preloaderOrbitSpin linear infinite;
}

.preloader-orbit-1 {
    width: 100%;
    height: 100%;
    animation-duration: 8s;
    border-color: rgba(255, 138, 0, 0.06);
}

.preloader-orbit-2 {
    width: 80%;
    height: 80%;
    top: 10%;
    left: 10%;
    animation-duration: 12s;
    animation-direction: reverse;
    border-color: rgba(255, 138, 0, 0.08);
}

.preloader-orbit-3 {
    width: 60%;
    height: 60%;
    top: 20%;
    left: 20%;
    animation-duration: 6s;
    border-color: rgba(255, 138, 0, 0.12);
    border-style: dashed;
}

@keyframes preloaderOrbitSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ========================================================== */
/* BRAND ICON - حرف ن
/* ========================================================== */
.preloader-brand {
    position: relative;
    margin-bottom: 1.5rem;
}

.preloader-brand-icon {
    position: relative;
    width: 5.5rem;
    height: 5.5rem;
    background: linear-gradient(135deg, #ff8a00, #f97316);
    border-radius: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(-6deg);
    box-shadow: 0 12px 48px rgba(255, 138, 0, 0.25);
    animation: preloaderBrandPulse 2s ease-in-out infinite;
}

@keyframes preloaderBrandPulse {
    0%, 100% { transform: rotate(-6deg) scale(1); }
    50% { transform: rotate(-6deg) scale(1.04); }
}

.preloader-brand-letter {
    font-size: 3.5rem;
    font-weight: 900;
    color: #fff;
    transform: rotate(6deg);
    animation: preloaderLetterFloat 3s ease-in-out infinite;
}

@keyframes preloaderLetterFloat {
    0%, 100% { transform: rotate(6deg) translateY(0); }
    50% { transform: rotate(6deg) translateY(-6px); }
}

.preloader-brand-dot {
    position: absolute;
    bottom: -0.25rem;
    right: -0.25rem;
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 50%;
    background: #10b981;
    border: 2px solid #fff;
    animation: preloaderDotPulse 1.5s ease-in-out infinite;
}

@keyframes preloaderDotPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.4); opacity: 0.5; }
}

/* ========================================================== */
/* LOADING RING AROUND ICON
/* ========================================================== */
.preloader-brand-icon::before {
    content: '';
    position: absolute;
    inset: -0.5rem;
    border-radius: 1.75rem;
    border: 2.5px solid rgba(255, 138, 0, 0.15);
    animation: preloaderRingSpin 3s linear infinite;
}

@keyframes preloaderRingSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.preloader-brand-icon::after {
    content: '';
    position: absolute;
    inset: -0.75rem;
    border-radius: 1.875rem;
    border: 2px solid rgba(255, 138, 0, 0.06);
    animation: preloaderRingSpin 4s linear infinite reverse;
}

/* ========================================================== */
/* NAME - حروف متحرک
/* ========================================================== */
.preloader-name {
    display: flex;
    gap: 0.05rem;
    margin-bottom: 2rem;
    font-size: 1.5rem;
    font-weight: 900;
    color: #2f3545;
    direction: rtl;
}

body.dark-mode .preloader-name {
    color: #e8edf5;
}

.preloader-name-letter {
    display: inline-block;
    opacity: 0;
    animation: preloaderLetterAppear 0.6s ease forwards;
    transform: translateY(20px) scale(0.8);
}

@keyframes preloaderLetterAppear {
    0% {
        opacity: 0;
        transform: translateY(20px) scale(0.8);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.preloader-name-letter:nth-child(1) { animation-delay: 0.1s; }
.preloader-name-letter:nth-child(2) { animation-delay: 0.2s; }
.preloader-name-letter:nth-child(3) { animation-delay: 0.3s; }
.preloader-name-letter:nth-child(4) { animation-delay: 0.4s; }
.preloader-name-letter:nth-child(5) { animation-delay: 0.5s; }
.preloader-name-letter:nth-child(6) { animation-delay: 0.6s; }
.preloader-name-letter:nth-child(7) { animation-delay: 0.7s; }
.preloader-name-letter:nth-child(8) { animation-delay: 0.8s; }
.preloader-name-letter:nth-child(9) { animation-delay: 0.9s; }

/* ========================================================== */
/* LOADER BAR - خط بارگذاری
/* ========================================================== */
.preloader-loader {
    width: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.preloader-loader-track {
    width: 100%;
    height: 3px;
    border-radius: 4px;
    background: rgba(255, 138, 0, 0.08);
    overflow: hidden;
    position: relative;
}

.preloader-loader-bar {
    height: 100%;
    width: 0%;
    border-radius: 4px;
    background: linear-gradient(90deg, #ff8a00, #f97316, #ff8a00);
    background-size: 200% 100%;
    animation: preloaderBarShimmer 1.5s linear infinite;
    transition: width 0.3s ease;
}

@keyframes preloaderBarShimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.preloader-loader-percent {
    font-size: 0.75rem;
    font-weight: 700;
    color: #ff8a00;
    font-variant-numeric: tabular-nums;
    direction: ltr;
}

/* ========================================================== */
/* TAGLINE
/* ========================================================== */
.preloader-tagline {
    font-size: 0.75rem;
    font-weight: 500;
    color: #9ca3af;
    margin-top: 1rem;
    letter-spacing: 0.03em;
    opacity: 0;
    animation: preloaderFadeIn 0.8s ease 1.2s forwards;
}

@keyframes preloaderFadeIn {
    0% { opacity: 0; transform: translateY(8px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* ========================================================== */
/* RESPONSIVE
/* ========================================================== */
@media (max-width: 576px) {
    .preloader-brand-icon {
        width: 4.25rem;
        height: 4.25rem;
        border-radius: 1.125rem;
    }

    .preloader-brand-letter {
        font-size: 2.75rem;
    }

    .preloader-name {
        font-size: 1.125rem;
        gap: 0.025rem;
    }

    .preloader-loader {
        width: 160px;
    }

    .preloader-orbits {
        inset: -80px -50px;
    }

    .preloader-tagline {
        font-size: 0.625rem;
    }
}
/* ================================================================ */
/* CATEGORY DESCRIPTION - توضیحات دسته‌بندی
/* ================================================================ */
.category-description-wrapper {
    margin-top: 3rem;
    margin-bottom: 1rem;
    padding: 0 0.5rem;
}

.category-description-card {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1.5rem 2rem;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.category-description-card:hover {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
    transform: translateY(-2px);
}

/* ========================================================== */
/* DECORATIVE BACKGROUND
/* ========================================================== */
.category-description-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 138, 0, 0.04), transparent 70%);
    pointer-events: none;
    border-radius: 50%;
}

.category-description-card::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 40%;
    height: 150%;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.03), transparent 70%);
    pointer-events: none;
    border-radius: 50%;
}

/* ========================================================== */
/* ICON
/* ========================================================== */
.category-description-icon {
    flex-shrink: 0;
    width: 3rem;
    height: 3rem;
    border-radius: 1rem;
    background: linear-gradient(135deg, rgba(255, 138, 0, 0.12), rgba(255, 138, 0, 0.04));
    border: 1px solid rgba(255, 138, 0, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.125rem;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.category-description-card:hover .category-description-icon {
    background: linear-gradient(135deg, rgba(255, 138, 0, 0.18), rgba(255, 138, 0, 0.06));
    transform: scale(1.05);
}

/* ========================================================== */
/* CONTENT
/* ========================================================== */
.category-description-content {
    flex: 1;
    min-width: 0;
    position: relative;
    z-index: 1;
}

.category-description-label {
    display: inline-block;
    font-size: 0.6875rem;
    font-weight: 700;
    color: var(--text-muted, #94a3b8);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 0.125rem;
}

.category-description-text {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--text-secondary, #475569);
    line-height: 1.8;
    margin: 0;
    padding-left: 0.5rem;
}

/* ========================================================== */
/* DECORATIVE DOTS
/* ========================================================== */
.category-description-decor {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
    flex-shrink: 0;
    padding-top: 0.25rem;
    position: relative;
    z-index: 1;
}

.category-description-dot {
    width: 0.375rem;
    height: 0.375rem;
    border-radius: 50%;
    background: var(--primary);
    opacity: 0.15;
    transition: all 0.3s ease;
}

.category-description-dot:nth-child(1) { opacity: 0.25; }
.category-description-dot:nth-child(2) { opacity: 0.15; }
.category-description-dot:nth-child(3) { opacity: 0.06; }

.category-description-card:hover .category-description-dot {
    opacity: 0.4;
}

.category-description-card:hover .category-description-dot:nth-child(1) {
    opacity: 0.6;
}

/* ========================================================== */
/* BORDER ACCENT (خط نارنجی در سمت راست)
/* ========================================================== */
.category-description-card::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary), #f97316);
    border-radius: 0 4px 4px 0;
    opacity: 0.6;
}
.filter-btn-more {
    font-size: 0.8125rem;
    padding: 0.5rem 0.75rem;
    border-radius: 10px;
    border: 1px dashed #dee2e6 !important;
    background: transparent !important;
    color: #6c757d;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
    font-weight: 500;
    margin-top: 4px;
}

.filter-btn-more:hover {
    background: #f8f9fa !important;
    border-color: #adb5bd !important;
}

body.dark-mode .filter-btn-more {
    color: #94a3b8;
    border-color: #334155 !important;
}

body.dark-mode .filter-btn-more:hover {
    background: #1e293b !important;
}
/* ================================================================ */
/* SOCIAL LINKS - استایل اختصاصی هر شبکه
/* ================================================================ */

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    color: #fff;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-decoration: none;
    border: none;
}

.social-link:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    color: #fff;
}

/* ─── لینکدین ──────────────────────────────────────────────── */
.social-link.linkedin {
    background: #0a66c2;
}
.social-link.linkedin:hover {
    background: #004182;
}

/* ─── گیت‌هاب ────────────────────────────────────────────────── */
.social-link.github {
    background: #181717;
}
.social-link.github:hover {
    background: #000000;
}

/* ─── اینستاگرام ────────────────────────────────────────────── */
.social-link.instagram {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%);
}
.social-link.instagram:hover {
    opacity: 0.85;
}

/* ─── تلگرام ────────────────────────────────────────────────── */
.social-link.telegram {
    background: #0088cc;
}
.social-link.telegram:hover {
    background: #006699;
}

/* ─── واتساپ ────────────────────────────────────────────────── */
.social-link.whatsapp {
    background: #25D366;
}
.social-link.whatsapp:hover {
    background: #1da851;
}

/* ─── ایتا ──────────────────────────────────────────────────── */
.social-link.eitaa {
    background: #e65100;
}
.social-link.eitaa:hover {
    background: #bf360c;
}

/* ─── بله ───────────────────────────────────────────────────── */
.social-link.bale {
    background: #5e35b1;
}
.social-link.bale:hover {
    background: #4527a0;
}

/* ─── دارک مود ──────────────────────────────────────────────── */
body.dark-mode .social-link.github {
    background: #333;
}
body.dark-mode .social-link.github:hover {
    background: #222;
}
/* ================================================================ */
/* TEAM DESCRIPTION CONTENT */
/* ================================================================ */

.team-description-content {
    color: #4a5568;
    line-height: 1.9;
    font-size: 0.95rem;
}

.team-description-content h1,
.team-description-content h2,
.team-description-content h3 {
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    font-weight: 700;
    color: #2d3748;
}

.team-description-content p {
    margin-bottom: 1rem;
}

.team-description-content ul,
.team-description-content ol {
    padding-right: 1.5rem;
    margin-bottom: 1rem;
}

.team-description-content li {
    margin-bottom: 0.5rem;
}
/* ================================================================ */
/* DESCRIPTION CARD */
/* ================================================================ */

.description-card {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.description-icon {
    width: 50px;
    height: 50px;
    background: rgba(249, 115, 22, 0.1);
    color: #f97316;
    transition: all 0.3s ease;
}

.description-icon i {
    font-size: 1.3rem;
    color: #f97316;
}

.description-title {
    font-size: 1.2rem;
    color: #1a202c;
}

/* ─── توضیحات ────────────────────────────────────────────────── */
.team-description-content {
    color: #4a5568;
    line-height: 1.9;
    font-size: 0.95rem;
}

.team-description-content h1,
.team-description-content h2,
.team-description-content h3 {
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    font-weight: 700;
    color: #2d3748;
}

.team-description-content p {
    margin-bottom: 1rem;
}

.team-description-content ul,
.team-description-content ol {
    padding-right: 1.5rem;
    margin-bottom: 1rem;
}

.team-description-content li {
    margin-bottom: 0.5rem;
}

/* ================================================================ */
/* DARK MODE */
/* ================================================================ */

body.dark-mode .description-card {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    border-color: #334155;
}

body.dark-mode .description-icon {
    background: rgba(249, 115, 22, 0.15);
}

body.dark-mode .description-icon i {
    color: #fb923c;
}

body.dark-mode .description-title {
    color: #e5e7eb;
}

body.dark-mode .team-description-content {
    color: #cbd5e1;
}

body.dark-mode .team-description-content h1,
body.dark-mode .team-description-content h2,
body.dark-mode .team-description-content h3 {
    color: #e5e7eb;
}

body.dark-mode .team-description-content a {
    color: #60a5fa;
}

body.dark-mode .team-description-content a:hover {
    color: #93bbfc;
}

body.dark-mode .team-description-content blockquote {
    border-right-color: #374151;
    color: #9ca3af;
}

body.dark-mode .team-description-content code {
    background: #1e293b;
    color: #e5e7eb;
}

body.dark-mode .team-description-content pre {
    background: #1e293b;
    border-color: #334155;
}

body.dark-mode .team-description-content table {
    border-color: #334155;
}

body.dark-mode .team-description-content th {
    background: #1e293b;
    color: #e5e7eb;
}

body.dark-mode .team-description-content td {
    border-color: #334155;
    color: #cbd5e1;
}

body.dark-mode .team-description-content hr {
    border-color: #334155;
}

.editor-img {
    max-width: 100% !important;
    height: auto !important;
    border-radius: 15px;
    display: block;
    margin: 16px auto;
}
