/* HOME SECTION - REFACTORED */

#home-section {
    max-width: 1600px;
    margin: 0 auto;
    padding: 40px 30px;
}

.home-page-header {
    text-align: center;
    margin-bottom: 40px;
    padding: 30px;
    background: linear-gradient(135deg, rgba(30, 40, 70, 0.95) 0%, rgba(20, 30, 50, 0.98) 100%);
    border-radius: 24px;
    border: 3px solid rgba(79, 195, 247, 0.4);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
}

.home-page-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    text-shadow: 0 4px 20px rgba(79, 195, 247, 0.6);
}

.home-page-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
}

.home-action-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 35px;
    margin-bottom: 40px;
}

.home-action-card {
    background: linear-gradient(135deg, rgba(30, 40, 70, 0.95) 0%, rgba(20, 30, 50, 0.98) 100%);
    border-radius: 24px;
    padding: 35px;
    border: 3px solid rgba(79, 195, 247, 0.4);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    min-height: 320px;
    display: flex;
    flex-direction: column;
}

.home-action-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(79, 195, 247, 0.1) 0%, transparent 70%);
    animation: cardGlow 5s ease-in-out infinite;
    pointer-events: none;
}

@keyframes cardGlow {
    0%, 100% { transform: translate(0, 0) rotate(0deg); opacity: 0.5; }
    50% { transform: translate(30px, -30px) rotate(180deg); opacity: 0.8; }
}

.home-action-card:hover {
    transform: translateY(-8px);
    border-color: rgba(79, 195, 247, 0.7);
    box-shadow: 0 12px 40px rgba(79, 195, 247, 0.4);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.card-icon {
    font-size: 3rem;
    filter: drop-shadow(0 4px 15px rgba(79, 195, 247, 0.6));
    animation: iconFloat 3s ease-in-out infinite;
}

@keyframes iconFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.card-title {
    font-size: 1.5rem;
    font-weight: 900;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.card-description {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 20px;
}

.card-stats {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.stat-item {
    flex: 1;
    padding: 12px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    text-align: center;
    border: 2px solid rgba(79, 195, 247, 0.2);
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 900;
    color: #4fc3f7;
    display: block;
}

.stat-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
}

.card-actions {
    display: flex;
    gap: 10px;
}

.action-btn {
    flex: 1;
    padding: 14px 20px;
    background: linear-gradient(135deg, #4fc3f7 0%, #0288d1 100%);
    border: 2px solid rgba(79, 195, 247, 0.6);
    border-radius: 12px;
    color: #fff;
    font-weight: 800;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.action-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.action-btn:hover::before {
    width: 300px;
    height: 300px;
}

.action-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(79, 195, 247, 0.5);
}

.action-btn.secondary {
    background: linear-gradient(135deg, rgba(79, 195, 247, 0.3) 0%, rgba(0, 188, 212, 0.3) 100%);
}

@media (max-width: 768px) {
    .home-action-cards {
        grid-template-columns: 1fr;
    }
}
