﻿* {
    font-family: Samim FD, sans-serif;
}

body {
    background-color: #fafafa;
    color: #374151;
}

.section-title {
    position: relative;
    padding-bottom: 1rem;
    margin-bottom: 2.5rem;
}

    .section-title:after {
        content: '';
        position: absolute;
        bottom: 0;
        right: 0;
        width: 80px;
        height: 4px;
        background: linear-gradient(90deg, #10b981, #34d399);
        border-radius: 2px;
    }

.feature-card {
    transition: all 0.3s ease;
    border-top: 4px solid transparent;
}

    .feature-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.08), 0 10px 10px -5px rgba(0, 0, 0, 0.02);
        border-top-color: #10b981;
    }

.hero-gradient {
    background: linear-gradient(135deg, #065f46 0%, #059669 50%, #10b981 100%);
}

.badge {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-left: 0.5rem;
}

.cta-button {
    background: linear-gradient(90deg, #059669, #10b981);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

    .cta-button:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 15px -3px rgba(5, 150, 105, 0.2);
    }

.highlight-text {
    background: linear-gradient(90deg, #fbbf24, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

/* سیستم نوبار تب‌های پیشرفته - بدون اسکرول */
.tab-container {
    position: relative;
    margin-bottom: 2rem;
}

.tabs-wrapper {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

@media (max-width: 1536px) {
    .tabs-wrapper {
        grid-template-columns: repeat(6, 1fr);
    }
}

@media (max-width: 1280px) {
    .tabs-wrapper {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 1024px) {
    .tabs-wrapper {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .tabs-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .tabs-wrapper {
        grid-template-columns: 1fr;
    }
}

.tab-button {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    padding: 1.25rem 1rem;
    font-size: 1rem;
    text-align: center;
    background: linear-gradient(145deg, #f3f4f6, #e5e7eb);
    border: 1px solid #d1d5db;
    border-radius: 12px;
    color: #4b5563;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

    .tab-button:hover {
        background: linear-gradient(145deg, #e5e7eb, #d1d5db);
        transform: translateY(-3px);
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    }

    .tab-button.active {
        background: linear-gradient(135deg, #059669, #10b981);
        color: white;
        font-weight: 600;
        border-color: #059669;
        box-shadow: 0 10px 20px rgba(5, 150, 105, 0.2);
    }

        .tab-button.active .tab-icon {
            transform: scale(1.1);
            filter: brightness(1.2);
        }

        .tab-button.active:after {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.2) 50%, transparent 70%);
            animation: shimmer 2s infinite;
        }

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

.tab-icon {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    transition: all 0.3s ease;
}

.tab-indicator {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.tab-indicator-text {
    background: linear-gradient(90deg, #059669, #10b981);
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.2);
    display: inline-block;
    font-size: 1.1rem;
}

.tab-content-header {
    background: linear-gradient(135deg, #d1fae5, #a7f3d0);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 2rem;
    border: 1px solid #a7f3d0;
    position: relative;
    overflow: hidden;
}

    .tab-content-header:before {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        width: 200px;
        height: 200px;
        background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.3) 50%, transparent 70%);
        border-radius: 50%;
        transform: translate(50%, -50%);
    }

.animate-float {
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.feature-list li {
    position: relative;
    padding-right: 1.5rem;
    margin-bottom: 0.75rem;
}

    .feature-list li:before {
        content: '✓';
        position: absolute;
        right: 0;
        color: #10b981;
        font-weight: bold;
    }

/* استایل برای لوگوی سینورا */
.sinora-logo {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1.5rem;
    background: linear-gradient(90deg, #059669, #10b981);
    color: white;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    box-shadow: 0 4px 10px rgba(5, 150, 105, 0.2);
}

/* رنگ‌بندی آرامش‌بخش */
.gradient-section-1 {
    background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
}

.gradient-section-2 {
    background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
}

/* بهبود کارت‌ها با حس آرامش‌بخش */
.enhanced-card {
    border: 1px solid rgba(209, 250, 229, 0.5);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    background: white;
}

    .enhanced-card:hover {
        box-shadow: 0 15px 30px rgba(5, 150, 105, 0.1);
        transform: translateY(-8px);
        border-color: rgba(16, 185, 129, 0.3);
    }

/* رنگ‌های مختلف برای حس‌های متفاوت */
.tab-employee {
    background: linear-gradient(145deg, #dbeafe, #bfdbfe);
    border-color: #93c5fd;
    color: #1e40af;
}

    .tab-employee.active {
        background: linear-gradient(135deg, #1d4ed8, #3b82f6);
    }

.tab-recruitment {
    background: linear-gradient(145deg, #fef3c7, #fde68a);
    border-color: #fcd34d;
    color: #92400e;
}

    .tab-recruitment.active {
        background: linear-gradient(135deg, #d97706, #f59e0b);
    }

.tab-hr-decree {
    background: linear-gradient(145deg, #fce7f3, #fbcfe8);
    border-color: #f9a8d4;
    color: #9d174d;
}

    .tab-hr-decree.active {
        background: linear-gradient(135deg, #db2777, #ec4899);
    }

.tab-salary {
    background: linear-gradient(145deg, #dcfce7, #bbf7d0);
    border-color: #86efac;
    color: #166534;
}

    .tab-salary.active {
        background: linear-gradient(135deg, #16a34a, #22c55e);
    }

.tab-benefits {
    background: linear-gradient(145deg, #fef3c7, #fde68a);
    border-color: #fcd34d;
    color: #92400e;
}

    .tab-benefits.active {
        background: linear-gradient(135deg, #ca8a04, #eab308);
    }

.tab-leave {
    background: linear-gradient(145deg, #e0e7ff, #c7d2fe);
    border-color: #a5b4fc;
    color: #3730a3;
}

    .tab-leave.active {
        background: linear-gradient(135deg, #4f46e5, #6366f1);
    }

.tab-tax {
    background: linear-gradient(145deg, #fee2e2, #fecaca);
    border-color: #fca5a5;
    color: #991b1b;
}

    .tab-tax.active {
        background: linear-gradient(135deg, #dc2626, #ef4444);
    }

.tab-loan {
    background: linear-gradient(145deg, #ede9fe, #ddd6fe);
    border-color: #c4b5fd;
    color: #5b21b6;
}

    .tab-loan.active {
        background: linear-gradient(135deg, #7c3aed, #8b5cf6);
    }

/* افکت‌های ویژه HR */
.hr-glow {
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.1);
}

.people-pattern {
    position: relative;
    overflow: hidden;
}

    .people-pattern:before {
        content: "👥👨‍💼👩‍💼💼";
        position: absolute;
        top: -10px;
        right: -10px;
        font-size: 60px;
        opacity: 0.05;
        z-index: 0;
        transform: rotate(-15deg);
    }

/* هدر آرامش‌بخش */
.calm-header {
    position: relative;
    overflow: hidden;
}

    .calm-header:before {
        content: "";
        position: absolute;
        top: 0;
        right: 0;
        width: 100%;
        height: 100%;
        background: radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.15) 0%, transparent 50%), radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.15) 0%, transparent 50%);
        z-index: 1;
    }

/* طرح ستونی برای نمایش بهتر */
.column-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

/* طراحی پیشرفته برای کارت‌های اطلاعاتی */
.info-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    border-left: 4px solid #10b981;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

    .info-card h4 {
        color: #065f46;
        font-weight: 600;
        margin-bottom: 1rem;
        font-size: 1.1rem;
    }

.process-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 2rem 0;
    position: relative;
}

.process-step {
    background: white;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 2;
    font-weight: bold;
    color: #065f46;
}

.process-connector {
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, #10b981, #a7f3d0);
    margin: 0 -10px;
}
