/**
 * Modern Footer Styles for FB-Travel Theme
 */

/* Footer Base Styles */
.site-footer {
    padding: 60px 0 20px;
    font-family: 'Roboto', sans-serif;
    position: relative;
    text-align: left;
    background-color: var(--footer-bg-color, #1A1B25) !important;
    color: var(--footer-text-color, #ffffff) !important;
}

.site-footer a {
    color: var(--footer-link-color, #00C2CB) !important;
}

.site-footer a:hover {
    color: var(--footer-link-color, #00C2CB) !important;
    opacity: 0.8;
}

.site-footer h4.footer-title,
.site-footer .footer-title {
    color: var(--footer-text-color, #ffffff) !important;
}

.site-footer .footer-about-text,
.site-footer .footer-contact-info,
.site-footer .disclaimer-text,
.site-footer .copyright-text,
.site-footer .footer-menu,
.site-footer .payment-title {
    color: var(--footer-text-color, #ffffff) !important;
}

/* Footer Widgets Section */
.footer-widgets {
    margin-bottom: 40px;
}

.footer-column {
    margin-bottom: 30px;
}

/* Footer Titles */
.footer-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--footer-link-color, #00C2CB);
}

/* About Section */
.footer-about {
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo img {
    max-width: 180px;
    height: auto;
}

.footer-site-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
}

.footer-about-text {
    margin-bottom: 20px;
    line-height: 1.6;
    opacity: 0.8;
}

/* Social Media Icons */
.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: var(--footer-link-color, #00C2CB);
    transform: translateY(-3px);
}

.social-icon i {
    font-size: 16px;
}

/* Footer Menu */
.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu li {
    margin-bottom: 12px;
}

.footer-menu li a {
    position: relative;
    padding-left: 15px;
    transition: all 0.3s ease;
    opacity: 0.8;
}

.footer-menu li a:before {
    content: '›';
    position: absolute;
    left: 0;
    top: 0;
    font-size: 18px;
    line-height: 1;
    transition: transform 0.3s ease;
}

.footer-menu li a:hover {
    opacity: 1;
    padding-left: 18px;
}

.footer-menu li a:hover:before {
    transform: translateX(3px);
}

/* Contact Info */
.footer-contact-info {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact-info li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
}

.footer-contact-info li i {
    margin-right: 10px;
    margin-top: 5px;
    opacity: 0.8;
}

.footer-email a,
.footer-phone a {
    transition: all 0.3s ease;
}

.footer-email a:hover,
.footer-phone a:hover {
    padding-left: 5px;
}

/* Payment Methods */
.footer-payment-methods {
    margin-top: 25px;
}

.payment-title {
    font-size: 16px;
    margin-bottom: 15px;
    font-weight: 500;
}

.payment-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.payment-icon {
    font-size: 24px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.payment-icon:hover {
    opacity: 1;
}

/* Disclaimer Section */
.footer-disclaimer {
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 20px;
}

.disclaimer-title {
    font-size: 16px;
    margin-bottom: 10px;
    font-weight: 500;
}

.disclaimer-text {
    font-size: 13px;
    opacity: 0.7;
    line-height: 1.5;
}

/* Copyright Section */
.footer-bottom {
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: left;
}

.copyright {
    font-size: 14px;
    opacity: 0.7;
    text-align: left;
}

/* Back to top button */
.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background-color: var(--footer-link-color, #00C2CB);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.back-to-top:hover {
    background-color: var(--footer-link-color, #00C2CB);
    opacity: 0.8;
    color: #fff;
    transform: translateY(-3px);
}

.back-to-top:focus {
    outline: none;
    color: #fff;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .site-footer {
        padding: 40px 0 20px;
    }
    
    .footer-title {
        font-size: 16px;
    }
    
    .footer-logo img {
        max-width: 150px;
    }
    
    .footer-bottom {
        text-align: left;
    }
}

@media (max-width: 767px) {
    .footer-column {
        margin-bottom: 30px;
    }
    
    .footer-social {
        margin-bottom: 20px;
    }
    
    .footer-disclaimer {
        padding: 15px 0;
    }
    
    .disclaimer-text {
        font-size: 12px;
    }
}

/* Bootstrap Grid System (Minimal) */
.row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

.col-md-2, .col-md-3, .col-md-4, .col-md-6, .col-md-12, .col-sm-6 {
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
}

@media (min-width: 576px) {
    .col-sm-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media (min-width: 768px) {
    .col-md-2 {
        flex: 0 0 20%;
        max-width: 20%;
    }
    
    .col-md-3 {
        flex: 0 0 25%;
        max-width: 25%;
    }
    
    .col-md-4 {
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }
    
    .col-md-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }
    
    .col-md-12 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}