﻿.form select {
    height: 48px;
    padding: 10px 12px;
    font-size: 16px;
    width: 100%;
    border-radius: 4px;
    background-color: #fff;
    border: 1px solid #ced4da;
    color: #212529;
}
/* Floating Action Buttons */
.floating-actions {
    position: fixed;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9999;
}

    .floating-actions a {
        width: 46px;
        height: 46px;
        display: block;
        margin-bottom: 10px;
        background: #0054B7; /* BLACK THEME */
        color: #fff;
        text-align: center;
        line-height: 46px;
        border-radius: 50%;
        font-size: 20px;
        box-shadow: 0 4px 10px rgba(0,0,0,0.4);
        transition: all 0.3s ease;
    }

        .floating-actions a:hover {
            background: #000; /* Header Orange Highlight */
            color: #fff;
            text-decoration: none;
            transform: scale(1.1);
        }

/* Mobile View */
@media (max-width: 767px) {
    .floating-actions {
        right: 10px;
        top: auto;
        bottom: 80px;
        transform: none;
    }
}
/* Floating WhatsApp Button */
.wa-float-btn {
    position: fixed;
    bottom: 10px;
    right: 70px;
    width: 55px;
    height: 55px;
    background: #0054B7;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    line-height: 55px;
    font-size: 26px;
    cursor: pointer;
    z-index: 9999;
    box-shadow: 0 4px 12px rgba(0,0,0,0.4);
}

    .wa-float-btn:hover {
        background: #000; /* Header Orange Highlight */
        color: #fff;
        text-decoration: none;
        transform: scale(1.1);
    }
/* Chat Popup */
.wa-chat-popup {
    position: fixed;
    bottom: 90px;
    right: 20px;
    width: 300px;
    background: #fff;
    border-radius: 10px;
    display: none;
    flex-direction: column;
    z-index: 9999;
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
    overflow: hidden;
}

/* Header */
.wa-header {
    background: #000;
    color: #fff;
    padding: 12px;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .wa-header i {
        cursor: pointer;
    }

/* Body */
.wa-body {
    padding: 12px;
    font-size: 14px;
    background: #f5f5f5;
}

.wa-msg {
    background: #000;
    color: #fff;
    padding: 8px 10px;
    border-radius: 8px;
    display: inline-block;
}

/* Footer */
.wa-footer {
    display: flex;
    border-top: 1px solid #ddd;
}

    .wa-footer input {
        flex: 1;
        border: none;
        padding: 10px;
        font-size: 14px;
        outline: none;
    }

    .wa-footer button {
        background: #000;
        color: #fff;
        border: none;
        width: 45px;
        cursor: pointer;
    }

        .wa-footer button:hover {
            background: #25D366;
        }

/* Mobile */
@media (max-width: 767px) {
    .wa-chat-popup {
        width: 90%;
        right: 5%;
        bottom: 80px;
    }
}

.panel-collapse {
    opacity: 0;
}

    .panel-collapse.in {
        opacity: 1;
    }
/* Footer Bottom */
.footer-bottom {
    background: #000;
    border-top: 1px solid #222;
    padding: 20px 0;
    color: #ccc;
    font-size: 14px;
}

/* Policy Links */
.footer-policy-links {
    list-style: none;
    padding: 0;
    margin: 0 0 8px;
}

    .footer-policy-links li {
        display: inline-block;
        margin: 0 10px;
    }

    .footer-policy-links a {
        color: #ccc;
        text-decoration: none;
    }

        .footer-policy-links a:hover {
            color: #25D366;
        }

/* Copyright */
.footer-copy-row p {
    margin: 0;
    color: #999;
}

.stars a {
    display: inline-block;
    padding-right: 4px;
    text-decoration: none;
    margin: 0;
}

    .stars a:after {
        position: relative;
        font-size: 18px;
        font-family: 'FontAwesome', serif;
        display: block;
        content: "\f005";
        color: #9e9e9e;
    }

/*span {
    font-size: 0;
}*/

.stars a:hover ~ a:after {
    color: #9e9e9e !important;
}

span.active a.active ~ a:after {
    color: #9e9e9e;
}

span:hover a:after {
    color: blue !important;
}

span.active a:after,
.stars a.active:after {
    color: blue;
}
p{margin:0px;}