
/*-----------------------------------------------------------------------------------*/
/*-----------------------------------------------------------------------------------*/
/*-----------------------------------------------------------------------------------*/

/* ==========================================================================
   BITS-FORGE CONTACT PAGE STYLES
   ========================================================================== */

.contact-section {
    padding: 210px 5% 80px; /* High padding-top to clear your fixed navbar */
    background-color: #112240;
    min-height: 100vh;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr; /* Balanced split */
    gap: 100px;
    max-width: 1300px;
    margin: 0 auto;
}

/* --- LEFT SIDE: THE EMAIL COLUMN --- */
.contact-sidebar {
    display: flex;
    flex-direction: column;
}

.contact-sidebar h3 {
    font-family: var(--orbitron);
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 50px;
    letter-spacing: 3px;
    text-transform: uppercase;
    border-left: 4px solid var(--sky-blue);
    padding-left: 20px;
}

.contact-links-column {
    display: flex;
    flex-direction: column;
    gap: 45px;
}

.email-item {
    display: flex;
    flex-direction: column;
}

.email-item label {
    color: var(--sky-blue);
    font-family: var(--orbitron);
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
    opacity: 0.8;
}

/* WhatsApp Direct Integration Styling */
.phone-row-wrapper {
    display: flex;
    align-items: center;
    gap: 32px;
        }

.whatsapp-direct-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), filter 0.3s ease;
        }

.whatsapp-icon-img {
    width: 24px;
    height: 24px;
    object-fit: contain;
    filter: drop-shadow(0 0 4px rgba(0, 210, 255, 0.2));
        }

        /* Hover Scale Effect */
.whatsapp-direct-btn:hover {
    transform: scale(1.25);
    filter: drop-shadow(0 0 10px #25D366) brightness(1.1);
        }

/* The Interactive Email Span */
.copy-email {
    display: inline-block;
    color: var(--white);
    font-size: 1.3rem;
    font-family: var(--orbitron);
    cursor: pointer;
    position: relative; /* For the 'Copied' bubble */
    width: fit-content;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* THE HOVER: Scaling and Neon Glow */
.copy-email:hover {
    transform: scale(1.1) translateX(10px);
    color: var(--sky-blue);
    text-shadow: 0 0 15px var(--sky-blue), 
                 0 0 30px rgba(0, 210, 255, 0.3);
}

/* --- Sidebar Social Icons --- */
.social-matrix-sidebar {
    display: flex;
    gap: 20px;
    margin-top: 20px; /* Space below the last email */
    align-items: center;
}

.social-matrix-sidebar .social-icon img {
    width: 28px; /* Slightly smaller for the sidebar */
    height: 28px;
    object-fit: contain;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    filter: brightness(0.8);
}

/* Hover Effect: Scale + Sky Blue Glow */
.social-matrix-sidebar .social-icon:hover img {
    transform: scale(1.2);
    filter: brightness(1) drop-shadow(0 0 8px var(--sky-blue));
}

/* Discord Rotation for Sidebar */
@keyframes sidebarDiscordSpin {
    from { transform: scale(1.2) rotate(0deg); }
    to { transform: scale(1.2) rotate(360deg); }
}

.social-matrix-sidebar .discord-link:hover img {
    animation: sidebarDiscordSpin 1.2s linear infinite;
    filter: brightness(1) drop-shadow(0 0 12px var(--sky-blue));
}

/* --- RIGHT SIDE: VISUAL & PITCH --- */
.contact-visual-box {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* Image Container with Pulse Border */
.contact-image-wrapper {
    position: relative;
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(0, 210, 255, 0.2);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
    animation: pulseBorder 4s infinite ease-in-out;
}

.contact-img {
    width: 100%;
    height: 400px; /* Fixed height for consistency */
    object-fit: cover;
    display: block;
    filter: brightness(0.7) grayscale(20%);
    transition: transform 0.8s ease, filter 0.8s ease;
}

.contact-image-wrapper:hover .contact-img {
    filter: brightness(1) grayscale(0%);
    transform: scale(1.05);
}

/* Persuasion Text Block */
.contact-pitch h2 {
    font-family: var(--orbitron);
    color: var(--white);
    font-size: 1.8rem;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.contact-pitch p {
    color: var(--slate);
    line-height: 1.8;
    font-size: 1.05rem;
    margin-bottom: 25px;
}

.pitch-highlight {
    color: var(--sky-blue) !important;
    font-family: var(--orbitron);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 0.85rem;
    background: rgba(0, 210, 255, 0.05);
    padding: 15px 20px;
    border-radius: 5px;
    display: inline-block;
}

/* --- ANIMATIONS & UTILITIES --- */
@keyframes pulseBorder {
    0% { border-color: rgba(0, 210, 255, 0.1); box-shadow: 0 0 0px rgba(0, 210, 255, 0); }
    50% { border-color: rgba(0, 210, 255, 0.6); box-shadow: 0 0 20px rgba(0, 210, 255, 0.2); }
    100% { border-color: rgba(0, 210, 255, 0.1); box-shadow: 0 0 0px rgba(0, 210, 255, 0); }
}

/* Location Text */
.location-info {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.location-info label {
    color: var(--sky-blue);
    font-family: var(--orbitron);
    font-size: 0.6rem;
    letter-spacing: 3px;
    display: block;
    margin-bottom: 10px;
}

.location-info p {
    color: var(--white);
    font-family: var(--orbitron);
    font-size: 0.9rem;
    opacity: 0.8;
}

/* --- RESPONSIVE DESIGN --- */
@media (max-width: 1024px) {
    .contact-container {
        grid-template-columns: 1fr; /* Stack on tablet/mobile */
        gap: 60px;
    }
    
    .contact-section {
        padding-top: 120px;
    }
    
    .contact-img {
        height: 300px;
    }
}




/*-----------------------------------------------------------------------------------*/
/*-----------------------------------------------------------------------------------*/
/*-----------------------------------------------------------------------------------*/

/* Footer */
