/* Footer Logo Styles */
.footer-logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo {
    height: 60px;
    max-width: 240px;
    width: auto;
    object-fit: contain;
    transition: transform 0.2s ease;
}

.footer-brand-name {
    font-size: 27px;
    font-weight: 600;
    font-style: italic;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, #ffffff, #e0e0e0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.1);
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Footer General Styles */
footer.bg-dark {
    background-color: #1f2229;
    padding: 60px 0 30px;
}

footer .title.mini {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

footer .title-sub.mini {
    font-size: 15px;
    line-height: 1.6;
    font-weight: 400;
    opacity: 0.85;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

footer p {
    font-size: 15px;
    line-height: 1.6;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

footer .form-control {
    font-size: 15px;
    padding: 12px 15px;
    height: auto;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

footer hr.light {
    opacity: 0.1;
    margin: 30px 0;
}

footer .copyright {
    font-size: 14px;
    opacity: 0.7;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .footer-logo {
        height: 50px;
    }
    
    .footer-brand-name {
        font-size: 24px;
    }
} 