/* Footer Styles */

.main-footer {
    background: #0b2baa;
    color: white;
    padding: 60px 0 0;
}

/* Footer Columns */
.footer-columns {
    display: flex;
}

.footer-column {
    flex: 1;
}

.footer-column h5 {
    color: white;
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 16px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin: 0;
}

.footer-links a {
    color: white;
    text-decoration: none;
    font-size: 13px;
    line-height: 1.5;
}

.footer-links a:hover {
    color: #0df8de;
    text-decoration: underline;
}

/* Contact Section */
.contact-booking {
    margin-top: 30px;
}

.contact-booking h5 {
    color: white;
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 16px;
}

.contact-booking p {
    color: white;
    margin: 0;
    font-weight: 600;
    font-size: 14px;
}

/* Phone Section */
.phone-section {
    margin-top: 10px;
    padding: 20px 0;
    border-top: 1px solid #4a5ba8;
}

.phone-container {
    display: flex;
    align-items: center;
}

.phone-icon {
    background: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

.phone-icon i {
    color: #0b2baa;
    font-size: 16px;
}

.phone-info h4 {
    color: white;
    margin: 0;
    font-size: 18px;
    font-weight: 600;
}

.phone-info p {
    color: #ccc;
    margin: 0;
    font-size: 12px;
}

/* Social Media */
.social-container {
    display: flex;
    justify-content: end;
    align-items: center;
}

.social-text {
    color: white;
    font-size: 13px;
    margin-right: 10px;
}

.social-subtext {
    color: #ccc;
    font-size: 12px;
    margin-right: 15px;
}

.social-icons {
    display: flex;
    gap: 8px;
}

.social-icon {
    background: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.social-icon i {
    color: #0b2baa;
    font-size: 14px;
}

.social-icon:hover {
    background: #0df8de;
}

.social-icon:hover i {
    color: white;
}

/* Bottom Section */
.bottom-section {
    background: #f8f9fa;
    padding: 15px 0;
    color: #333;
}

.copyright-text {
    margin: 0;
    font-size: 12px;
    color: #333;
}

.policy-links {
    text-align: end;
}

.policy-links a {
    color: #0b2baa;
    text-decoration: none;
    font-size: 12px;
    margin-left: 15px;
}

.policy-links a:hover {
    text-decoration: underline;
}

.flotting-icons-bar {
    position: fixed;
    width: 100%;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    padding: 10px 30px;
}
#show-callback-form {
    background: #e74c3c;
    width: 65px;
    height: 65px;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 11px;
    color: #fff;
}
.callback-widget {
    position: fixed;
    bottom: 145px;
    left: 20px;
    background: #0b2baa;
    padding: 15px;
    border-radius: 10px;
    z-index: 9999;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
    color: #fff;
    max-width: 330px;
    display: none;
    opacity: 0;
    transform: translateY(20px) scale(0.9);
    transition: all 0.3s ease-out;
}

.callback-widget.show {
    display: block;
    animation: slideUpFadeIn 0.4s ease-out forwards;
}
.callback-widget button{
    font-size: 12px;
}
@keyframes slideUpFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}
.callback-widget p {
    margin: 0 0 10px;
    font-weight: bold;
    font-size: 15px;
}
.callback-widget input {
    width: calc(100% - 125px);
    padding: 8px;
    border: none;
    border-radius: 4px 0 0 4px;
    outline: none;
    font-size: 12px;
    max-width: 180px;
}
.callback-widget button {
    background: #e74c3c;
    color: white;
    border: none;
    padding: 9px 10px;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
}

.social-icon.whatsapp{
    background: #25D366;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}
.social-icon.whatsapp i{
    color: #fff;
    font-size: 30px;

}
.whatsapp_text{
    display: none;
}

/* Responsive */
@media (max-width: 768px) {
    .main-footer {
        padding: 40px 0 0;
    }

    .footer-columns {
        flex-direction: column;
        gap: 30px;
    }

    .footer-column {
        flex: none;
    }

    .phone-section {
        padding: 15px 0;
    }

    .phone-container {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .social-container {
        justify-content: center;
        flex-direction: column;
        gap: 10px;
    }

    .policy-links {
        text-align: center;
        margin-top: 15px;
    }

    .policy-links a {
        display: inline-block;
        margin: 5px 10px;
    }

    .bottom-section {
        text-align: center;
    }
}
@media (min-width: 576px) {
.flotting-icons-bar{
    bottom: -30px;
}
#show-callback-form {
    position: absolute;
    top: -100px;
    left: 30px;
}
.social-icon.whatsapp {
    position: absolute;
    top: -100px;
    right: 30px;
}
}
@media (max-width: 576px) {
.flotting-icons-bar{
    padding: 0;
    bottom: 0;
}
.callback-trigger{
    width: 50%;
}
#show-callback-form{
    width: 100%;
    height: 45px;
    border-radius: 0;
    font-size: 16px;
}
.social-icon.whatsapp{
    width: 50%;
    height: 45px;
    border-radius: 0;
}
.whatsapp_text{
    display: inline-block;
    color: #fff;
}
.social-icon.whatsapp i {
    color: #fff;
    font-size: 20px;
    margin-right: 10px;
}
    .bottom-section {
        margin-bottom: 30px;
    }
}