.resume-header {
    text-align: center;
    margin-bottom: 40px;
}

.resume-header h1 {
    font-size: 3.5rem;
    font-weight: 900;
    text-transform: uppercase;
    color: #ffffff;
    margin: 0;
}

.contact-container {
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    text-align: center;
}

.contact-header {
    margin-bottom: 50px;
}

.contact-header h1 {
    font-size: 3.5rem;
    margin-bottom: 15px;
    color: #ffffff;
    font-weight: 700;
}

.contact-header p {
    color: #ffffff;
    font-size: 1.2rem;
    max-width: 600px;
    opacity: 0.8;
}

.contact-links {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    max-width: 400px;
}

.contact-link {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 30px 40px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #ffffff;
    font-size: 1.1rem;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.contact-link:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.contact-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: #fff;
    opacity: 0.4;
}

.contact-link span:first-child {
    font-weight: 800;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-link span:last-child {
    color: #888;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.contact-link:hover span:last-child {
    color: #fff;
}

.back-link {
    position: fixed;
    top: 30px;
    left: 30px;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    font-size: 0.9rem;
    z-index: 100;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    color: white;
}

.back-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(-5px);
}

@media (max-width: 768px) {
    .contact-header h1 {
        font-size: 2.5rem;
    }
}