/* ===================================================
   MODERN RESUME SECTION
   =================================================== */

.resume-section-modern {
    padding: 6rem 0;
    background: linear-gradient(135deg, #0A0E27 0%, #1a1f3a 50%, #0f1729 100%);
    position: relative;
    overflow: hidden;
}

.resume-section-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(0, 229, 255, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

/* Title */
.resume-main-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    font-weight: 800;
    text-align: center;
    margin-bottom: 1rem;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.resume-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 4rem;
}

/* Content Grid */
.resume-content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Highlights Card */
.resume-highlights-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
    border: 1px solid rgba(0, 229, 255, 0.2);
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
}

.resume-highlights-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-cyan);
    box-shadow: 0 25px 70px rgba(0, 229, 255, 0.2);
}

.highlights-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--accent-cyan);
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.highlights-title i {
    font-size: 1.5rem;
}

/* Highlight Items */
.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1.5rem;
    background: rgba(0, 229, 255, 0.05);
    border-radius: 16px;
    margin-bottom: 1.25rem;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.highlight-item:hover {
    background: rgba(0, 229, 255, 0.1);
    transform: translateX(10px);
    border-color: rgba(0, 229, 255, 0.3);
}

.highlight-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
    filter: drop-shadow(0 4px 8px rgba(0, 229, 255, 0.3));
}

.highlight-content h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.25rem;
}

.highlight-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    margin: 0;
}

/* Download Card */
.resume-download-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
    border: 1px solid rgba(123, 47, 247, 0.3);
    border-radius: 24px;
    padding: 3rem 2.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    text-align: center;
    transition: all 0.4s ease;
}

.resume-download-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-purple);
    box-shadow: 0 25px 70px rgba(123, 47, 247, 0.2);
}

.resume-icon-wrapper {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 40px rgba(0, 229, 255, 0.4);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.resume-icon-wrapper i {
    font-size: 3rem;
    color: #fff;
}

.download-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
}

.download-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

/* Stats Grid */
.resume-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.stat-item {
    background: rgba(0, 229, 255, 0.1);
    border: 1px solid rgba(0, 229, 255, 0.2);
    border-radius: 16px;
    padding: 1.5rem 1rem;
    transition: all 0.3s ease;
}

.stat-item:hover {
    background: rgba(0, 229, 255, 0.15);
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 229, 255, 0.3);
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 900;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Download Button */
.resume-download-btn {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1.75rem 3rem;
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
    color: #fff;
    text-decoration: none;
    border-radius: 16px;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 15px 40px rgba(0, 229, 255, 0.4);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    margin-bottom: 2rem;
}

.resume-download-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.resume-download-btn:hover::before {
    left: 100%;
}

.resume-download-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 50px rgba(0, 229, 255, 0.6);
    color: #fff;
}

.btn-icon {
    font-size: 1.5rem;
}

.btn-text {
    font-size: 1.2rem;
    font-weight: 700;
}

.btn-subtext {
    font-size: 0.85rem;
    opacity: 0.9;
    font-weight: 500;
}

/* Quick Links */
.resume-quick-links {
    display: flex;
    justify-content: center;
    gap: 1.25rem;
}

.quick-link {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(0, 229, 255, 0.2);
    border-radius: 50%;
    color: var(--accent-cyan);
    font-size: 1.25rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.quick-link:hover {
    background: rgba(0, 229, 255, 0.2);
    border-color: var(--accent-cyan);
    transform: translateY(-3px) rotate(5deg);
    color: #fff;
    box-shadow: 0 8px 25px rgba(0, 229, 255, 0.4);
}

/* Responsive */
@media (max-width: 768px) {
    .resume-content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .resume-stats-grid {
        grid-template-columns: 1fr;
    }

    .resume-highlights-card,
    .resume-download-card {
        padding: 2rem 1.5rem;
    }

    .resume-download-btn {
        padding: 1.5rem 2rem;
        width: 100%;
    }
}