/* Desert Path Marketing Landing Page - Page 13929 */

/* Hide the RHJ site header and footer on this landing page */
.page-id-13929 .tdb-header-wrap {
    display: none !important;
}
.page-id-13929 .td-footer-wrapper,
.page-id-13929 .td-sub-footer-container {
    display: none !important;
}

/* Form styling */
.page-id-13929 .gform_wrapper {
    max-width: 600px;
    margin: 0 auto;
}
.page-id-13929 .gform_wrapper input[type=text],
.page-id-13929 .gform_wrapper input[type=email],
.page-id-13929 .gform_wrapper input[type=tel],
.page-id-13929 .gform_wrapper textarea {
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 12px;
    font-size: 16px;
}
.page-id-13929 .gform_wrapper textarea {
    min-height: 120px;
}
.page-id-13929 .gform_wrapper .gform_button {
    background-color: #4ea1a8 !important;
    color: #fff !important;
    border: none;
    border-radius: 4px;
    padding: 14px 40px;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s;
}
.page-id-13929 .gform_wrapper .gform_button:hover {
    background-color: #3d8a90 !important;
}

/* Floating Contact Us button */
#dp-contact-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #4ea1a8;
    color: #fff;
    border: none;
    border-radius: 30px;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    z-index: 9998;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    transition: background-color 0.3s, transform 0.2s;
    font-family: inherit;
}
#dp-contact-btn:hover {
    background-color: #3d8a90;
    transform: scale(1.05);
}

/* Modal overlay */
#dp-contact-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.6);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
}
#dp-contact-overlay.dp-active {
    display: flex;
}

/* Modal box */
#dp-contact-modal {
    background: #fff;
    border-radius: 12px;
    padding: 40px;
    max-width: 560px;
    width: 90%;
    max-height: 85vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    animation: dp-modal-in 0.3s ease;
}
@keyframes dp-modal-in {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

#dp-contact-modal h3 {
    font-size: 28px;
    color: #4ea1a8;
    margin: 0 0 20px 0;
    text-align: center;
}

/* Close button */
#dp-contact-close {
    position: absolute;
    top: 12px;
    right: 16px;
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    line-height: 1;
}
#dp-contact-close:hover {
    color: #333;
}

/* Style form inside modal */
#dp-contact-modal .gform_wrapper {
    max-width: 100%;
}
