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