/* Footer Styles */
.footer {
    position: relative;
    margin-top: -75px;
}

.footer .container-fluid {
    background: #051225;
}

.footer .text-light {
    color: #ffffff !important;
}

.footer .text-primary {
    color: #00B98E !important;
}

/* Footer Links */
.footer-link {
    position: relative;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-link:hover {
    color: #00B98E !important;
    transform: translateX(5px);
}

.footer-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -2px;
    left: 0;
    background-color: #00B98E;
    transition: width 0.3s ease;
}

.footer-link:hover::after {
    width: 100%;
}

/* Quick Links & Popular Links */
.footer .d-flex.flex-column a {
    transition: all 0.3s ease;
    position: relative;
    padding-left: 15px;
}

.footer .d-flex.flex-column a:hover {
    color: #00B98E !important;
    transform: translateX(5px);
}

.footer .d-flex.flex-column a i {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 12px;
}

/* Contact Information */
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateX(5px);
}

.contact-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 185, 142, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.contact-item:hover .contact-icon {
    background: #00B98E;
}

.contact-item:hover .contact-icon i {
    color: #ffffff !important;
}

.contact-icon i {
    font-size: 18px;
    color: #00B98E;
    transition: all 0.3s ease;
}

.contact-info {
    flex: 1;
}

.contact-info h5 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #ffffff;
}

.contact-info p {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.contact-info a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    margin-bottom: 5px;
}

.contact-info a:hover {
    color: #00B98E;
}

.contact-info a:last-child {
    margin-bottom: 0;
}

/* Contact Section Responsive */
@media (max-width: 991.98px) {
    .footer-contact {
        gap: 15px;
    }

    .contact-item {
        gap: 12px;
    }

    .contact-icon {
        width: 35px;
        height: 35px;
        min-width: 35px;
    }

    .contact-icon i {
        font-size: 16px;
    }

    .contact-info h5 {
        font-size: 15px;
    }

    .contact-info p,
    .contact-info a {
        font-size: 13px;
    }
}

@media (max-width: 767.98px) {
    .footer-contact {
        gap: 12px;
    }

    .contact-item {
        gap: 10px;
    }

    .contact-icon {
        width: 32px;
        height: 32px;
        min-width: 32px;
    }

    .contact-icon i {
        font-size: 14px;
    }

    .contact-info h5 {
        font-size: 14px;
    }

    .contact-info p,
    .contact-info a {
        font-size: 12px;
    }
}

/* Social Media Buttons */
.social-link {
    width: 45px;
    height: 45px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    transition: all 0.3s ease;
    background: #00B98E;
    border: 2px solid #00B98E;
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 185, 142, 0.3);
    background: transparent;
}

.social-link:hover i {
    color: #00B98E;
}

.social-link i {
    font-size: 18px;
    color: #ffffff;
    transition: all 0.3s ease;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    background: #00B98E;
    border: 2px solid #00B98E;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0, 185, 142, 0.2);
    overflow: hidden;
}

.back-to-top:hover {
    background: transparent;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 185, 142, 0.3);
}

.back-to-top:hover i {
    color: #00B98E;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    animation: fadeInUp 0.5s ease;
}

.back-to-top i {
    color: #ffffff;
    transition: all 0.3s ease;
    font-size: 18px;
    position: relative;
    z-index: 2;
}

.back-to-top-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #ffffff;
    font-size: 12px;
    font-weight: 600;
    opacity: 0;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.back-to-top:hover .back-to-top-text {
    opacity: 1;
}

.back-to-top-text.show-text {
    opacity: 1;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Back to Top Button Responsive */
@media (max-width: 991.98px) {
    .back-to-top {
        right: 20px;
        bottom: 20px;
        width: 40px;
        height: 40px;
    }

    .back-to-top i {
        font-size: 16px;
    }
}

@media (max-width: 767.98px) {
    .back-to-top {
        right: 15px;
        bottom: 15px;
        width: 35px;
        height: 35px;
    }

    .back-to-top i {
        font-size: 14px;
    }

    .back-to-top-text {
        font-size: 10px;
    }
}

/* Copyright Section */
.copyright {
    background: #051225;
    padding: 25px 0;
    position: relative;
    z-index: 1;
}

.copyright::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(5, 18, 37, 0.95), rgba(5, 18, 37, 0.98));
    z-index: -1;
}

.copyright-text {
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
}

.copyright a {
    color: #00B98E;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding-bottom: 2px;
}

.copyright a:hover {
    color: #ffffff;
}

.copyright a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: 0;
    left: 0;
    background-color: #00B98E;
    transition: width 0.3s ease;
}

.copyright a:hover::after {
    width: 100%;
}

/* Copyright Responsive Styles */
@media (max-width: 767.98px) {
    .copyright {
        padding: 20px 0;
    }

    .copyright-text {
        font-size: 14px;
    }

    .copyright .col-md-6 {
        margin-bottom: 10px;
    }

    .copyright .col-md-6:last-child {
        margin-bottom: 0;
    }
}

@media (max-width: 575.98px) {
    .copyright {
        padding: 15px 0;
    }

    .copyright-text {
        font-size: 13px;
    }
}

/* Responsive Styles */
@media (max-width: 991.98px) {
    .footer {
        margin-top: 0;
    }
    
    .footer .col-md-6 {
        margin-bottom: 30px;
    }
}

@media (max-width: 767.98px) {
    .footer .btn-lg-square {
        width: 40px;
        height: 40px;
    }
    
    .footer .btn-lg-square i {
        font-size: 16px;
    }
    
    .footer-contact p {
        font-size: 14px;
    }
    
    .footer-contact i {
        font-size: 14px;
    }
}

/* Animation */
.footer .wow {
    visibility: hidden;
}

/* Container Spacing */
.footer .container {
    padding: 0 15px;
}

/* Row Spacing */
.footer .row {
    margin: 0 -15px;
}

/* Column Spacing */
.footer .col-lg-3,
.footer .col-md-6 {
    padding: 0 15px;
}

/* Icon Colors */
.footer .fa-map-marker-alt,
.footer .fa-envelope,
.footer .fa-phone-alt {
    color: #00B98E;
}

/* Hover Effects */
.footer a:hover {
    text-decoration: none;
}

.footer .text-white.border-bottom {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2) !important;
    transition: all 0.3s ease;
}

.footer .text-white.border-bottom:hover {
    border-bottom: 1px solid #00B98E !important;
}

/* Spacing Utilities */
.footer .mb-2 {
    margin-bottom: 0.5rem !important;
}

.footer .mb-4 {
    margin-bottom: 1.5rem !important;
}

.footer .py-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
}

/* Social Media Icons */
.footer .fab {
    font-size: 18px;
    color: #ffffff;
} 