@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.3);
    --primary-gradient: linear-gradient(135deg, #1e4d94 0%, #1d5fc2 100%);
    --accent-gradient: linear-gradient(135deg, #ffca28 0%, #ff8f00 100%);
    --card-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.07);
    --primary-color: #1e4d94;
}

body {
    font-family: 'Outfit', sans-serif !important;
}

.right-col {
    background: #f4f7fe;
    padding: 2rem !important;
    flex: 1;
    min-width: 0;
}

/* Glass Card Style */
.premium-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    box-shadow: var(--card-shadow);
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.premium-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px 0 rgba(31, 38, 135, 0.12);
}

/* Welcome Hero Section */
.hero-welcome {
    background: var(--primary-gradient);
    border-radius: 30px;
    padding: 3rem;
    color: white;
    position: relative;
    overflow: hidden;
    margin-bottom: 2rem;
}

.hero-welcome::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.hero-welcome h1 {
    font-weight: 800;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.hero-stat-item {
    text-align: center;
}

.hero-stat-item .value {
    font-size: 1.5rem;
    font-weight: 700;
    display: block;
}

.hero-stat-item .label {
    font-size: 0.8rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Action Buttons */
.action-btn-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.modern-btn {
    padding: 1rem 2rem;
    border-radius: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: none;
    text-align: center;
}

.btn-start-test {
    background: var(--primary-gradient);
    color: white !important;
    box-shadow: 0 10px 20px rgba(30, 77, 148, 0.2);
}

.btn-failed-test {
    background: #fff;
    color: #ef4444 !important;
    border: 2px solid #fee2e2;
}

.modern-btn:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* Section Titles */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    margin-top: 1rem;
}

.section-header h4 {
    font-weight: 700;
    color: #1e293b;
    font-size: 1.25rem;
    margin: 0;
}

/* AI Advises Box */
.ai-advisor-card {
    background: linear-gradient(135deg, #fff 0%, #fff9e6 100%);
    border-left: 5px solid #ffca28;
}

.ai-icon-wrapper {
    width: 50px;
    height: 50px;
    background: #fff4d1;
    color: #ff8f00;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* Social Stats Card */
.social-stats-card {
    background: white;
    border-radius: 24px;
    padding: 2rem;
    border: 1px solid #f1f5f9;
}

.social-stat-box {
    padding: 10px;
    transition: all 0.2s ease;
}

.social-stat-box:hover {
    background: #f8faff;
    border-radius: 16px;
}

.social-stat-box.border-end {
    border-right: 1px solid #edf2f7 !important;
}

.social-value {
    font-size: 1.75rem;
    font-weight: 800;
    color: #1e4d94;
    display: block;
}

.social-label {
    font-size: 0.75rem;
    color: #718096;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.progress-custom {
    height: 12px;
    background: #f1f5f9;
    border-radius: 10px;
    overflow: hidden;
}

.progress-bar-custom {
    background: var(--primary-gradient);
    border-radius: 10px;
}

/* Stats Grid - More prominent */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

@media (min-width: 1200px) {
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.stat-card-mini {
    padding: 2rem 1.5rem;
    border-radius: 24px;
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
    border: 1px solid #f1f5f9;
}

.stat-card-mini i {
    font-size: 2rem;
    width: 54px;
    height: 54px;
    background: #f8faff;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
}

.stat-card-mini .stat-value {
    font-size: 2rem;
    font-weight: 800;
    color: #1a202c;
    line-height: 1;
}

.stat-card-mini .stat-label {
    font-size: 0.8rem;
    color: #718096;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Recent Tests Activity List */
.test-activity-item {
    background: white;
    border-radius: 20px;
    padding: 1.25rem;
    margin-bottom: 1rem;
    border: 1px solid #f1f5f9;
    transition: all 0.3s ease;
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.test-activity-item:hover {
    transform: translateX(5px);
    border-color: var(--primary-color);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.test-icon-box {
    width: 40px;
    height: 40px;
    background: #eff6ff;
    color: var(--primary-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.test-info-content {
    flex-grow: 1;
}

.test-info-content h6 {
    margin: 0;
    font-weight: 700;
    color: #1e293b;
    font-size: 0.9rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    line-height: 1.4;
}

.test-meta-info {
    font-size: 0.75rem;
    color: #94a3b8;
    margin-top: 6px;
    display: flex;
    gap: 12px;
}

.test-progress-mini {
    height: 6px;
    background: #f1f5f9;
    border-radius: 10px;
    margin-top: 12px;
    overflow: hidden;
}

.test-progress-bar-mini {
    height: 100%;
    background: var(--primary-gradient);
    border-radius: 10px;
}

.test-info-content .small a:hover {
    opacity: 0.7;
}

/* Profile Specific Styles */
.profile-hero {
    background: var(--primary-gradient);
    border-radius: 30px;
    padding: 3rem 2rem;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-bottom: 2rem;
}

.profile-avatar-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 1rem;
}

.profile-avatar-wrapper .ratio {
    width: 150px;
    height: 150px;
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    padding: 4px;
    background: rgba(255, 255, 255, 0.1);
}

.profile-avatar-wrapper img {
    border: 2px solid white;
}

.upload-overlay-btn {
    position: absolute;
    bottom: 5px;
    right: 5px;
    width: 40px;
    height: 40px;
    background: white;
    color: var(--primary-color);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    transition: all 0.2s ease;
}

.upload-overlay-btn:hover {
    transform: scale(1.1);
}

.form-label-premium {
    font-weight: 700;
    font-size: 0.75rem;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    display: block;
}

.form-control-premium {
    background: #f8faff;
    border: 2px solid #edf2f7;
    border-radius: 12px;
    padding: 0.75rem 1rem;
    font-weight: 500;
    color: #1e293b;
    transition: all 0.2s ease;
    display: block;
    width: 100%;
}

.input-group>.form-control-premium {
    flex: 1 1 auto;
    width: 1%;
    margin-bottom: 0;
}

.input-group-text-premium {
    background: #f1f5f9;
    border: 2px solid #edf2f7;
    color: #64748b;
    padding: 0 1rem;
    display: flex;
    align-items: center;
    border-radius: 12px;
}

.input-group.premium-group {
    flex-wrap: nowrap;
}

.input-group.premium-group .input-group-text {
    border: 2px solid #edf2f7;
    background: #f8faff;
    border-right: none;
}

.input-group.premium-group .form-control-premium {
    border-left: none;
}

.form-control-premium:focus {
    background: white;
    border-color: #1d5fc2;
    box-shadow: 0 0 0 4px rgba(29, 95, 194, 0.1);
    outline: none;
    z-index: 3;
}

.social-pills-container {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.social-pill {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1.25rem;
    border-radius: 100px;
    font-size: 0.85rem;
    display: flex;
    flex-direction: column;
}

.social-pill .count {
    font-weight: 800;
    font-size: 1.1rem;
}

.social-pill .label {
    font-size: 0.65rem;
    text-transform: uppercase;
    opacity: 0.7;
    letter-spacing: 0.5px;
}

/* Country Selector Premium */
.country-trigger-premium {
    background: #f8faff;
    border: 2px solid #edf2f7;
    border-radius: 12px;
    padding: 0.75rem 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.country-trigger-premium:hover {
    border-color: #1d5fc2;
}

.country-dropdown-premium {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    z-index: 100;
    margin-top: 8px;
    border: 1px solid #f1f5f9;
    overflow: hidden;
    display: none;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.right-col>* {
    animation: fadeIn 0.5s ease forwards;
}

.right-col>*:nth-child(2) {
    animation-delay: 0.1s;
}

.right-col>*:nth-child(3) {
    animation-delay: 0.2s;
}

.right-col>*:nth-child(4) {
    animation-delay: 0.3s;
}

/* Statistics Dashboard Refinements */
.stats-kpi-card {
    background: white;
    border-radius: 20px;
    padding: 1.5rem;
    border: 1px solid #f1f5f9;
    display: flex;
    align-items: center;
    gap: 15px;
    height: 100%;
    transition: all 0.3s ease;
}

.stats-kpi-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.stats-kpi-icon {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.stats-kpi-info h6 {
    font-size: 0.75rem;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
    font-weight: 700;
}

.stats-kpi-info .value {
    font-size: 1.25rem;
    font-weight: 800;
    color: #1e293b;
    margin: 0;
}

.chart-container-premium {
    background: white;
    border-radius: 24px;
    padding: 2rem;
    border: 1px solid #f1f5f9;
    margin-bottom: 2rem;
}

.chart-container-premium h5 {
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Strengths and Weaknesses */
.analysis-card {
    background: white;
    border-radius: 24px;
    padding: 2rem;
    border: 1px solid #f1f5f9;
    height: 100%;
}

.analysis-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.analysis-list li {
    padding: 12px 0;
    border-bottom: 1px solid #f1f5f9;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
}

.analysis-list li:last-child {
    border-bottom: none;
}

.analysis-list .topic {
    font-weight: 600;
    color: #334155;
    flex: 1;
}

.analysis-list .percentage {
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 8px;
    font-size: 0.75rem;
}

.analysis-list .percentage.high {
    background: #ecfdf5;
    color: #059669;
}

.analysis-list .percentage.low {
    background: #fef2f2;
    color: #dc2626;
}

/* AI Advise List Inside Analysis Section */
.ai-advise-item {
    padding: 1rem;
    background: #fff9e6;
    border-left: 4px solid #ffca28;
    border-radius: 0 12px 12px 0;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: #856404;
}

/* Animations Expansion */
.right-col>*:nth-child(5) {
    animation-delay: 0.4s;
}

.right-col>*:nth-child(6) {
    animation-delay: 0.5s;
}

.right-col>*:nth-child(7) {
    animation-delay: 0.6s;
}

/* Global Premium Table Enhancements */
.premium-table-container {
    background: white;
    border-radius: 20px;
    border: 1px solid #edf2f7;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.03);
    overflow: hidden;
}

.premium-table-clean {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
}

.premium-table-clean thead th {
    background: #fcfdfe;
    padding: 1.25rem 1.5rem;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #94a3b8;
    border-bottom: 1px solid #f1f5f9;
}

.premium-table-clean tbody tr {
    transition: background 0.2s ease;
}

.premium-table-clean tbody tr:hover {
    background: #f8faff;
}

.premium-table-clean td {
    padding: 1.15rem 1.5rem;
    vertical-align: middle;
    border-bottom: 1px solid #f8fafc;
    color: #334155;
    font-size: 0.9rem;
}

.premium-table-clean tbody tr:last-child td {
    border-bottom: none;
}

/* Status Dot Pill */
.status-pill-soft {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 4px 12px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 0.8rem;
}

.status-pill-soft::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
}

.status-pill-soft.high {
    background: #ecfdf5;
    color: #065f46;
}

.status-pill-soft.high::before {
    background: #10b981;
}

.status-pill-soft.mid {
    background: #fffbeb;
    color: #92400e;
}

.status-pill-soft.mid::before {
    background: #f59e0b;
}

.status-pill-soft.low {
    background: #fef2f2;
    color: #991b1b;
}

.status-pill-soft.low::before {
    background: #ef4444;
}

/* Subtle Action Buttons */
.action-icon-btn {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    transition: all 0.2s;
    background: #f8fafc;
    border: 1px solid #edf2f7;
    text-decoration: none !important;
}

.action-icon-btn:hover {
    color: var(--primary-color);
    background: #eff6ff;
    border-color: #dbeafe;
    transform: translateY(-1px);
}

.premium-table-btn {
    padding: 6px 14px;
    border-radius: 10px;
    font-size: 0.8rem;
    font-weight: 700;
    text-decoration: none !important;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #f8fafc;
    border: 1px solid #edf2f7;
    color: #475569;
}

.premium-table-btn:hover {
    background: #eff6ff;
    border-color: #dbeafe;
    color: var(--primary-color);
    transform: translateY(-1px);
}

.premium-table-btn i {
    font-size: 1rem;
}

/* History Specific Styles */
.score-badge {
    padding: 6px 12px;
    border-radius: 8px;
    font-weight: 800;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.score-badge.high {
    background: #ecfdf5;
    color: #059669;
}

.score-badge.mid {
    background: #fffbeb;
    color: #d97706;
}

.score-badge.low {
    background: #fef2f2;
    color: #dc2626;
}

.history-action-btn {
    padding: 6px 16px;
    border-radius: 10px;
    font-size: 0.8rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.history-action-btn-primary {
    background: #eff6ff;
    color: var(--primary-color);
}

.history-action-btn-primary:hover {
    background: var(--primary-color);
    color: white;
}

.load-more-container {
    padding: 2rem 0;
    text-align: center;
}

.btn-load-more {
    background: white;
    border: 2px solid #edf2f7;
    color: #64748b;
    padding: 10px 30px;
    border-radius: 100px;
    font-weight: 700;
    transition: all 0.2s;
}

.btn-load-more:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
}

/* Ranking Specific Styles */
.ranking-podium {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 15px;
    margin-bottom: 3rem;
    padding-top: 1rem;
}

.podium-item {
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    width: 120px;
}

.podium-item:hover {
    transform: translateY(-10px);
}

.podium-avatar-container {
    position: relative;
    display: inline-block;
    margin-bottom: 12px;
}

.podium-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 4px solid white;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    object-fit: cover;
}

.podium-item.first {
    order: 2;
    width: 140px;
}

.podium-item.second {
    order: 1;
}

.podium-item.third {
    order: 3;
}

.podium-item.first .podium-avatar {
    width: 110px;
    height: 110px;
    border-color: #ffca28;
}

.podium-item.second .podium-avatar {
    border-color: #cbd5e0;
}

.podium-item.third .podium-avatar {
    border-color: #ed8936;
}

.podium-rank {
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.9rem;
    color: white;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.podium-item.first .podium-rank {
    background: #ffca28;
    color: #856404;
}

.podium-item.second .podium-rank {
    background: #cbd5e0;
    color: #4a5568;
}

.podium-item.third .podium-rank {
    background: #ed8936;
    color: white;
}

.podium-name {
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 2px;
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.podium-points {
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--primary-color);
}

/* Premium Table Styles */
.ranking-table-container {
    background: white;
    border-radius: 24px;
    padding: 0.5rem;
    border: 1px solid #f1f5f9;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    overflow: hidden;
}

.premium-table {
    margin-bottom: 0 !important;
}

.premium-table thead th {
    background: #f8faff;
    border: none;
    color: #64748b;
    text-transform: uppercase;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 1.25rem 1rem;
}

.premium-table tbody tr {
    transition: all 0.2s;
    border-bottom: 1px solid #f1f5f9;
}

.premium-table tbody tr:last-child {
    border-bottom: none;
}

.premium-table tbody tr:hover {
    background: #fcfdfe;
}

.premium-table td {
    padding: 1rem;
    vertical-align: middle;
    font-weight: 500;
    color: #1e293b;
    font-size: 0.9rem;
}

.rank-badge {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-weight: 800;
    background: #f1f5f9;
    color: #64748b;
}

.user-cell {
    display: flex;
    align-items: center;
    gap: 12px;
}

.user-cell img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #fff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.user-cell .name {
    font-weight: 700;
    color: #1e293b;
    text-decoration: none;
    transition: color 0.2s;
}

.user-cell .name:hover {
    color: var(--primary-color);
}

.user-cell .meta {
    font-size: 0.7rem;
    color: #94a3b8;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 2px;
}

.points-badge {
    background: #eff6ff;
    color: var(--primary-color);
    padding: 4px 12px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.85rem;
}

/* Toggle Styles */
.toggle-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.premium-toggle {
    background: #f1f5f9;
    padding: 6px;
    border-radius: 16px;
    display: inline-flex;
    gap: 5px;
}

.premium-toggle .btn-check+.btn {
    border: none;
    background: transparent;
    border-radius: 12px;
    color: #64748b;
    font-weight: 700;
    font-size: 0.85rem;
    padding: 8px 24px;
    transition: all 0.2s;
}

.premium-toggle .btn-check:checked+.btn {
    background: white;
    color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.your-rank-row {
    background: #f0f7ff !important;
    border-top: 2px solid var(--primary-color) !important;
}

/* Animations Expansion */
.right-col>*:nth-child(8) {
    animation-delay: 0.7s;
}

/* Support Page Enhancements */
.support-hero {
    background: var(--primary-gradient);
    border-radius: 30px;
    padding: 3rem;
    color: white;
    margin-bottom: 3rem;
    position: relative;
    overflow: hidden;
}

.support-hero h1 {
    font-weight: 800;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.support-hero p {
    opacity: 0.9;
    font-size: 1.1rem;
}

.premium-accordion {
    background: transparent;
    border: none;
}

.premium-accordion .accordion-item {
    background: white;
    border: 1px solid #f1f5f9;
    border-radius: 16px !important;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.premium-accordion .accordion-item:hover {
    border-color: var(--primary-color);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.premium-accordion .accordion-button {
    padding: 1.25rem 1.5rem;
    font-weight: 700;
    color: #1e293b;
    background: white;
    box-shadow: none !important;
    font-size: 1rem;
    border: none;
}

.premium-accordion .accordion-button:not(.collapsed) {
    color: var(--primary-color);
    background: #f8faff;
}

.premium-accordion .accordion-body {
    padding: 1.5rem;
    color: #64748b;
    line-height: 1.6;
    background: #f8faff;
}

.support-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    border: 1px solid #f1f5f9;
    height: 100%;
    transition: all 0.3s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.support-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.support-card-icon {
    width: 60px;
    height: 60px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin: 0 auto 1.5rem;
}

.support-card.whatsapp .support-card-icon {
    background: #ecfdf5;
    color: #10b981;
}

.support-card.email .support-card-icon {
    background: #eff6ff;
    color: #1d5fc2;
}

.support-card h4 {
    font-weight: 800;
    margin-bottom: 1rem;
    color: #1e293b;
}

.support-card p {
    color: #64748b;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}