/* Footer Styles */
.footer {
    background: #0b2950;
    padding: 40px 40px 0;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 40px;
    align-items: start;
}

.logo-section {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.logo-placeholder {
    width: 85px;
    height: 85px;
    border: 2px dashed rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
    text-align: center;
    padding: 10px;
}

.agency-name {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    line-height: 1.5;
}

.footer-column h6 {
    text-transform: uppercase;
    margin-bottom: 18px;
    color: #CBCBCB;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a, 
.footer-column ul li {
    color: #F2F2F2;
    text-decoration: none;
    font-size: 18px;
    font-weight: normal;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.vip-note {
    font-family: 'Marcellus';
    font-size: 18px;
    line-height: 120%;
    color: #f2f2f2;
    margin-bottom: 15px;
    text-transform: uppercase;
    max-width: 275px;
    font-weight: lighter;
}

.footer-logo {
    margin-top: -10px;
    width: 80%;
}

.hero-text {
    line-height: normal;
    text-align: center;
    font-family: 'Marcellus';
    color: white;
    font-size: 87px;
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 40px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.copyright {
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #CBCBCB;
}

.footer-links {
    display: flex;
    gap: 35px;
}

.footer-links a {
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #CBCBCB;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: rgba(255, 255, 255, 0.8);
}

.red-border {
    height: 6px;
    background: #B99D75;
    width: 100%;
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: 14px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.social-icons li a {
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    color: #151719;
    background: #b99d75;
    font-size: 16px;
    transition: 0.3s ease;
}

.social-icons li a:hover {
    background: #fff;
    color: #0b2950;
}

/* Media Queries */
@media (max-width: 1024px) {
    .footer-top {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 40px;
    }

    .hero-text {
        font-size: 54px;
        letter-spacing: 4px;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 40px 30px 0;
    }
    
    .footer-logo {
        margin-left: -15px;
        width: 50%;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .hero-text {
        line-height: 1.2;
        font-size: 48px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 30px 20px 0;
    }
    
    .footer-logo {
        margin-left: -10px;
        width: 60%;
    }
    
    .footer-top {
        gap: 25px;
    }

    .hero-text {
        line-height: 1.2;
        font-size: 36px;
    }
    
    .footer-column ul li a, 
    .footer-column ul li {
        font-size: 16px;
    }
    
    .vip-note {
        font-size: 16px;
    }
    
    .footer-bottom {
        gap: 15px;
    }
    
    .footer-links {
        gap: 15px;
    }
    
    .footer-links a {
        font-size: 11px;
    }
    
    .copyright {
        font-size: 11px;
    }
}