
/* Contact Site Container */
.contact-site {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    pointer-events: none;
}

.contact-site > * {
    pointer-events: auto;
}

/* Contact Icons - Fixed Bottom Left */
.hero-contact-icons.d-flex.gap-3.mt-5 {
    position: fixed;
    bottom: 12px;
    right: 600px;
    margin: 0;
    z-index: 999;
}

.hero-contact-icon {
    width: 45px;
    height: 45px;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    background: #212529 !important;
    border-radius: 50%;
}

.hero-contact-icon:hover {
    transform: translateY(-3px);
    background: #343a40 !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Course Info Card - Fixed Bottom Right */
.hero-info-card {
    position: fixed;
    bottom: 0;
    right: 0;
    background: white;
    padding: 1.1rem 2rem;
    border-top-left-radius: 50px;
    border-top-right-radius: 0;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    z-index: 999;
}

.hero-info-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.hero-info-icon {
    width: 40px;
    height: 40px;
    font-size: 18px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.bg-orange {
    background: #f59e0b !important;
}

.bg-blue {
    background: #3b82f6 !important;
}

.text-orange {
    color: #f59e0b;
}

.text-blue {
    color: #3b82f6;
}

.hero-info-label {
    font-size: 11px;
    font-weight: 600;
    font-family: 'Be Vietnam Pro', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.hero-info-value {
    font-size: 14px;
    font-family: 'Be Vietnam Pro', sans-serif;
    font-weight: 700;
    line-height: 1.3;
    color: #1f2937;
}

@media (max-width: 991px) {
    /* Contact Icons - Add separation from image below */
    .hero-contact-icons.d-flex.gap-3.mt-5 {
        position: static;
        margin-top: 2rem !important;
        margin-bottom: 2rem !important;
        justify-content: flex-start;
    }
    
    /* Info Card - Overlapping bottom of image */
    .hero-info-card {
        position: relative !important;
        bottom: auto !important;
        right: auto !important;
        left: auto !important;
        width: 90%;
        max-width: 500px;
        margin: -30px auto 2rem auto;
        padding: 1.5rem;
        border-radius: 20px;
        flex-direction: column;
        gap: 1.5rem;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
        z-index: 10;
        background: white;
    }
    
    .hero-info-item {
        width: 100%;
    }
}