/* Contact Page Styles */
.contact-container {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: url('../img/bg.png') center / cover;
    background-size: cover;
    background-position: center;
    padding: 120px 20px 20px;
}

.contact-box {
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 40px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    font-family: 'Poppins', sans-serif;
    max-width: 600px;
    width: 100%;
}

.contact-box h1 {
    margin: 0 0 10px 0;
    font-size: 2.5em;
    font-weight: 700;
    color: #ffffff;
    text-shadow: rgb(0, 0, 0) 1px 0 30px;
}

.contact-intro {
    color: #dedede;
    margin-bottom: 40px;
    font-size: 1.1em;
    padding: 0;
}

.contact-sections {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    margin-bottom: 40px;
}

.contact-section {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 25px;
    transition: all 0.3s ease;
}

.contact-section:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: #6543ff;
    transform: translateY(-2px);
}

.contact-section h3 {
    color: #6543ff;
    font-size: 1.3em;
    font-weight: 600;
    margin: 0 0 15px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.contact-section p {
    margin: 0;
    padding: 0;
    font-size: 1.1em;
}

.contact-section a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-section a:hover {
    color: #6543ff;
}

.contact-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
}

.contact-link {
    color: #dedede;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    font-size: 0.9em;
}

.contact-link:hover {
    color: #6543ff;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .contact-container {
        padding: 100px 15px 15px;
    }
    
    .contact-box {
        padding: 30px 20px;
    }
    
    .contact-box h1 {
        font-size: 2em;
    }
    
    .contact-links {
        flex-direction: column;
        gap: 15px;
    }
}