/*------------------------------------- Picture Affect & Contact CSS -----------------------------------------*/
.hover-zoom {
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.hover-zoom:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.3) !important;
}

/*----------------------Contact box on Computer -----------------------*/
.custom-contact-container {
    position: relative; 
    margin: 15px 0 20px 0; 
    padding: 15px; 
    background: #ffffff; 
    border: 2px solid #1e3a8a; 
    border-radius: 12px; 
    display: flex; 
    flex-wrap: wrap; 
    align-items: center; 
    justify-content: center; 
    gap: 15px; 
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}
.custom-contact-container .line-btn {
    display: flex; 
    align-items: center; 
    gap: 10px;
    text-decoration: none;
}
.custom-contact-container .phone-btn {
    display: flex; 
    align-items: center;
    text-decoration: none;
}
.mobile-phone-col {
    display: none;
}

/*--------------------Contact box on Mobile -------------------------*/
@media (max-width: 767px) {
    .custom-contact-container ~ .custom-contact-container {
        display: none !important;
    }

    .custom-contact-container {
        position: fixed !important;
        bottom: 0 !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        margin: 0 !important;
        padding: 10px 12px !important;
        background: #1e3a8a !important; 
        border: none !important;
        border-top: 3px solid #3b82f6 !important; 
        border-radius: 0 !important;
        z-index: 99999 !important;
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 10px !important;
        box-shadow: 0 -4px 20px rgba(0,0,0,0.2) !important;
    }
    .desktop-phone-layout {
        display: none !important;
    }
    .mobile-phone-col {
        display: flex !important;
        flex-direction: column !important;
        gap: 5px !important;
    }
    .custom-contact-container .line-btn {
        background: #06c755 !important; 
        padding: 8px 10px !important;
        border-radius: 50px !important;
        justify-content: center !important;
        color: #ffffff !important;
        font-weight: bold !important;
        font-size: 14px !important;
        height: 100%;
    }
    .custom-contact-container .line-btn img {
        width: 20px !important;
        height: 20px !important;
        border-radius: 4px !important;
    }
    .custom-contact-container .line-text-sub {
        display: none !important; 
    }
    .custom-contact-container .line-text-main {
        color: #ffffff !important;
        font-size: 14px !important;
        font-weight: 700 !important;
    }
    .custom-contact-container .phone-btn {
        background: #3b82f6 !important; 
        padding: 5px 10px !important;
        border-radius: 50px !important;
        justify-content: center !important;
        color: #ffffff !important;
        font-weight: bold !important;
        font-size: 14px !important;
        height: 100%;
    }
    .custom-contact-container .phone-btn svg {
        fill: #ffffff !important;
        width: 16px;
        height: 16px;
        margin-right: 5px;
    }
    .custom-contact-container .phone-text-label {
        color: #ffffff !important;
        font-size: 13px !important;
        font-weight: 700 !important;
    }
    body {
        padding-bottom: 75px !important;
    }
}