/* 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;
}

/* 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;
    }
}