.contact-container {
    min-height: 100vh;
    background: linear-gradient(135deg, #1a0f3a 0%, #0f0a1f 50%, #050308 100%);
    padding: 60px 20px;
}

.profile-content {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 30px;
    padding: 24px;
    box-shadow: 0 8px 32px rgba(255,107,53,0.15);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.profile-image-container {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #fff;
    box-shadow: 0 8px 32px rgba(255,107,53,0.2);
    position: relative;
    margin-top: -5rem;
    background: #fff;
}

.profile-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-info {
    text-align: center;
    color: #1e1c1b;
    width: 100%;
    padding: 20px 20px 0 20px;
}

.profile-name {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #1e1c1b;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
    background: linear-gradient(135deg, #ff6b35 0%, #ff2d92 50%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.profile-title {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #3f3b36;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    align-items: flex-start;
    margin-top: 1rem;
    position: relative;
    width: 100%;
    max-width: 400px;
    padding: 20px 20px;
}

.contact-details::before {
    content: '';
    position: absolute;
    top: -0.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 140px;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%,
        rgba(255,107,53,0.3) 30%,
        rgba(255,107,53,0.3) 70%,
        transparent 100%
    );
}

.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    width: 100%;
    padding: 0 10px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    transition: transform 0.2s ease;
    padding: 5px;
    border-radius: 12px;
}

.contact-item:hover {
    transform: translateX(5px);
    background: rgba(255, 255, 255, 0.5);
}

.contact-item i {
    font-size: 1.2rem;
    color: #ff6b35;
    width: 42px;
    height: 42px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: all 0.2s ease;
    flex-shrink: 0;
    border: 1px solid rgba(255,107,53,0.2);
}

.contact-item:hover i {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    background: #ff6b35;
    color: #fff;
}

.contact-item div {
    text-align: left;
}

.contact-item h3 {
    font-size: 0.9rem;
    font-weight: 600;
    margin: 0 0 0.15rem 0;
    color: #1e1c1b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-item p {
    margin: 0;
    color: #3f3b36;
    font-size: 0.95rem;
}

.contact-item a {
    color: #ff6b35;
    text-decoration: none;
    transition: color 0.2s ease;
}

.contact-item a:hover {
    color: #00d4aa;
}

.contact-social {
    margin-top: 1rem;
    text-align: center;
    width: 100%;
    padding: 1.2rem 20px 0 20px;
    position: relative;
}

.contact-social::before {
    content: '';
    position: absolute;
    top: -0.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 140px;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%,
        rgba(255,107,53,0.3) 30%,
        rgba(255,107,53,0.3) 70%,
        transparent 100%
    );
}

.contact-social h3 {
    font-size: 0.9rem;
    font-weight: 600;
    margin: 0 0 1.2rem 0;
    color: #1e1c1b;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
}

.social-links {
    display: flex;
    gap: 0.8rem;
    justify-content: center;
    margin: 0;
    padding: 0;
    width: 100%;
}

.social-link {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff6b35;
    text-decoration: none;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    font-size: 1rem;
    border: 1px solid rgba(255,107,53,0.2);
}

.social-link:hover {
    transform: translateY(-2px);
    background: #00d4aa;
    color: #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* Responsive Design */
@media (max-width: 576px) {
    .contact-container {
        padding: 30px 15px;
        min-height: auto;
    }

    .profile-content {
        padding: 20px 15px;
        max-width: 400px;
        gap: 1rem;
    }

    .profile-image-container {
        width: 140px;
        height: 140px;
        margin-top: -3.5rem;
    }

    .profile-info {
        padding: 10px 15px 0 15px;
    }

    .profile-name {
        font-size: 1.8rem;
    }

    .profile-title {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .contact-details {
        padding: 10px 15px;
        gap: 1.5rem;
        margin-top: 0.5rem;
    }

    .contact-item {
        gap: 1rem;
    }

    .contact-item i {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }

    .contact-item h3 {
        font-size: 0.8rem;
        margin-bottom: 0.1rem;
    }

    .contact-item p {
        font-size: 0.9rem;
    }

    .contact-social {
        padding: 1.5rem 15px 0 15px;
    }

    .contact-social::before {
        top: 0;
    }

    .contact-social h3 {
        font-size: 0.8rem;
        margin-bottom: 1rem;
    }

    .social-links {
        gap: 0.6rem;
    }

    .social-link {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
    }
} 