/* 9. Comments Area & Form */
.comments-area {
    background: #ffffff !important;
    border: none !important;
    padding: 40px 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    border-top: 1px solid #e2e8f0 !important;
    margin-top: 40px !important;
}
@media (max-width: 767px) {
    .comments-area {
        padding: 30px 0 !important;
        border-radius: 0 !important;
    }
}
.comment-item {
    background: #f8fafc !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 12px !important;
    padding: 20px !important;
    margin-bottom: 20px !important;
    transition: all 0.2s ease;
}
.comment-item:hover {
    border-color: #cbd5e1 !important;
    background: #f1f5f9 !important;
}
.comment-reply-link {
    display: inline-block;
    background: #ffffff;
    border: 1px solid #cbd5e1;
    padding: 6px 16px !important;
    border-radius: 6px;
    font-size: 12px !important;
    font-weight: 700 !important;
    color: var(--primary) !important;
    text-decoration: none !important;
    transition: all 0.2s ease;
}
.comment-reply-link:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #ffffff !important;
    box-shadow: 0 4px 8px rgba(15, 76, 129, 0.1);
}
.comment-form-custom textarea,
.comment-form-custom input[type="text"],
.comment-form-custom input[type="email"] {
    background: #f8fafc !important;
    border: 1px solid #cbd5e1 !important;
    border-radius: 10px !important;
    padding: 14px !important;
    font-size: 14px !important;
    transition: all 0.25s ease !important;
}
.comment-form-custom textarea:focus,
.comment-form-custom input[type="text"]:focus,
.comment-form-custom input[type="email"]:focus {
    background: #ffffff !important;
    border-color: var(--primary) !important;
    box-shadow: 0 0 0 3px rgba(15, 76, 129, 0.15) !important;
}
.comment-form-custom button[type="submit"] {
    background: var(--primary) !important;
    color: #ffffff !important;
    padding: 14px 30px !important;
    border-radius: 8px !important;
    font-weight: 700 !important;
    border: none !important;
    font-size: 14px !important;
    transition: all 0.2s ease !important;
    box-shadow: 0 4px 12px rgba(15, 76, 129, 0.2) !important;
}
.comment-form-custom button[type="submit"]:hover {
    background: var(--accent) !important;
    box-shadow: 0 6px 16px rgba(15, 76, 129, 0.3) !important;
    transform: translateY(-1px);
}

