/* Floating Contact Trigger Button */
#contactTrigger {
    position: fixed;
    right: 25px;
    bottom: 25px;
    background: #007bff;
    color: #fff;
    padding: 12px 18px;
    display: flex;
    align-items: center;
    border-radius: 30px;
    cursor: pointer;
    z-index: 9999;
    transition: 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
#contactTrigger img {
    width: 26px;
    margin-right: 10px;
}
#contactTrigger .trigger-text {
    font-size: 15px;
    font-weight: 600;
}

/* Popup Overlay */
#contactPopup {
    display: none;
    position: fixed;
    top: 0; left: 0;
    height: 100%; width: 100%;
    background: rgba(0,0,0,0.6);
    z-index: 10000;
    justify-content: center;
    align-items: center;
}

/* Popup Form Box */
.contact-popup-box {
    background: #fff;
    padding: 25px;
    width: 600px;
    border-radius: 12px;
    position: relative;
}
.contact-close {
    position: absolute;
    right: 15px;
    top: 10px;
    font-size: 30px;
    cursor: pointer;
}

/* Form Design */
.contact-popup-form .form-row {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}
.contact-popup-form input,
.contact-popup-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 8px;
}
.contact-popup-form textarea {
    height: 140px;
    resize: vertical;
}

.contact-btn {
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 10px;
    align-items: center;
    padding: 14px;
    font-size: 17px;
    background: #007bff;
    color: #fff;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: 0.3s ease;
}
.contact-btn:hover {
    background: #0056b3;
}
.contact-btn img {
    width: 20px;
}

/* Minified Icon Mode on Scroll */
.minified .trigger-text {
    display: none;
}
.minified {
    padding: 10px !important;
    border-radius: 50% !important;
}
