* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial,sans-serif;
    color: white;
    background: #050816;
    overflow-x: hidden;
}

    /* SAME FOREGROUND TECHNIQUE AS 3D PAGE */

    body::before {
        content: "";
        position: fixed;
        inset: 0;
        z-index: -1;
        background-image: url("../assets/images/ForeGround.png");
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(6,10,35,.95);
    border-bottom: 1px solid rgba(255,255,255,.08);
    z-index: 1000;
}

.header-container {
    max-width: 1400px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 30px;
}

.logo a {
    color: white;
    text-decoration: none;
    font-size: 2rem;
    font-weight: bold;
}

.nav-menu {
    display: flex;
    gap: 30px;
}

    .nav-menu a {
        color: white;
        text-decoration: none;
    }

.header-btn {
    padding: 14px 26px;
    border-radius: 20px;
    text-decoration: none;
    color: white;
    font-weight: bold;
    background: linear-gradient( 90deg, #8b4dff, #2f8cff);
}

.contact-page {
    max-width: 1400px;
    margin: auto;
    padding: 120px 30px 60px;
}

.breadcrumb {
    margin-bottom: 25px;
    color: #d0b5ff;
}

.contact-layout {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 30px;
    align-items: start;
}

.profile-sidebar,
.contact-content,
.services-section {
    background: rgba(20,24,60,.45);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 25px;
}

.profile-sidebar {
    padding: 35px;
}

.profile-photo {
    width: 140px;
    height: 140px;
    display: block;
    margin: auto;
    margin-bottom: 20px;
}

.profile-sidebar h1 {
    text-align: center;
    margin-bottom: 15px;
}

.profile-role {
    text-align: center;
    color: #d0b5ff;
    margin-bottom: 10px;
}

.sidebar-divider {
    width: 80px;
    height: 3px;
    background: #b287ff;
    margin: 25px auto;
}

.info-card {
    background: rgba(255,255,255,.05);
    padding: 18px;
    border-radius: 15px;
    margin-bottom: 12px;
}

.resume-btn {
    display: block;
    text-align: center;
    margin-top: 20px;
    padding: 18px;
    border-radius: 15px;
    text-decoration: none;
    color: white;
    font-weight: bold;
    background: linear-gradient( 90deg, #8b4dff, #2f8cff);
}

.contact-content {
    padding: 40px;
}

.contact-badge {
    display: inline-block;
    padding: 10px 18px;
    border-radius: 50px;
    background: rgba(0,0,0,.35);
    margin-bottom: 25px;
}

.contact-content h2 {
    font-size: 4rem;
    margin-bottom: 20px;
}

    .contact-content h2 span {
        color: #b287ff;
    }

.contact-description {
    max-width: 700px;
    line-height: 1.8;
    margin-bottom: 35px;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.contact-box {
    background: rgba(255,255,255,.05);
    padding: 25px;
    border-radius: 18px;
}

.services-section {
    margin-top: 30px;
    padding: 40px;
}

    .services-section h2 {
        text-align: center;
        margin-bottom: 25px;
    }

.services-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 20px;
}

.service-card {
    background: rgba(255,255,255,.05);
    border-radius: 18px;
    padding: 25px;
}

@media(max-width:1000px) {

    .contact-layout {
        grid-template-columns: 1fr;
    }

    .contact-info-grid,
    .services-grid {
        grid-template-columns: repeat(2,1fr);
    }
}

@media(max-width:700px) {

    .contact-info-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }

    .contact-content h2 {
        font-size: 2.5rem;
    }
}
