/* Footer Redesign CSS */

/* Footer Redesign */
.footer-redesign {
    background: var(--pr-dark);
    color: #e0e0e0;
    padding: 60px 0 0 0;
    font-size: 14px;
}

.footer-redesign .container {
    max-width: 1425px;
}

.footer-redesign .row {
    margin-left: -15px;
    margin-right: -15px;
}

.footer-redesign .footer-col {
    margin-bottom: 40px;
    padding-left: 15px;
    padding-right: 15px;
}

.footer-redesign h4 {
    color: var(--pr-white);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: none;
}

.footer-redesign p {
    line-height: 1.8;
    color: #b0b0b0;
    margin-bottom: 20px;
}

.footer-redesign ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-redesign ul li a {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.3s, padding-left 0.3s;
    display: inline-block;
}

.footer-redesign ul li a:hover {
    color: var(--pr-yellow);
    padding-left: 5px;
}

/* Footer Contact Info */
.footer-contact-info {
    margin-top: 25px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    color: #b0b0b0;
}

.footer-contact-item i {
    color: var(--pr-yellow);
    margin-top: 3px;
    font-size: 16px;
}

.footer-contact-item span {
    flex: 1;
    line-height: 1.6;
}

.footer-redesign .footer-col-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
}

/* Footer Connect Section */
.footer-connect-section {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

/* Override Bootstrap col-sm-6 width for footer columns */
@media (min-width: 768px) {
    .footer-redesign .col-md-4 .row {
        display: flex;
        margin-left: 0;
        margin-right: 0;
    }
    
    .footer-redesign .col-md-4 .col-sm-6 {
        width: 50%;
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .footer-redesign .col-md-4 .col-sm-6:first-child {
        padding-left: 0;
    }
    
    .footer-redesign .col-md-4 .col-sm-6:last-child {
        padding-right: 0;
    }
}

/* Social Icons */
.social-links {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    justify-content: flex-end;
}

.social-link {
    width: 40px;
    height: 40px;
    background: #222;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pr-white);
    text-decoration: none;
    transition: all 0.3s;
    border: 1px solid #333;
}

.social-link:hover {
    background: var(--pr-yellow);
    color: var(--pr-dark);
    border-color: var(--pr-yellow);
    transform: translateY(-3px);
}

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

/* Footer Badges */
.footer-badges {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: flex-end;
}

.badge-item {
    width: fit-content;
}

.badge-item {
    background: #1a1a1a;
    padding: 10px 15px;
    border-radius: 6px;
    font-size: 13px;
    color: #ddd;
    border: 1px solid #333;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
}

.badge-item:hover {
    border-color: #555;
    background: #222;
}

.badge-item i {
    color: var(--pr-yellow);
    font-size: 14px;
}

/* Bottom Bar */
.footer-bottom {
    border-top: 1px solid #222;
    padding: 25px 0;
    margin-top: 20px;
    text-align: center;
}

.footer-bottom-links {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.footer-bottom-links a {
    color: #888;
    text-decoration: none;
    font-size: 13px;
}

.footer-bottom-links a:hover {
    color: var(--pr-white);
}
