/* ========== New Reviews Card Design (Golden/Dark Theme) ========== */

/* Grid Layout */
.success-stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

/* Card Container */
.success-card {
    background: #111;
    /* Dark Background */
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: 0.3s ease;
    text-align: center;
    position: relative;
    padding-bottom: 20px;
}

.success-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.15);
    /* Golden Glow */
    border-color: var(--primary-color);
}

/* Image Area */
.card-image {
    position: relative;
    width: 100%;
    height: 350px;
    /* Tall to match the provided image style */
    overflow: hidden;
    margin-bottom: 15px;
    background: #000;
    border-bottom: 3px solid var(--primary-color);
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    cursor: pointer;
}

.success-card:hover .card-image img {
    transform: scale(1.05);
}

/* Play Icon Overlay for Videos */
.play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(0, 0, 0, 0.6);
    border: 2px solid #fff;
    /* White border as in sample */
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 1.5rem;
    pointer-events: none;
    transition: 0.3s;
}

.success-card:hover .play-icon {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #000;
}

/* Content Area */
.card-content {
    padding: 10px 20px 20px;
}

/* Title & Description */
.card-content h3 {
    color: #fff;
    /* White Title */
    font-size: 1.4rem;
    margin-bottom: 5px;
    font-weight: 700;
}

.card-content p.description {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

/* Buttons */

/* 1. Zoom Text Button (For Images) */
.btn-zoom-text {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    text-decoration: none;
    transition: 0.3s;
}

.btn-zoom-text:hover {
    color: #fff;
    text-shadow: 0 0 10px var(--primary-color);
}

/* 2. Facebook Action Button (For Videos) */
.btn-facebook-action {
    display: block;
    width: 90%;
    margin: 0 auto;
    background: #1877F2;
    /* Facebook Blue */
    color: #fff;
    padding: 10px 0;
    border-radius: 8px;
    /* Slightly rounded */
    font-weight: 700;
    text-decoration: none;
    font-size: 1rem;
    transition: 0.3s;
    border: none;
    cursor: pointer;
}

.btn-facebook-action:hover {
    background: #1464cc;
    /* Darker Blue */
    transform: translateY(-2px);
}

.btn-facebook-action i {
    margin-left: 5px;
}

/* Filter Buttons */
.reviews-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
}

.filter-btn {
    background: transparent;
    border: 1px solid #444;
    color: #ccc;
    padding: 10px 30px;
    border-radius: 50px;
    cursor: pointer;
    font-size: 1rem;
    transition: 0.3s;
    font-family: 'Cairo', sans-serif;
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--primary-color);
    color: #000;
    border-color: var(--primary-color);
    font-weight: bold;
}