﻿

:root {
    --primary: #4e54c8;
    --secondary: #8f94fb;
    --accent: #ff7e5f;
    --light: #f8f9fa;
    --dark: #343a40;
    --success: #28a745;
}


.evaluation-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    width: 100%;
    max-width: 1200px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(78, 84, 200, 0.3);
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
}

.header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 Q50,20 100,0 L100,100 Q50,80 0,100 Z" fill="rgba(255,255,255,0.1)"/></svg>');
    background-size: cover;
    opacity: 0.2;
}

.header-content {
    padding: 40px;
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: center;
}

.header-text {
    padding: 20px;
}

.header-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    position: relative;
    display: flex;
    align-items: center;
}

    .header-title i {
        margin-left: 15px;
        background: rgba(255, 255, 255, 0.2);
        width: 60px;
        height: 60px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.8rem;
    }

.header-subtitle {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 30px;
    max-width: 90%;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 20px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.feature-icon {
    background: rgba(255, 255, 255, 0.2);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 15px;
    flex-shrink: 0;
}

.feature-text {
    font-size: 1rem;
}

.progress-section {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 15px;
    padding: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.progress-title {
    font-size: 1.3rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

    .progress-title i {
        margin-left: 10px;
    }

.progress-item {
    margin-bottom: 25px;
}

.progress-label {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.progress-bar {
    height: 12px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: var(--accent);
    border-radius: 10px;
    transition: width 0.5s ease;
}

.cta-button {
    display: inline-block;
    background: white;
    color: var(--primary);
    padding: 14px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    margin-top: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

    .cta-button:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
    }

    .cta-button i {
        font-size: 1.2rem;
    }

@media (max-width: 992px) {
    .header-content {
        grid-template-columns: 1fr;
    }

    .header-title {
        font-size: 2rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }
}
.hidden-field {
    display: none;
}

label.required:after {
    content: " *";
    color: red;
    font-weight: bold;
}


.page-container {
    max-width: 980px;
    margin: 0 auto;
    padding: 0 16px;
}

.form-input, .form-textarea {
    background-color: #fff;
    border: 1px solid #e5e7eb;
    padding: 10px 12px;
    border-radius: 8px;
    width: 100%;
    color: #111827;
}

    .form-input:focus, .form-textarea:focus {
        outline: none;
        border-color: #3b82f6;
        box-shadow: 0 4px 10px rgba(59,130,246,0.08);
    }

.page-container {
    max-width: 980px;
    margin: 0 auto;
    padding: 0 16px;
}

.form-input, .form-textarea {
    background-color: #fff;
    border: 1px solid #e5e7eb;
    padding: 10px 12px;
    border-radius: 8px;
    width: 100%;
    color: #111827;
}

    .form-input:focus, .form-textarea:focus {
        outline: none;
        border-color: #3b82f6;
        box-shadow: 0 4px 10px rgba(59,130,246,0.08);
    }

.package-type-card {
    user-select: none;
    transition: all 0.25s ease;
}

    .package-type-card.selected {
        border: 2px solid #3b82f6;
        box-shadow: 0 0 10px rgba(59, 130, 246, 0.3);
        background-color: #f0f8ff;
    }

.text-right-rtl {
    direction: rtl;
    text-align: right;
}

.text-right-rtl {
    direction: rtl;
    text-align: right;
}

.tick-option {
    display: flex;
    align-items: center;
    cursor: pointer;
    gap: 8px;
    margin-bottom: 10px;
    user-select: none;
}

    .tick-option input[type="radio"] {
        appearance: none;
        width: 20px;
        height: 20px;
        border: 2px solid #888;
        border-radius: 4px;
        display: grid;
        place-content: center;
        cursor: pointer;
    }

        .tick-option input[type="radio"]::before {
            content: "";
            width: 12px;
            height: 12px;
            transform: scale(0);
            transition: 0.15s ease-in-out;
            background-color: #28a745; /* رنگ تیک سبز */
            border-radius: 2px;
        }

        .tick-option input[type="radio"]:checked::before {
            transform: scale(1);
        }

@media (max-width: 576px) {
    .header-content {
        padding: 25px;
    }

    .header-title {
        font-size: 1.8rem;
    }

        .header-title i {
            width: 50px;
            height: 50px;
        }

    .header-subtitle {
        font-size: 1.1rem;
    }
}
