/* Floating Button */
.presentation-floating-btn {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background-color: var(--primary-light, #5effa1);
    color: #111;
    border: none;
    padding: 15px 25px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    z-index: 9999;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}
.presentation-floating-btn:hover {
    background-color: #3ddc84;
    transform: translateY(-3px);
    color: #111;
}

/* Modal Overlay */
.presentation-modal-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background-color: rgba(0,0,0,0.7);
    z-index: 10000;
    backdrop-filter: blur(5px);
}

/* Modal Content */
.presentation-modal {
    display: none;
    position: fixed;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    width: 90%;
    max-width: 500px;
    padding: 40px;
    border-radius: 12px;
    z-index: 10001;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.presentation-modal-close {
    position: absolute;
    top: 15px; right: 20px;
    font-size: 28px;
    color: #333;
    cursor: pointer;
    transition: color 0.3s;
}
.presentation-modal-close:hover {
    color: var(--primary-light, #5effa1);
}

.presentation-modal-title {
    margin-bottom: 15px;
    font-size: 24px;
    color: #000;
}
.presentation-modal-desc {
    margin-bottom: 25px;
    font-size: 14px;
    color: #666;
}

/* Form Styles */
#presentation-request-form input,
#presentation-request-form textarea {
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
}

#presentation-request-form select.pr-full-width-select {
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
}

#presentation-request-form input:focus,
#presentation-request-form textarea:focus,
#presentation-request-form select:focus {
    outline: none;
    border-color: var(--primary-light, #5effa1);
}

/* Phone Group */
.pr-phone-group {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}
.pr-phone-group input {
    margin-bottom: 0 !important;
    flex: 1;
}
.pr-country-code {
    width: 110px;
    padding: 12px 10px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    font-family: inherit;
    background-color: #fcfcfc;
}

/* Response Message */
#pr_form_message {
    padding: 12px;
    border-radius: 6px;
    font-size: 14px;
    text-align: center;
}
.pr-success {
    background-color: #e6f4ea;
    color: #1e4620;
    border: 1px solid #c3e6cb;
}
.pr-error {
    background-color: #fce8e6;
    color: #c5221f;
    border: 1px solid #f5c6cb;
}

@media (max-width: 768px) {
    .presentation-floating-btn {
        bottom: 20px;
        left: 20px;
        padding: 12px 20px;
        font-size: 14px;
        z-index: 999999;
    }
    .presentation-modal {
        padding: 30px 20px;
    }
}

/* Custom Submit Button */
.pr-submit-btn {
    background-color: var(--primary-light, #5effa1);
    color: #111;
    border: none;
    padding: 12px 20px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    width: 100%;
    margin-top: 10px;
}
.pr-submit-btn:hover {
    background-color: #3ddc84;
}
