/* Premium Dark Footer Styling */
.main-footer {
    background: #0B3C5D;
    color: rgba(255, 255, 255, 0.7);
    padding-top: 80px;
}

.footer-brand .logo-box {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-brand .logo-box span {
    color: var(--primary-color);
    font-weight: 900;
    font-size: 20px;
}

.footer-desc {
    line-height: 1.8;
    margin: 25px 0;
    font-size: 14px;
}

.footer-title {
    color: white;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background: var(--accent-color);
}

.footer-links {
    list-style: none;
    padding: 0;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s;
    display: inline-block;
}

.footer-links a:hover {
    color: white;
    transform: translateX(5px);
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-btn {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s;
}

.social-btn:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-3px);
}

.newsletter-box {
    background: rgba(255, 255, 255, 0.03);
    padding: 25px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.newsletter-input-group {
    display: flex;
    background: white;
    border-radius: 50px;
    padding: 5px;
    margin-top: 15px;
}

.newsletter-input {
    border: none;
    padding: 10px 20px;
    border-radius: 50px;
    flex-grow: 1;
    font-size: 14px;
    outline: none;
}

.newsletter-btn {
    background: var(--accent-color);
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.3s;
}

.newsletter-btn:hover {
    background: #e67600;
    box-shadow: 0 5px 15px rgba(245, 124, 0, 0.3);
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: 25px 0;
    margin-top: 80px;
    font-size: 13px;
}

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

.hover-accent:hover {
    color: var(--accent-color) !important;
}

@media (max-width: 768px) {
    .footer-bottom-flex {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}
