/* ===========================================
   Call Button & Schedule Button - Fushia Style
   =========================================== */

/* Call button at top of form - above "Programmer une visite ?" */
.call-button-fushia-style {
    display: block !important;
    width: 100% !important;
    padding: 16px 28px !important;
    background: linear-gradient(135deg, #C2185B 0%, #AD1457 100%) !important;
    color: #ffffff !important;
    text-decoration: none !important;
    font-weight: 700 !important;
    font-size: 16px !important;
    border-radius: 50px !important;
    box-shadow: 0 4px 15px rgba(194, 24, 91, 0.4) !important;
    transition: all 0.3s ease !important;
    border: 2px solid transparent !important;
    text-align: center !important;
    margin: 0 0 15px 0 !important;
    box-sizing: border-box !important;
    cursor: pointer;
    line-height: 1.4 !important;
}

.call-button-fushia-style:hover {
    background: linear-gradient(135deg, #AD1457 0%, #880E4F 100%) !important;
    box-shadow: 0 6px 20px rgba(194, 24, 91, 0.5) !important;
    transform: translateY(-2px) !important;
    color: #ffffff !important;
}

.call-button-fushia-style:active {
    transform: translateY(0) !important;
    box-shadow: 0 2px 10px rgba(194, 24, 91, 0.3) !important;
}

.call-button-fushia-style i {
    margin-right: 10px !important;
    font-size: 16px !important;
}

/* Call button positioned at top - 30px above "Programmer une visite ?" */
.call-button-top {
    margin-bottom: 30px !important;
}

/* ===========================================
   "Programmer une visite ?" Button - Match "Appeler" Style
   =========================================== */

.schedule_meeting {
    display: block !important;
    width: 100% !important;
    padding: 16px 28px !important;
    background: linear-gradient(135deg, #C2185B 0%, #AD1457 100%) !important;
    color: #ffffff !important;
    text-decoration: none !important;
    font-weight: 700 !important;
    font-size: 16px !important;
    border-radius: 50px !important;
    box-shadow: 0 4px 15px rgba(194, 24, 91, 0.4) !important;
    transition: all 0.3s ease !important;
    border: 2px solid transparent !important;
    text-align: center !important;
    margin: 0 0 25px 0 !important;
    box-sizing: border-box !important;
    cursor: pointer;
    line-height: 1.4 !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
}

.schedule_meeting:hover {
    background: linear-gradient(135deg, #AD1457 0%, #880E4F 100%) !important;
    box-shadow: 0 6px 20px rgba(194, 24, 91, 0.5) !important;
    transform: translateY(-2px) !important;
    color: #ffffff !important;
    text-decoration: none !important;
}

/* ===========================================
   RESPONSIVE - Portrait Mode (Mobile)
   =========================================== */

/* Tablet and smaller desktop - 768px and below */
@media only screen and (max-width: 768px) {
    .call-button-fushia-style,
    .schedule_meeting {
        width: 100% !important;
        padding: 16px 20px !important;
        font-size: 16px !important;
        border-radius: 50px !important;
    }
}

/* Mobile portrait - 480px and below */
@media only screen and (max-width: 480px) {
    .call-button-fushia-style,
    .schedule_meeting {
        width: 100% !important;
        padding: 18px 20px !important;
        font-size: 17px !important;
        border-radius: 50px !important;
        min-height: 52px;
        box-sizing: border-box !important;
    }
    
    /* Ensure proper spacing in contact form */
    .agent_contanct_form {
        padding-left: 5px !important;
        padding-right: 5px !important;
    }
}

/* Extra small mobile - 360px and below */
@media only screen and (max-width: 360px) {
    .call-button-fushia-style,
    .schedule_meeting {
        padding: 16px 16px !important;
        font-size: 15px !important;
    }
}

/* Landscape orientation optimization */
@media only screen and (max-width: 768px) and (orientation: landscape) {
    .call-button-fushia-style,
    .schedule_meeting {
        padding: 14px 18px !important;
        font-size: 15px !important;
    }
}
