/*
Theme Name: RealHomes Child
Template: realhomes
Version: 1.0
*/

/* ================================
   1. FLOATING BUTTONS (WHATSAPP / ENQUIRE)
================================ */

.floating-contact-wrapper {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 99999;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-end;
}

.floating-btn {
    padding: 12px 22px;
    border-radius: 50px;
    text-decoration: none !important;
    font-family: sans-serif;
    font-weight: bold;
    display: flex;
    align-items: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    color: #ffffff !important;
    min-width: 175px;
    justify-content: flex-start;
}

.whatsapp-btn { background-color: #25D366; }
.enquire-btn { background-color: #1aa3a3; }

.floating-btn:hover {
    transform: translateX(-5px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}

.btn-icon {
    margin-right: 10px;
    font-size: 20px;
    flex-shrink: 0;
}

/* ================================
   2. FORM SUBMIT BUTTON
================================ */

.wpforms-submit {
    background-color: #1aa3a3 !important;
    color: #ffffff !important;
    border-radius: 50px !important;
    padding: 12px 35px !important;
    font-weight: bold !important;
    border: none !important;
    transition: all 0.3s ease !important;
}

.wpforms-submit:hover {
    background-color: #ff9800 !important;
}

/* ================================
   3. RECAPTCHA NOTICE
================================ */

.recaptcha-notice {
    font-size: 11px !important;
    color: #888 !important;
    margin-top: 5px !important;
    margin-bottom: 25px !important;
    line-height: 1.4 !important;
    display: block !important;
}

.recaptcha-notice a {
    color: #1aa3a3 !important;
    text-decoration: underline !important;
}

.grecaptcha-badge { 
    visibility: hidden !important; 
}

/* ================================
   4. SLOGAN UNDER TITLE
================================ */

.entry-title + p {
    font-size: 17px !important;
    color: #555 !important;
    font-style: italic;
    margin-bottom: 20px !important;
    border-left: 3px solid #ff9800;
    padding-left: 15px;
}

/* ================================
   5. MOBILE
================================ */

@media (max-width: 768px) {
    .btn-text { display: none; }
    
    .floating-contact-wrapper {
        bottom: 120px !important;
        right: 15px !important;
    }

    .floating-btn {
        padding: 0;
        border-radius: 50% !important;
        width: 55px !important;
        height: 55px !important;
        min-width: 55px !important;
        justify-content: center !important;
    }

    .btn-icon { 
        margin-right: 0; 
        font-size: 24px; 
    }

    .wpforms-container {
        margin-top: 20px !important;
    }

    h1.entry-title {
        font-size: 22px !important;
    }
}

