.direct-contact-section {
    background: #000;
    color: #fff;
    padding: 120px 5%;
    min-height: 80vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.contact-flex-container {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 80px;
}

/* --- Left Side (Image) --- */
.contact-visual {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
}

.floating-img {
    width: 100%;
    max-width: 600px;
    height: auto;
    z-index: 2; 
}

.visual-glow {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(224, 224, 224, 0.15) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

/* --- Right Side (Text) --- */
.contact-content {
    flex: 1;
    max-width: 550px;
}

.section-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(3rem, 5vw, 4.5rem);
    font-weight: 700;
    margin-bottom: 25px;
    letter-spacing: -2px;
}

.section-desc {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #ccc;
    margin-bottom: 40px;
    font-weight: 300;
}

/* --- Buttons --- */
.primary-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #ffffff; /* Accenture Purple */
    color: #000000;
    padding: 18px 35px;
    border-radius: 10px; /* Sharp professional look */
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: 0.3s;
    margin-bottom: 30px;
}

.primary-btn:hover {
    background: #000000;
    color: rgb(255, 255, 255);
    transform: translateY(-3px);
    box-shadow: 1px 10px 0px 5px rgb(255, 255, 255);
}

.secondary-links {
    display: flex;
    gap: 30px;
}

.text-link {
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
    opacity: 0.8;
    transition: 0.3s;
    border-bottom: 1px solid transparent;
}

.text-link:hover {
    opacity: 1;
    border-bottom: 1px solid #ffffff;
}

/* --- Mobile Responsive --- */
@media (max-width: 992px) {
    .contact-flex-container {
        flex-direction: column-reverse; /* Image neeche, text upar */
        text-align: center;
        gap: 50px;
    }
    
    .contact-content {
        max-width: 100%;
    }
    
    .secondary-links {
        justify-content: center;
    }
    
    .floating-img {
        max-width: 100%;
    }
}