/* ===== FEATURED SUPPORTERS SECTION ===== */

.featured-supporters {
    background: linear-gradient(180deg, 
        rgba(248, 249, 250, 0.5) 0%, 
        var(--white-color) 100%
    );
    position: relative;
    overflow: hidden;
}

/* Decorative background pattern */
.featured-supporters::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23d62d8c' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
    pointer-events: none;
    z-index: 0;
}

.featured-supporters .container {
    position: relative;
    z-index: 1;
}

.featured-supporters__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

@media screen and (min-width: 576px) {
    .featured-supporters__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media screen and (min-width: 992px) {
    .featured-supporters__grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem;
    }
}

/* ===== SUPPORTER CARD ===== */
.supporter-card {
    background: var(--white-color);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 
        0 4px 16px rgba(214, 45, 140, 0.08),
        0 2px 8px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(214, 45, 140, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.supporter-card:hover {
    transform: translateY(-12px);
    box-shadow: 
        0 12px 32px rgba(214, 45, 140, 0.15),
        0 6px 16px rgba(123, 45, 126, 0.1);
    border-color: rgba(214, 45, 140, 0.2);
}

/* Top gradient stripe based on tier */
.supporter-card[data-tier="gold"]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #FFD700, #FFA500, #FF8C00);
    z-index: 1;
}

.supporter-card[data-tier="silver"]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #C0C0C0, #B8B8B8, #A8A8A8);
    z-index: 1;
}

.supporter-card[data-tier="bronze"]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #CD7F32, #C57030, #BD602E);
    z-index: 1;
}

/* Card Header */
.supporter-card__header {
    padding: 2rem 1.5rem 1rem 1.5rem;
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

/* Avatar */
.supporter-card__avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white-color);
    font-size: 2.5rem;
    font-weight: var(--font-bold);
    box-shadow: 
        0 8px 20px rgba(214, 45, 140, 0.25),
        0 4px 12px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 3px solid rgba(255, 255, 255, 0.9);
}

.supporter-card:hover .supporter-card__avatar {
    transform: scale(1.05) rotate(3deg);
    box-shadow: 
        0 12px 28px rgba(214, 45, 140, 0.35),
        0 6px 16px rgba(0, 0, 0, 0.15);
}

.supporter-card__avatar-text {
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Avatar image if provided */
.supporter-card__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

/* Tier Badge */
.supporter-card__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: var(--font-semibold);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.supporter-card:hover .supporter-card__badge {
    transform: scale(1.05);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.supporter-card__badge-icon {
    font-size: 1.2rem;
    display: flex;
    align-items: center;
}

.supporter-card__badge-text {
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 0.75rem;
}

/* Gold Tier Badge */
.supporter-card__badge--gold {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #8B4513;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

/* Silver Tier Badge */
.supporter-card__badge--silver {
    background: linear-gradient(135deg, #C0C0C0 0%, #A8A8A8 100%);
    color: #4A4A4A;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

/* Bronze Tier Badge */
.supporter-card__badge--bronze {
    background: linear-gradient(135deg, #CD7F32 0%, #BD602E 100%);
    color: #4A2511;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

/* Card Content */
.supporter-card__content {
    padding: 0 1.5rem 2rem 1.5rem;
    text-align: center;
}

/* Name */
.supporter-card__name {
    font-size: 1.25rem;
    font-weight: var(--font-bold);
    color: var(--dark-color);
    margin-bottom: 0.5rem;
    letter-spacing: 0.3px;
}

/* Location */
.supporter-card__location {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--gray-color);
    margin-bottom: 1.25rem;
    font-weight: var(--font-medium);
}

.supporter-card__flag {
    font-size: 1.2rem;
    display: flex;
    align-items: center;
}

/* Message Quote */
.supporter-card__message {
    position: relative;
    padding: 1.25rem;
    background: linear-gradient(135deg, 
        rgba(248, 249, 250, 0.8) 0%, 
        rgba(255, 255, 255, 0.5) 100%
    );
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
    margin-bottom: 1.25rem;
    min-height: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.supporter-card__quote-icon {
    position: absolute;
    top: 1rem;
    left: 1rem;
    font-size: 1.5rem;
    color: var(--primary-color);
    opacity: 0.3;
}

.supporter-card__message p {
    font-size: 0.9rem;
    color: var(--gray-color);
    line-height: 1.7;
    font-style: italic;
    margin: 0;
    padding-left: 1.5rem;
    position: relative;
    z-index: 1;
}

/* Footer */
.supporter-card__footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.supporter-card__date {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--gray-color);
    padding: 0.5rem 1rem;
    background: rgba(214, 45, 140, 0.05);
    border-radius: 20px;
    font-weight: var(--font-medium);
}

.supporter-card__date i {
    color: var(--primary-color);
    font-size: 0.9rem;
}

/* ===== CTA SECTION ===== */
.featured-supporters__cta {
    background: linear-gradient(135deg, 
        rgba(214, 45, 140, 0.08) 0%,
        rgba(123, 45, 126, 0.05) 50%,
        rgba(248, 158, 59, 0.05) 100%
    );
    border-radius: 24px;
    padding: 3.5rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(214, 45, 140, 0.1);
    box-shadow: 0 8px 24px rgba(214, 45, 140, 0.08);
}

.featured-supporters__cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, 
        rgba(214, 45, 140, 0.1) 0%, 
        transparent 70%
    );
    animation: rotate-gradient 20s linear infinite;
    pointer-events: none;
}

@keyframes rotate-gradient {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.featured-supporters__cta-content {
    position: relative;
    z-index: 1;
}

.featured-supporters__cta-title {
    font-size: 2.25rem;
    font-weight: var(--font-bold);
    color: var(--dark-color);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.featured-supporters__cta-text {
    font-size: 1.15rem;
    color: var(--gray-color);
    line-height: 1.8;
    margin-bottom: 2.5rem;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.featured-supporters__cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}

@media screen and (min-width: 576px) {
    .featured-supporters__cta-buttons {
        flex-direction: row;
        gap: 1.5rem;
    }
}

.featured-supporters__cta-buttons .btn {
    padding: 1.25rem 2.5rem;
    font-size: 1.05rem;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 4px 16px rgba(214, 45, 140, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.featured-supporters__cta-buttons .btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(214, 45, 140, 0.3);
}

.featured-supporters__cta-buttons .btn--secondary {
    background: var(--white-color);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.featured-supporters__cta-buttons .btn--secondary:hover {
    background: var(--primary-color);
    color: var(--white-color);
}

/* ===== RESPONSIVE ADJUSTMENTS ===== */
@media screen and (max-width: 575px) {
    .supporter-card__header {
        padding: 1.5rem 1rem 1rem 1rem;
    }
    
    .supporter-card__content {
        padding: 0 1rem 1.5rem 1rem;
    }
    
    .supporter-card__avatar {
        width: 85px;
        height: 85px;
        font-size: 2rem;
    }
    
    .supporter-card__name {
        font-size: 1.1rem;
    }
    
    .supporter-card__message {
        min-height: 90px;
        padding: 1rem;
    }
    
    .supporter-card__message p {
        font-size: 0.85rem;
        padding-left: 1rem;
    }
    
    .supporter-card__quote-icon {
        font-size: 1.2rem;
    }
    
    .featured-supporters__cta {
        padding: 2.5rem 1.5rem;
    }
    
    .featured-supporters__cta-title {
        font-size: 1.75rem;
    }
    
    .featured-supporters__cta-text {
        font-size: 1rem;
    }
    
    .featured-supporters__cta-buttons .btn {
        width: 100%;
        justify-content: center;
    }
}

@media screen and (min-width: 768px) and (max-width: 991px) {
    .supporter-card__avatar {
        width: 90px;
        height: 90px;
        font-size: 2.2rem;
    }
}

/* ===== ANIMATIONS ===== */
@keyframes pulse-soft {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.02);
    }
}

.supporter-card__badge {
    animation: pulse-soft 3s ease-in-out infinite;
}

/* Hover effect for card shimmer */
.supporter-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255, 255, 255, 0.3) 50%,
        transparent 70%
    );
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
    transition: transform 0.6s ease;
}

.supporter-card:hover::after {
    transform: translateX(100%) translateY(100%) rotate(45deg);
}
