/* ===================================
   Card Component
   ================================= */

.card {
    background-color: var(--bg-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: all var(--transition-base);
    height: 100%;
}

.card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.card-body {
    padding: var(--spacing-xl);
}

.card-img-top {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.card-title {
    font-weight: var(--font-weight-bold);
    margin-bottom: var(--spacing-md);
}

.card-text {
    color: var(--text-light);
    line-height: 1.6;
}

/* Feature Box */
.feature-box {
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
    height: 100%;
    border: 1px solid var(--border-light);
    background: var(--bg-white);
    text-align: center;
}

.feature-box:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: var(--spacing-lg);
}

.feature-title {
    font-weight: var(--font-weight-bold);
    margin-bottom: var(--spacing-md);
}

/* Review Card */
.review-item {
    display: flex;
    align-items: center;
    max-width: 900px;
    margin: 50px auto;
    gap: var(--spacing-xl);
    padding: var(--spacing-lg);
}

.img-review img {
    width: 120px;
    height: 120px;
    border-radius: var(--radius-full);
    object-fit: cover;
    box-shadow: var(--shadow-md);
    border: 3px solid var(--bg-light);
}

.review-box {
    flex-grow: 1;
}

.review-content-wrapper {
    position: relative;
    background-color: var(--primary-light);
    border-radius: var(--radius-xl);
    padding: var(--spacing-xl);
    border-left: 5px solid var(--primary-color);
    box-shadow: var(--shadow-sm);
    margin-bottom: var(--spacing-lg);
}

@media (max-width: 768px) {
    .review-item {
        flex-direction: column;
        text-align: center;
    }
}
