@font-face {
    font-family: IRANSans;
    font-style: normal;
    font-weight: normal;
    src: url('/fonts/iransans/woff2/IRANSansWeb.woff2') format('woff2'),
         url('/fonts/iransans/woff/IRANSansWeb.woff') format('woff'),
         url('/fonts/iransans/ttf/IRANSansWeb.ttf') format('truetype');
}

@font-face {
    font-family: IRANSans;
    font-style: normal;
    font-weight: bold;
    src: url('/fonts/iransans/woff2/IRANSansWeb_Bold.woff2') format('woff2'),
         url('/fonts/iransans/woff/IRANSansWeb_Bold.woff') format('woff'),
         url('/fonts/iransans/ttf/IRANSansWeb_Bold.ttf') format('truetype');
}

:root {
    --primary-color: #1e88e5;
    --primary-light: rgba(30, 136, 229, 0.1);
    --secondary-color: #0d47a1;
    --accent-color: #42a5f5;
    --success-color: #4caf50;
    --success-light: rgba(76, 175, 80, 0.1);
    --warning-color: #ff9800;
    --warning-light: rgba(255, 152, 0, 0.1);
    --danger-color: #f44336;
    --danger-light: rgba(244, 67, 54, 0.1);
    --text-color: #2b2d42;
    --text-light: #8d99ae;
    --text-muted: #a0aec0;
    --bg-color: #f8f9fa;
    --card-bg: #ffffff;
    --border-radius: 18px;
    --input-radius: 12px;
    --shadow: 0 10px 30px rgba(30, 136, 229, 0.1);
    --shadow-hover: 0 14px 40px rgba(30, 136, 229, 0.2);
    --shadow-pressed: 0 6px 16px rgba(30, 136, 229, 0.15);
}

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

body {
    background-color: var(--bg-color);
    font-family: 'IRANSans', sans-serif;
    color: var(--text-color);
    background-image:
        linear-gradient(to bottom, rgba(255,255,255,0.8) 0%, rgba(255,255,255,0.4) 100%),
        url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%231e88e5' fill-opacity='0.03' fill-rule='evenodd'%3E%3Cpath d='M0 40L40 0H20L0 20M40 40V20L20 40'/%3E%3C/g%3E%3C/svg%3E");
    background-size: cover, 40px 40px;
    min-height: 100vh;
    padding: 20px 0;
    position: relative;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 250px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    z-index: -1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo-container {
    text-align: center;
    margin-bottom: 30px;
    animation: fadeInDown 0.8s ease;
}

.logo {
    max-width: 160px;
    height: auto;
    filter: drop-shadow(0 5px 15px rgba(0,0,0,0.15));
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.survey-container {
    max-width: 800px;
    margin: 20px auto 40px;
    background: var(--card-bg);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
    animation: fadeInUp 0.8s ease;
    transition: box-shadow 0.3s ease;
}

.survey-container:hover {
    box-shadow: var(--shadow-hover);
}

.survey-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

.survey-container::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%231e88e5' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
    background-repeat: repeat;
    opacity: 0.2;
    z-index: 0;
    pointer-events: none;
}

.section-header {
    position: relative;
    margin-bottom: 40px;
    z-index: 1;
    text-align: center;
}

.section-title {
    font-size: 24px;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 12px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    width: 70%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    bottom: -8px;
    left: 15%;
}

.section-subtitle {
    color: var(--text-light);
    font-size: 15px;
    max-width: 600px;
    margin: 0 auto 5px;
    line-height: 1.6;
}

.car-image-container {
    position: relative;
    margin: 30px auto;
    text-align: center;
    transition: transform 0.5s ease;
    max-width: 500px;
}

.car-image-container:hover {
    transform: scale(1.02);
}

.car-image {
    display: block;
    width: 100%;
    height: auto;
    max-height: 300px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    transition: all 0.5s ease;
}

.car-image:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.car-badge {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 8px 16px;
    border-radius: 30px;
    font-weight: bold;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    color: var(--primary-color);
    font-size: 14px;
}

.survey-question {
    margin: 30px 0;
    text-align: center;
    background: linear-gradient(135deg, var(--primary-light) 0%, rgba(66, 165, 245, 0.1) 100%);
    padding: 25px 20px;
    border-radius: 15px;
    position: relative;
    border: 1px solid rgba(30, 136, 229, 0.1);
    box-shadow: 0 8px 20px rgba(30, 136, 229, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.survey-question:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(30, 136, 229, 0.1);
}

.survey-question h2 {
    margin-bottom: 25px;
    color: var(--primary-color);
    font-size: 22px;
    position: relative;
    display: inline-block;
}

.survey-question h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 3px;
}

.vote-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 30px 0 10px;
    flex-direction: row;
}

.btn {
    padding: 16px 28px;
    border-radius: 12px;
    font-size: 16px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    cursor: pointer;
    border: none;
    font-family: 'IRANSans', sans-serif;
    font-weight: bold;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 150px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.btn::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0));
    pointer-events: none;
}

.btn-yes {
    background-color: var(--success-color);
    color: white;
}

.btn-no {
    background-color: var(--danger-color);
    color: white;
}

.btn-yes:hover, .btn-no:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.share-container {
    background-color: rgba(30, 136, 229, 0.05);
    border-radius: 16px;
    padding: 25px 20px;
    margin: 30px 0;
    border: 1px dashed rgba(30, 136, 229, 0.3);
    position: relative;
    transition: all 0.3s ease;
}

.share-container:hover {
    background-color: rgba(30, 136, 229, 0.08);
    border-color: rgba(30, 136, 229, 0.5);
}

.share-container::before {
    content: '';
    position: absolute;
    top: -10px;
    right: 30px;
    width: 20px;
    height: 20px;
    background-color: var(--card-bg);
    border-right: 1px dashed rgba(30, 136, 229, 0.3);
    border-top: 1px dashed rgba(30, 136, 229, 0.3);
    transform: rotate(-45deg);
}

.share-title {
    font-weight: bold;
    color: var(--text-color);
    margin-bottom: 20px;
    text-align: center;
    font-size: 18px;
    position: relative;
    display: block;
    width: 100%;
}

.share-title::before {
    content: '🔗';
    margin-left: 8px;
    font-size: 20px;
}

.share-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn-share {
    padding: 12px 24px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-family: 'IRANSans', sans-serif;
    font-size: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
    transition: all 0.3s ease;
    min-width: 140px;
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
}

.btn-telegram {
    background: linear-gradient(135deg, #0088cc, #0063b1);
}

.btn-share:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.18);
}

.btn-share:active {
    transform: translateY(1px);
}

.btn-share i {
    margin-left: 10px;
    font-size: 20px;
}

.section-divider {
    display: flex;
    align-items: center;
    margin: 50px 0 40px;
}

.divider-line {
    flex-grow: 1;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(0, 0, 0, 0.1), transparent);
}

.divider-text {
    padding: 0 20px;
    color: var(--text-light);
    font-size: 15px;
    font-weight: 500;
}

.comment-form {
    background-color: #fafbfc;
    border-radius: 16px;
    padding: 25px 20px;
    margin-bottom: 40px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.comment-form:hover {
    background-color: white;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.form-group {
    margin-bottom: 25px;
}

.form-label {
    display: block;
    font-weight: 500;
    color: var(--text-color);
    margin-bottom: 10px;
    font-size: 15px;
}

.form-control {
    width: 100%;
    padding: 16px 18px;
    font-size: 15px;
    border: 1px solid #e1e5eb;
    border-radius: var(--input-radius);
    color: var(--text-color);
    transition: all 0.3s ease;
    background-color: white;
    font-family: 'IRANSans', sans-serif;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.03);
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(30, 136, 229, 0.15);
    outline: none;
}

.form-control::placeholder {
    color: var(--text-muted);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    padding: 14px 28px;
    border-radius: 10px;
    transition: all 0.3s ease;
    cursor: pointer;
    min-width: 140px;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(13, 71, 161, 0.25);
}

.btn-primary:active {
    transform: translateY(1px);
    box-shadow: 0 4px 8px rgba(13, 71, 161, 0.2);
}

.comment-list {
    margin-top: 40px;
}

.comment-item {
    padding: 15px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    position: relative;
}

.comment-item:hover {
    background-color: rgba(30, 136, 229, 0.02);
}

.comment-item:last-child {
    border-bottom: none;
}

.comment-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    align-items: center;
}

.comment-author {
    font-weight: bold;
    color: var(--text-color);
    font-size: 16px;
    position: relative;
    padding-right: 36px;
    display: inline-flex;
    align-items: center;
}

.comment-author::before {
    content: '';
    position: absolute;
    width: 30px;
    height: 30px;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--primary-light);
    border-radius: 50%;
    z-index: 0;
    box-shadow: 0 3px 8px rgba(30, 136, 229, 0.15);
}

.comment-author::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%231e88e5' viewBox='0 0 16 16'%3E%3Cpath d='M8 8a3 3 0 1 0 0-6 3 3 0 0 0 0 6m2-3a2 2 0 1 1-4 0 2 2 0 0 1 4 0m4 8c0 1-1 1-1 1H3s-1 0-1-1 1-4 6-4 6 3 6 4m-1 0c0-.5-.5-1.8-2.7-2.5C9.3 10 8.7 10 8 10c-.7 0-1.3 0-2.3.5C3.5 11.2 3 12.5 3 13z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    z-index: 1;
}

.comment-date {
    color: var(--text-light);
    font-size: 13px;
    padding: 4px 12px;
    background-color: #f5f7fa;
    border-radius: 30px;
}

.comment-content {
    color: var(--text-color);
    line-height: 1.8;
    font-size: 15px;
    padding: 5px 0;
}

.comment-replies {
    margin-top: 20px;
    padding-right: 25px;
    border-right: 2px solid var(--primary-color);
    background-color: rgba(30, 136, 229, 0.02);
    border-radius: 0 12px 12px 0;
    transition: all 0.3s ease;
}

.reply-item {
    padding: 18px 15px;
    position: relative;
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.reply-item:not(:last-child) {
    border-bottom: 1px dashed rgba(0, 0, 0, 0.06);
}

.reply-item:first-child {
    padding-top: 15px;
}

.reply-item .comment-author::before {
    background-color: rgba(76, 175, 80, 0.1);
}

.reply-item .comment-author::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%234caf50' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M1 8a7 7 0 1 0 14 0A7 7 0 0 0 1 8m15 0A8 8 0 1 1 0 8a8 8 0 0 1 16 0m-4.5-.5a.5.5 0 0 1 0 1H5.707l2.147 2.146a.5.5 0 0 1-.708.708l-3-3a.5.5 0 0 1 0-.708l3-3a.5.5 0 1 1 .708.708L5.707 7.5z'/%3E%3C/svg%3E");
}

/* انیمیشن برای پاسخ جدید */
.reply-item-new {
    animation: fadeInUp 0.6s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* لودینگ و آیکون‌ها */
.loading-spinner {
    display: inline-block;
    width: 1em;
    height: 1em;
    vertical-align: middle;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 1s ease-in-out infinite;
    margin-left: 5px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* استایل نمایش اعلان */
.success-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #00b894, #00cec9);
    color: white;
    font-size: 13px;
    padding: 6px 14px;
    border-radius: 30px;
    margin-right: 15px;
    margin-top: 5px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 10px rgba(0, 184, 148, 0.3);
    position: relative;
    overflow: hidden;
    font-weight: 500;
}

.success-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, 
        rgba(255,255,255,0) 0%, 
        rgba(255,255,255,0.2) 50%, 
        rgba(255,255,255,0) 100%);
    transform: translateX(-100%);
    animation: shimmer 2s infinite;
    z-index: 1;
}

.success-badge.show {
    opacity: 1;
    transform: translateY(0);
    animation: pulse-light 2s infinite;
}

.success-badge i {
    margin-left: 6px;
    font-size: 16px;
    z-index: 2;
    animation: bounce 1s ease-in-out;
}

@keyframes pulse-light {
    0% {
        box-shadow: 0 4px 10px rgba(0, 184, 148, 0.3);
    }
    50% {
        box-shadow: 0 4px 20px rgba(0, 184, 148, 0.5);
    }
    100% {
        box-shadow: 0 4px 10px rgba(0, 184, 148, 0.3);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-6px);
    }
    60% {
        transform: translateY(-3px);
    }
}

.btn-text-short {
    display: none;
}

@media (max-width: 768px) {
    .success-badge {
        padding: 5px 10px;
        font-size: 12px;
        margin-right: 8px;
    }
    
    .success-badge .btn-text-long {
        display: none;
    }
    
    .success-badge .btn-text-short {
        display: inline;
    }
}

/* حالت‌های مختلف دکمه پاسخ */
.btn-submit-reply:disabled {
    opacity: 0.7;
    cursor: wait;
}

/* دکمه پاسخ به نظرات */
.btn-reply {
    background: transparent;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    padding: 6px 12px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 12px;
    margin-top: 10px;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    font-family: 'IRANSans', sans-serif;
}

.btn-reply i {
    margin-left: 5px;
    font-size: 14px;
}

.btn-reply:hover {
    background-color: var(--primary-light);
    transform: translateY(-2px);
}

.comment-actions {
    display: flex;
    justify-content: flex-end;
    margin-top: 10px;
}

/* فرم پاسخ به نظر */
.reply-form {
    margin-top: 15px;
    background-color: var(--primary-light);
    border-radius: 12px;
    padding: 15px;
    display: none;
    transition: all 0.3s ease;
    overflow: hidden;
    max-height: 0;
}

.reply-form.active {
    display: block;
    max-height: 400px;
    animation: slideDown 0.3s ease forwards;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-15px);
        max-height: 0;
    }
    to {
        opacity: 1;
        transform: translateY(0);
        max-height: 400px;
    }
}

.reply-form-row {
    margin-bottom: 10px;
}

.reply-form-row input,
.reply-form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid rgba(30, 136, 229, 0.3);
    border-radius: 8px;
    resize: none;
    font-family: 'IRANSans', sans-serif;
    background-color: white;
}

.reply-form-actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

.btn-cancel {
    background: transparent;
    border: 1px solid #ccc;
    color: var(--text-light);
    padding: 6px 12px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 12px;
    transition: all 0.3s ease;
    font-family: 'IRANSans', sans-serif;
}

.btn-cancel:hover {
    background-color: #f5f5f5;
}

.btn-submit-reply {
    background: var(--primary-color);
    border: none;
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 12px;
    transition: all 0.3s ease;
    font-family: 'IRANSans', sans-serif;
}

.btn-submit-reply:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    body::before {
        height: 180px;
    }

    .survey-container {
        padding: 25px 15px;
        margin: 15px 10px 30px;
    }

    .survey-question {
        padding: 20px 15px;
        margin: 25px 0;
    }

    .share-container {
        padding: 20px 15px;
        margin: 25px 0;
    }

    .comment-form {
        padding: 20px 15px;
    }

    .section-title {
        font-size: 20px;
    }

    .car-image {
        max-height: 220px;
    }

    .vote-buttons {
        flex-direction: row;
        flex-wrap: nowrap;
        align-items: center;
        justify-content: center;
        gap: 10px;
        width: 100%;
    }

    .btn {
        flex: 1;
        min-width: 0;
        max-width: none;
        padding: 12px 15px;
        font-size: 14px;
        white-space: nowrap;
    }

    .btn-yes, .btn-no {
        width: 50%;
        max-width: 48%;
    }

    .share-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .section-divider {
        margin: 40px 0 30px;
    }

    .comment-header {
        flex-direction: row;
        align-items: center;
        gap: 8px;
    }

    .comment-date {
        margin-top: 0;
        font-size: 11px;
        padding: 3px 8px;
        flex-shrink: 0;
    }

    .comment-replies {
        padding-right: 15px;
    }
}

/* استایل‌های اختصاصی برای نتایج نظرسنجی */
.vote-results {
    background-color: #f8f9fa;
    border-radius: 12px;
    padding: 20px;
    margin: 30px auto;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    border: 1px solid #eaeaea;
    opacity: 0;
    transform: translateY(20px);
    /* دیرتر و آرام‌تر */
    transition: opacity 1.2s cubic-bezier(0.645,0.045,0.355,1),
                transform 1.2s cubic-bezier(0.645,0.045,0.355,1);
}

.vote-results.fade-in {
    opacity: 1;
    transform: translateY(0);
}

.vote-stats-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 15px;
}

.vote-stats-header h3 {
    font-size: 18px;
    color: #333;
    margin: 0;
    font-weight: bold;
}

.vote-total {
    font-size: 14px;
    color: #666;
    display: flex;
    align-items: center;
    gap: 8px;
}

.vote-total i {
    color: #0d6efd;
    font-size: 16px;
}

.vote-bars {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.vote-bar-container {
    margin-bottom: 5px;
}

.vote-label {
    display: flex;
    align-items: center;
    font-size: 14px;
    margin-bottom: 8px;
    font-weight: 500;
}

.vote-label i {
    margin-left: 8px;
}

.option-vote-count {
    margin-right: 6px;
    font-size: 12px;
    color: #777;
    font-weight: normal;
}

.vote-bar-wrapper {
    height: 26px;
    background-color: #e9ecef;
    border-radius: 13px;
    overflow: hidden;
    box-shadow: inset 0 1px 3px rgba(0,0,0,0.1);
}

.vote-bar {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-right: 0;
    color: white;
    font-weight: bold;
    font-size: 14px;
    /* آرام‌تر و نرم‌تر */
    transition: width 1.2s cubic-bezier(0.25,0.8,0.25,1);
    position: relative;
}

.vote-bar-yes {
    background: linear-gradient(45deg, #28a745, #5cb85c);
}

.vote-bar-no {
    background: linear-gradient(45deg, #dc3545, #ff6b6b);
}

/* استایل بار گزینه سوم: توییتر */
.vote-bar-neutral-2 {
    background: linear-gradient(45deg, #1DA1F2, #0d95e8);
}

/* استایل بار گزینه چهارم: اینستاگرام */
.vote-bar-neutral-3 {
    background: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584);
}

.vote-percent {
    position: relative;
    z-index: 1;
    text-shadow: 0 0 3px rgba(0,0,0,0.5);
}

.vote-count {
    font-size: 12px;
    color: #666;
    margin-right: 5px;
    margin-top: 5px;
    display: inline-block;
}

/* افکت ریپل برای دکمه‌ها */
.ripple-effect {
    position: absolute;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: scale(0);
    animation: ripple 0.6s linear;
    pointer-events: none;
}

@keyframes ripple {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* انیمیشن‌ها برای المان‌های صفحه */
.animated {
    animation: fadeInUp 0.5s ease forwards;
    opacity: 0;
    animation-delay: calc(var(--animation-order, 0) * 0.1s);
}

/* حالت برجسته برای نظر یا پاسخ جدید */
.highlight-new-item {
    animation: pulse 2s infinite;
    position: relative;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(30, 136, 229, 0.2);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(30, 136, 229, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(30, 136, 229, 0);
    }
}

/* فلش راهنما برای نظر یا پاسخ جدید */
.highlight-arrow {
    position: fixed;
    right: 20px;
    width: auto;
    background-color: rgba(30, 136, 229, 0.9);
    color: white;
    padding: 8px 15px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: bold;
    z-index: 1000;
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.highlight-arrow::before {
    content: var(--arrow-text, '"نظر شما"');
}

.highlight-arrow.show {
    opacity: 1;
    transform: translateX(0);
}

/* استایل اعلان‌ها */
.notification {
    position: fixed;
    top: 20px;
    left: 20px;
    right: 20px;
    max-width: 400px;
    margin: 0 auto;
    background-color: white;
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    z-index: 9999;
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.3s ease;
}

.notification.show {
    opacity: 1;
    transform: translateY(0);
}

.notification-success {
    border-right: 4px solid var(--success-color);
}

.notification-error {
    border-right: 4px solid var(--danger-color);
}

.notification-warning {
    border-right: 4px solid var(--warning-color);
}

.notification-icon {
    margin-left: 15px;
    font-size: 20px;
}

.notification-success .notification-icon {
    color: var(--success-color);
}

.notification-error .notification-icon {
    color: var(--danger-color);
}

.notification-warning .notification-icon {
    color: var(--warning-color);
}

.notification-content {
    flex-grow: 1;
    font-size: 14px;
}

.notification-close {
    background: none;
    border: none;
    color: #999;
    cursor: pointer;
    font-size: 16px;
    margin-right: 5px;
    transition: color 0.2s;
}

.notification-close:hover {
    color: #333;
}

/* پیام تشکر بعد از ارسال نظر */
.thank-you-message {
    margin-top: 15px;
    background-color: var(--success-light);
    color: var(--success-color);
    padding: 10px 15px;
    border-radius: 8px;
    text-align: center;
    font-weight: bold;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
    height: 0;
    overflow: hidden;
    padding: 0;
    margin: 0;
}

.thank-you-message.show {
    opacity: 1;
    transform: translateY(0);
    height: auto;
    padding: 10px 15px;
    margin-top: 15px;
}

.thank-you-message i {
    margin-left: 5px;
    animation: heartBeat 1s infinite;
}

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

/* استایل دکمه بعد از رأی دادن */
.btn.voted {
    opacity: 0.7;
    cursor: default;
}

.btn.selected {
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.5);
    transform: scale(1.05);
}

/* افکت کلیک روی دکمه */
.btn.clicked {
    transform: scale(0.95);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
    transition: all 0.1s ease;
}

/* استایل‌های واکنش‌گرا */
@media (max-width: 768px) {
    .vote-stats-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .vote-bar {
        padding-right: 0;
        font-size: 12px;
    }
    
    .vote-count {
        font-size: 10px;
        margin-top: 2px;
    }
    
    .btn-text-long {
        display: none;
    }
    
    .btn-text-short {
        display: inline;
    }
    
    .vote-buttons {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .btn {
        flex: 0 0 calc(50% - 10px);
        margin-bottom: 10px;
        font-size: 14px;
        padding: 12px 10px;
    }
    
    .notification {
        left: 10px;
        right: 10px;
        max-width: none;
        padding: 12px;
    }
    
    .highlight-arrow {
        right: 10px;
        padding: 6px 12px;
        font-size: 12px;
    }
}

/* استایل‌های مربوط به بارگذاری نظرات */
.loading-comments {
    text-align: center;
    padding: 20px;
    color: #666;
    font-size: 14px;
}

.loading-comments .loading-spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    margin-left: 10px;
}

#load-more-comments {
    margin: 20px 0;
    text-align: center;
}

#load-more-comments button {
    padding: 8px 20px;
    background-color: #f8f9fa;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    border-radius: 20px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

#load-more-comments button:hover {
    background-color: var(--primary-light);
    transform: translateY(-2px);
}

.no-comments {
    color: #666;
    font-style: italic;
    padding: 20px;
    text-align: center;
    background-color: #f9f9f9;
    border-radius: 10px;
    margin: 20px 0;
}

/* استایل‌های مقایسه خودرو */
.car-compare-container {
    background: linear-gradient(135deg, rgba(255,255,255,0.9) 0%, rgba(245,245,250,0.85) 100%);
    border-radius: 16px;
    padding: 25px;
    margin: 30px 0;
    box-shadow: 0 8px 30px rgba(0,0,0,0.06);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(226, 232, 240, 0.8);
}

.car-compare-container:hover {
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    transform: translateY(-3px);
}

.car-compare-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
    border-top-left-radius: 16px;
    border-bottom-left-radius: 16px;
}

.car-compare-title {
    color: var(--primary-color);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    position: relative;
}

.car-compare-title::before {
    content: '\F241';
    font-family: "bootstrap-icons";
    margin-left: 10px;
    font-size: 24px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.car-compare-items {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-around;
    position: relative;
}

.car-compare-items::after {
    content: '';
    position: absolute;
    width: 1px;
    height: 70%;
    background: linear-gradient(to bottom, transparent, rgba(0,0,0,0.1), transparent);
    top: 15%;
    left: 50%;
    display: none;
}

.car-compare-item {
    flex: 1;
    min-width: 250px;
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(226, 232, 240, 0.5);
}

.car-compare-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.car-compare-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    opacity: 0.8;
}

.car-compare-header {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    position: relative;
    display: flex;
    align-items: center;
}

.car-compare-header::before {
    content: '\F4E6';
    font-family: "bootstrap-icons";
    margin-left: 8px;
    font-size: 20px;
    color: var(--primary-color);
}

.car-compare-detail {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    padding: 8px 12px;
    background-color: rgba(246, 248, 252, 0.6);
    border-radius: 8px;
    transition: all 0.2s ease;
}

.car-compare-detail:hover {
    background-color: rgba(240, 244, 250, 0.9);
    transform: translateX(-3px);
}

.car-compare-label {
    font-size: 14px;
    color: #555;
    margin-left: 10px;
    font-weight: 600;
    flex: 0 0 80px;
}

.car-compare-value {
    font-size: 14px;
    color: #333;
    font-weight: 500;
    flex: 1;
    padding-right: 10px;
    border-right: 2px solid rgba(var(--primary-rgb), 0.3);
}

.car-compare-value:empty::after {
    content: 'نامشخص';
    opacity: 0.5;
    font-style: italic;
    font-size: 13px;
}

/* افزودن آیکون برای هر ویژگی */
.car-compare-detail.model .car-compare-label::before {
    content: '\F1B9';
    font-family: "bootstrap-icons";
    margin-left: 5px;
    color: var(--primary-color);
}

.car-compare-detail.year .car-compare-label::before {
    content: '\F1F7';
    font-family: "bootstrap-icons";
    margin-left: 5px;
    color: var(--primary-color);
}

/* Badge برای نمایش اختلاف بین خودروها */
.car-compare-value .badge-diff {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 20px;
    margin-right: 8px;
    font-size: 11px;
    font-weight: 500;
}

.badge-diff.better {
    background-color: rgba(0, 177, 106, 0.15);
    color: #00b16a;
}

.badge-diff.worse {
    background-color: rgba(242, 38, 19, 0.15);
    color: #f22613;
}

/* بهبود رسپانسیو بودن */
@media (max-width: 768px) {
    .car-compare-items {
        flex-direction: column;
    }
    
    .car-compare-items::after {
        display: none;
    }
    
    .car-compare-item {
        width: 100%;
        margin-bottom: 15px;
    }
    
    .car-compare-title {
        font-size: 18px;
    }
    
    .car-compare-header {
        font-size: 16px;
    }
}

/* افکت‌های اضافی برای تجربه کاربری بهتر */
.car-compare-container.animated {
    animation: fadeInUp 0.6s ease forwards;
}

.car-compare-item.animated {
    opacity: 0;
    transform: translateY(30px);
    animation: slideInUp 0.4s ease forwards;
}

.car-compare-item:nth-child(2).animated {
    animation-delay: 0.1s;
}

.car-compare-item:nth-child(3).animated {
    animation-delay: 0.2s;
}

@keyframes slideInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* استایل‌های آیکون‌های اضافی */
.car-compare-detail.price .car-compare-label::before {
    content: '\F4B6';
    font-family: "bootstrap-icons";
    margin-left: 5px;
    color: var(--primary-color);
}

.car-compare-detail.engine .car-compare-label::before {
    content: '\F6DE';
    font-family: "bootstrap-icons";
    margin-left: 5px;
    color: var(--primary-color);
}

/* تغییر رنگ هر کارت خودرو */
.car-compare-item:nth-child(1)::before {
    background: linear-gradient(to right, #3498db, #2980b9);
}

.car-compare-item:nth-child(2)::before {
    background: linear-gradient(to right, #e74c3c, #c0392b);
}

.car-compare-item:nth-child(3)::before {
    background: linear-gradient(to right, #2ecc71, #27ae60);
}

/* نوار پیشرفت در مقایسه */
.car-compare-progress {
    height: 8px;
    background-color: rgba(226, 232, 240, 0.5);
    border-radius: 4px;
    margin-top: 8px;
    overflow: hidden;
    position: relative;
}

.car-compare-progress-bar {
    height: 100%;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    border-radius: 4px;
    transition: width 0.6s ease;
}

/* افزودن پیوند اکشن به هر کارت */
.car-compare-actions {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid rgba(0,0,0,0.05);
    display: flex;
    justify-content: space-between;
}

.car-compare-btn {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    background-color: rgba(var(--primary-rgb), 0.1);
    color: var(--primary-color);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.car-compare-btn:hover {
    background-color: rgba(var(--primary-rgb), 0.2);
    transform: translateY(-2px);
}

.car-compare-btn i {
    margin-left: 5px;
    font-size: 14px;
}

/* بهبود ظاهر توضیحات برای موبایل */
@media (max-width: 768px) {
    .car-compare-item {
        padding: 15px;
    }
    
    .car-compare-detail {
        padding: 6px 10px;
    }
    
    .car-compare-label {
        flex: 0 0 70px;
        font-size: 13px;
    }
    
    .car-compare-value {
        font-size: 13px;
    }
    
    .car-compare-actions {
        margin-top: 15px;
        flex-wrap: wrap;
        gap: 8px;
    }
    
    .car-compare-btn {
        flex: 1;
        justify-content: center;
        min-width: 120px;
    }
}

/* استایل کارت انتخاب شده */
.car-compare-item.selected {
    box-shadow: 0 10px 30px rgba(0, 110, 255, 0.15);
    border: 2px solid rgba(var(--primary-rgb), 0.5);
    transform: translateY(-8px);
}

/* نشان انتخاب شده */
.badge-selected {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    z-index: 2;
    animation: pulse 1.5s infinite;
}

.badge-selected i {
    margin-left: 5px;
    font-size: 14px;
}

/* سایه افکت برای نوار پیشرفت */
.car-compare-progress-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, 
        rgba(255,255,255,0) 0%, 
        rgba(255,255,255,0.3) 50%, 
        rgba(255,255,255,0) 100%);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    from {
        transform: translateX(-100%);
    }
    to {
        transform: translateX(100%);
    }
}

/* رنگ‌های مختلف برای نوار پیشرفت بر اساس امتیاز */
.car-compare-progress-bar[style*="width: 8"] {
    background: linear-gradient(to right, #2ecc71, #27ae60);
}

.car-compare-progress-bar[style*="width: 7"] {
    background: linear-gradient(to right, #3498db, #2980b9);
}

.car-compare-progress-bar[style*="width: 6"] {
    background: linear-gradient(to right, #f39c12, #d35400);
}

.car-compare-progress-bar[style*="width: 5"],
.car-compare-progress-bar[style*="width: 4"] {
    background: linear-gradient(to right, #e67e22, #d35400);
}

.car-compare-progress-bar[style*="width: 3"],
.car-compare-progress-bar[style*="width: 2"],
.car-compare-progress-bar[style*="width: 1"] {
    background: linear-gradient(to right, #e74c3c, #c0392b);
}

/* استایل دکمه اینستاگرام */
.btn-instagram {
    background: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D, #F56040, #F77737, #FCAF45, #FFDC80);
    color: white;
    border: none;
}

.btn-instagram:hover {
    box-shadow: 0 5px 15px rgba(193, 53, 132, 0.4);
    transform: translateY(-3px);
    color: white;
}

/* استایل برای حالت مخفی بودن دکمه‌های رأی */
.vote-buttons.hidden {
    display: none !important;
}

/* پیام برای کاربری که قبلاً رأی داده */
.already-voted-message {
    background-color: #e8f5e9;
    border-right: 4px solid #4caf50;
    padding: 12px 15px;
    margin: 15px 0;
    border-radius: 8px;
    display: none;
    align-items: center;
}

.already-voted-message.show {
    display: flex;
    animation: fadeInUp 0.5s ease;
}

.already-voted-message i {
    margin-left: 10px;
    font-size: 20px;
    color: #4caf50;
}

.already-voted-message p {
    margin: 0;
    color: #2e7d32;
}

/* نشان انتخاب شما در نتایج */
.your-choice {
    display: inline-block;
    background-color: var(--accent-color);
    color: white;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 12px;
    margin-right: 8px;
}

/* Styles for similar surveys section */
.similar-surveys-container {
    background-color: var(--glass-bg);
    backdrop-filter: blur(12px);
    border-radius: 16px;
    padding: 25px 25px 15px 25px;
    margin: 30px 0;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.18);
    transition: all 0.3s ease;
}

.similar-surveys-container:hover {
    transform: translateY(-3px);
}

.similar-surveys-container::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border-radius: 16px;
    z-index: -1;
}

.similar-surveys-header {
    text-align: center;
    margin-bottom: 25px;
    position: relative;
}

.similar-surveys-title {
    font-size: 1.7rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 8px;
    position: relative;
    display: inline-block;
}

.similar-surveys-title::after {
    content: '';
    position: absolute;
    bottom: -6px;
    right: 50%;
    width: 80px;
    height: 3px;
    background: linear-gradient(to left, var(--primary-color), var(--accent-color));
    border-radius: 3px;
    transform: translateX(50%);
}

.similar-surveys-subtitle {
    font-size: 1rem;
    color: var(--text-color-light);
    margin-top: 10px;
    font-weight: 400;
}

.similar-surveys-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-height: 850px;
    overflow-y: auto;
    padding: 15px 5px 10px 5px;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-color) transparent;
}

.similar-surveys-list::-webkit-scrollbar {
    width: 6px;
}

.similar-surveys-list::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.similar-surveys-list::-webkit-scrollbar-thumb {
    background-color: var(--primary-color);
    border-radius: 10px;
}

.similar-survey-item {
    display: flex;
    flex-direction: row;
    gap: 15px;
    background-color: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 15px;
    transition: all 0.3s ease;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.similar-survey-item:hover {
    background-color: rgba(255, 255, 255, 0.12);
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.similar-survey-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 3px;
    background: linear-gradient(to bottom, var(--primary-color), var(--accent-color));
    border-radius: 0 3px 3px 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.similar-survey-item:hover::before {
    opacity: 1;
}

.similar-survey-image-container {
    flex: 0 0 120px;
    height: 120px;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

.similar-survey-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.similar-survey-item:hover .similar-survey-image {
    transform: scale(1.1);
}

.similar-survey-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.similar-survey-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 8px;
    line-height: 1.4;
}

.similar-survey-description {
    font-size: 0.9rem;
    color: var(--text-color-light);
    margin-bottom: 10px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.similar-survey-stats {
    display: flex;
    gap: 15px;
    font-size: 0.85rem;
    color: var(--text-color-light);
}

.similar-survey-views, 
.similar-survey-votes {
    display: flex;
    align-items: center;
    gap: 5px;
}

.similar-survey-views i, 
.similar-survey-votes i {
    color: var(--accent-color);
    font-size: 0.95rem;
}

.similar-surveys-footer {
    display: flex;
    justify-content: center;
    margin-top: 25px;
}

.btn-view-all {
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    color: white;
    border: none;
    border-radius: 30px;
    padding: 10px 25px;
    font-size: 0.95rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-view-all:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    background: linear-gradient(45deg, var(--accent-color), var(--primary-color));
}

.btn-view-all i {
    font-size: 1.1rem;
}

/* Mobile styling for similar surveys */
@media (max-width: 768px) {
    .similar-surveys-container {
        padding: 20px 15px;
        margin: 25px 0;
    }
    
    .similar-surveys-title {
        font-size: 1.4rem;
    }
    
    .similar-surveys-subtitle {
        font-size: 0.9rem;
    }
    
    .similar-survey-item {
        flex-direction: row;
        gap: 12px;
        padding: 0;
    }
    
    .similar-survey-image-container {
        flex: 0 0 100px;
        height: 100px;
    }
    
    .similar-survey-title {
        font-size: 1rem;
        margin-bottom: 6px;
    }
    
    .similar-survey-description {
        font-size: 0.85rem;
        margin-bottom: 8px;
    }
    
    .similar-survey-stats {
        font-size: 0.8rem;
    }
    
    .btn-view-all {
        width: 100%;
        justify-content: center;
        font-size: 0.9rem;
    }
    
    .similar-surveys-list {
        max-height: unset;
    }
}
