/* --- SKILLS SECTION STYLES --- */
    .skills-section {
        position: relative;
        padding: 120px 10%;
        overflow: hidden;
    }

    .skills-header {
        text-align: center;
        max-width: 800px;
        margin: 0 auto 60px;
    }

    .skills-title {
        font-size: clamp(2.5rem, 5vw, 3.5rem);
        margin-bottom: 20px;
        font-weight: 800;
        letter-spacing: -1px;
    }

    .skills-subtitle {
        color: var(--text-muted);
        font-size: 1.1rem;
        line-height: 1.6;
    }

    .skills-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 30px;
        position: relative;
        z-index: 2;
    }

    /* --- PREMIUM SKILL CARDS --- */
    .skill-card {
        background: var(--glass-bg);
        border: 1px solid var(--card-border);
        padding: 40px;
        border-radius: 30px;
        backdrop-filter: blur(20px);
        transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), 
                    border-color 0.4s ease, 
                    box-shadow 0.4s ease;
        display: flex;
        flex-direction: column;
        gap: 20px;
        animation: float 6s ease-in-out infinite;
    }

    @keyframes float {
        0%, 100% { transform: translateY(0); }
        50% { transform: translateY(-10px); }
    }

    .skill-card:nth-child(2) { animation-delay: 1s; }
    .skill-card:nth-child(3) { animation-delay: 2s; }

    .skill-card:hover {
        transform: translateY(-15px) scale(1.02);
        border-color: var(--primary-orange);
        box-shadow: 0 20px 40px rgba(255, 123, 0, 0.15);
    }

    .skill-icon {
        width: 60px;
        height: 60px;
        background: var(--gradient);
        border-radius: 15px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        margin-bottom: 10px;
        box-shadow: 0 10px 20px rgba(255, 123, 0, 0.3);
    }

    .skill-icon svg { width: 30px; height: 30px; }

    .skill-card h3 {
        font-size: 1.5rem;
        font-weight: 700;
        color: var(--text-main);
    }

    .skill-card p {
        color: var(--text-muted);
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 10px;
    }

    /* --- PROGRESS BARS --- */
    .progress-container {
        margin-top: auto;
    }

    .progress-label {
        display: flex;
        justify-content: space-between;
        margin-bottom: 10px;
        font-weight: 600;
        font-size: 0.85rem;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .percentage { color: var(--primary-orange); }

    .progress-bar-bg {
        width: 100%;
        height: 8px;
        background: rgba(128, 128, 128, 0.1);
        border-radius: 10px;
        overflow: hidden;
        position: relative;
    }

    .progress-fill {
        height: 100%;
        background: var(--gradient);
        width: 0%;
        border-radius: 10px;
        transition: width 2s cubic-bezier(0.16, 1, 0.3, 1);
        position: relative;
        box-shadow: 0 0 15px var(--primary-orange);
    }

    /* Cinematic background glow */
    .skills-bg-glow {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 600px;
        height: 600px;
        background: radial-gradient(circle, rgba(255, 123, 0, 0.1) 0%, transparent 70%);
        pointer-events: none;
        z-index: 1;
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
        .skills-section { padding: 80px 5%; }
        .skill-card { padding: 30px; }
    }