/* Footer Area Styling Improvements */

/* Footer General Styling */
.footer__area {
    padding-top: 70px;
    background-color: #0f1d32;
    color: #fff;
}

/* Footer Widget Spacing */
.footer__widget {
    margin-bottom: 40px;
}

/* Footer Title Styling */
.footer__widget-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 25px;
    color: #fff;
    position: relative;
    padding-bottom: 12px;
}

.footer__widget-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background-color: #ff5e14;
}

/* Footer Logo */
.footer__logo {
    margin-bottom: 20px;
}

.footer__logo img {
    max-width: 180px;
}

/* Footer Text */
.footer__text p {
    margin-bottom: 15px;
    color: #b7b7b7;
    line-height: 1.7;
}

/* Footer Contact Info */
.footer__info-item {
    display: flex;
    margin-bottom: 15px;
}

.footer__info-icon {
    margin-right: 15px;
    color: #ff5e14;
    font-size: 18px;
    min-width: 25px;
}

.footer__info-text {
    color: #b7b7b7;
}

/* Footer Links */
.footer__links li {
    margin-bottom: 12px;
}

.footer__links li a {
    color: #b7b7b7;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 15px;
}

.footer__links li a:before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    background-color: #ff5e14;
    border-radius: 50%;
}

.footer__links li a:hover {
    color: #ff5e14;
    padding-left: 20px;
}

/* Social Icons */
.footer__social {
    margin-top: 20px;
}

.footer__social a {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-radius: 50%;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.footer__social a:hover {
    background-color: #ff5e14;
    color: #fff;
}

/* Copyright Area */
.copyright__area {
    background-color: #0a1426;
    padding: 25px 0;
    color: #b7b7b7;
    text-align: center;
}

/* Footer Form */
.footer__form input {
    width: 100%;
    height: 50px;
    padding: 0 20px;
    border: none;
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    margin-bottom: 10px;
}

.footer__form button {
    height: 50px;
    padding: 0 25px;
    background-color: #ff5e14;
    color: #fff;
    border: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.footer__form button:hover {
    background-color: #fff;
    color: #ff5e14;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .footer__widget {
        margin-bottom: 30px;
    }
}

@media (max-width: 767px) {
    .footer__area {
        padding-top: 50px;
    }
    
    .footer__widget-title {
        font-size: 20px;
        margin-bottom: 20px;
    }
} 