/* Rightbar Sidebar Components Styles */

.sidebar-card {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 30px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.sidebar-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #2c3e50;
    border-bottom: 3px solid #1EB7E6;
    padding-bottom: 10px;
}

/* Popular Posts & Latest Posts */
.post-list-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #dee2e6;
}

.post-list-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

.post-thumbnail {
    width: 80px;
    height: 60px;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
}

.post-info {
    flex: 1;
}

.post-title-small {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #2c3e50;
    line-height: 1.3;
    text-decoration: none;
    display: block;
    transition: color 0.3s ease;
}

.post-title-small:hover {
    color: #1EB7E6;
}

.post-date {
    font-size: 12px;
    color: #6c757d;
}

/* Contact Form Sidebar */
.contact-form-sidebar {
    background: linear-gradient(135deg, #1EB7E6, #0c5273);
    border-radius: 12px;
    padding: 32px;
    color: #ffffff;
}

.contact-form-sidebar h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #ffffff;
}

.contact-form-sidebar p {
    font-size: 14px;
    margin-bottom: 25px;
    color: rgba(255, 255, 255, 0.9);
}

.contact-form-sidebar .form-label {
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 14px;
    color: #ffffff;
}

.contact-form-sidebar .form-control {
    background-color: rgba(255, 255, 255, 0.95);
    border: none;
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 15px;
}

.contact-form-sidebar .form-control:focus {
    background-color: #ffffff;
    box-shadow: 0 0 0 3px rgba(255, 193, 7, 0.4);
    outline: none;
}

.submit-btn-sidebar {
    background-color: #ffc107;
    color: #2c3e50;
    border: none;
    border-radius: 8px;
    padding: 14px;
    font-weight: 700;
    width: 100%;
    font-size: 16px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.submit-btn-sidebar:hover {
    background-color: #e6ae06;
    transform: translateY(-2px);
}

.trust-badges {
    margin-top: 20px;
    text-align: center;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.9);
}

.trust-badges div {
    margin-bottom: 8px;
}

/* Responsive */
@media (max-width: 992px) {
    .sidebar-card {
        margin-bottom: 20px;
    }
}
