/* --- CONTACT US PAGE CSS --- */

/* Right Side: Contact Info Card */
.contact-info-card {
    background: linear-gradient(135deg, #0c0e1b 0%, #1e293b 100%); /* Vanguard Deep Navy */
}

.contact-watermark {
    position: absolute;
    bottom: -30px;
    right: -20px;
    font-size: 200px;
    color: rgba(255, 255, 255, 0.03); /* Extremely faint white watermark */
    z-index: 1;
    pointer-events: none;
    transform: rotate(-15deg);
}

.contact-icon-box {
    width: 46px;
    height: 46px;
    background-color: #20b038; /* Vanguard Green */
    color: #ffffff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: 0 4px 10px rgba(32, 176, 56, 0.3);
}

/* Hover Utilities */
.hover-text-green:hover {
    color: #20b038 !important;
}

/* Social Media Circles */
.social-circle {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-circle:hover {
    background-color: #20b038;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(32, 176, 56, 0.4);
}

/* Mobile Tweak for Form Button */
@media (max-width: 767.98px) {
    .w-md-auto {
        width: 100% !important; /* Button takes full width on phones */
    }
    .map-wrapper {
        height: 350px !important; /* Make map slightly shorter on mobile */
    }
    .mail-text{
        font-size: 14px !important; /* Slightly smaller email text on mobile */
    }
}
@media (min-width: 768px) {
    .w-md-auto {
        width: auto !important; /* Button sizes to content on tablets/desktops */
    }
}