/* ================================================
   Contact Page Social Buttons - Premium Overhaul
   ================================================ */
.contact-social-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    margin-top: 35px;
}

.contact-social-btn {
    width: 55px;
    height: 55px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff !important;
    font-size: 20px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.contact-social-btn:hover {
    background: #ffd700;
    color: #000 !important;
    transform: translateY(-8px) scale(1.1);
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.4);
    border-color: #ffd700;
}

.contact-social-btn i {
    transition: transform 0.4s ease;
}

.contact-social-btn:hover i {
    transform: scale(1.1);
}

/* ================================================
   Mobile Overflow Fixes for Career Title
   ================================================ */
@media (max-width: 767px) {
    .ar-about-us-4-hero-ptb {
        display: none !important;
    }

    .tp-career-title {
        font-size: 42px !important;
        line-height: 1.1 !important;
        letter-spacing: -1px !important;
        overflow-wrap: break-word !important;
        word-wrap: break-word !important;
    }
}

@media (max-width: 480px) {
    .tp-career-title {
        font-size: 34px !important;
    }

    .tp-contact-us-ptb {
        padding-top: 60px !important;
        padding-bottom: 60px !important;
    }
}