/* ============================================
   FOOTER - Light Elegant Minimalist Design
   UnicyFalcon Landing Page
   Brand Colors: #080A69 (Indigo) / #05063F (Dark)
   ============================================ */

/* Footer Main Container */
.uf-footer {
    background: #ffffff !important;
    color: #6b7280 !important;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
    border-top: 1px solid #e5e7eb !important;
}

.uf-footer-main {
    padding: 60px 0 40px !important;
    border-bottom: 1px solid #e5e7eb !important;
}

/* Footer Grid - 5 Columns */
.uf-footer-grid {
    display: grid !important;
    grid-template-columns: 1.3fr 1.1fr 0.9fr 0.8fr 1.2fr !important;
    gap: 24px !important;
}

/* Footer Column */
.uf-footer-col {
    display: flex !important;
    flex-direction: column !important;
}

/* Brand Column */
.uf-footer-brand {
    max-width: 280px !important;
}

.uf-footer-logo {
    margin-bottom: 20px !important;
}

.uf-footer-logo img {
    height: 40px !important;
    width: auto !important;
}

.uf-footer-desc {
    color: #080A69 !important;
    font-size: 14px !important;
    line-height: 1.6 !important;
    margin: 0 0 8px 0 !important;
    font-weight: 500 !important;
}

.uf-footer-desc-sub {
    color: #6b7280 !important;
    font-size: 13px !important;
    line-height: 1.5 !important;
    margin: 0 0 24px 0 !important;
}

/* Newsletter */
.uf-footer-newsletter h6 {
    color: #080A69 !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    margin: 0 0 12px 0 !important;
}

.uf-newsletter-form {
    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important;
}

.uf-newsletter-form input {
    background: #f9fafb !important;
    border: 1px solid #e5e7eb !important;
    border-radius: 8px !important;
    padding: 12px 14px !important;
    color: #111827 !important;
    font-size: 13px !important;
    outline: none !important;
    width: 100% !important;
    transition: all 0.2s ease !important;
}

.uf-newsletter-form input:focus {
    border-color: #080A69 !important;
    box-shadow: 0 0 0 3px rgba(8, 10, 105, 0.1) !important;
}

.uf-newsletter-form input::placeholder {
    color: #9ca3af !important;
}

.uf-newsletter-form button {
    background: #080A69 !important;
    border: none !important;
    border-radius: 8px !important;
    padding: 12px 18px !important;
    color: #ffffff !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    width: 100% !important;
}

.uf-newsletter-form button:hover {
    background: linear-gradient(135deg, #0D10A3 0%, #080A69 100%) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(8, 10, 105, 0.4) !important;
}

.uf-newsletter-form button i {
    font-size: 12px !important;
}

/* Newsletter Message */
.uf-newsletter-message {
    font-size: 12px !important;
    margin-top: 8px !important;
    padding: 8px 12px !important;
    border-radius: 4px !important;
}

.uf-newsletter-message.success {
    background: #ecfdf5 !important;
    color: #047857 !important;
    border: 1px solid #a7f3d0 !important;
}

.uf-newsletter-message.error {
    background: #fef2f2 !important;
    color: #dc2626 !important;
    border: 1px solid #fecaca !important;
}

/* Footer Titles */
.uf-footer-title {
    color: #080A69 !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    margin: 0 0 20px 0 !important;
    letter-spacing: 0.3px !important;
    text-transform: uppercase !important;
}

/* Footer Links */
.uf-footer-links {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.uf-footer-links li {
    margin-bottom: 8px !important;
}

.uf-footer-links li a {
    color: #4b5563 !important;
    font-size: 12px !important;
    text-decoration: none !important;
    transition: color 0.2s ease !important;
    display: block !important;
    white-space: nowrap !important;
}

.uf-footer-links li a:hover {
    color: #080A69 !important;
}

/* Footer Contact */
.uf-footer-contact {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 0 20px 0 !important;
}

.uf-footer-contact li {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    margin-bottom: 10px !important;
    font-size: 13px !important;
}

.uf-footer-contact li i {
    color: #080A69 !important;
    font-size: 12px !important;
    width: 16px !important;
    text-align: center !important;
}

.uf-footer-contact li span,
.uf-footer-contact li a {
    color: #4b5563 !important;
    text-decoration: none !important;
    transition: color 0.2s ease !important;
}

.uf-footer-contact li a:hover {
    color: #080A69 !important;
}

/* Footer CTA Buttons */
.uf-footer-cta {
    display: flex !important;
    flex-direction: column !important;
    gap: 8px !important;
    margin-bottom: 16px !important;
}

.uf-footer-btn {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    padding: 10px 16px !important;
    font-size: 12px !important;
    font-weight: 500 !important;
    border-radius: 6px !important;
    text-decoration: none !important;
    transition: all 0.2s ease !important;
    background: #ffffff !important;
    border: 1px solid #e5e7eb !important;
    color: #080A69 !important;
}

.uf-footer-btn:hover {
    background: #080A69 !important;
    border-color: #080A69 !important;
    color: #ffffff !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 15px rgba(8, 10, 105, 0.3) !important;
}

.uf-footer-btn i {
    font-size: 11px !important;
}

.uf-footer-btn-primary {
    background: #080A69 !important;
    border-color: #080A69 !important;
    color: #ffffff !important;
}

.uf-footer-btn-primary:hover {
    background: linear-gradient(135deg, #0D10A3 0%, #080A69 100%) !important;
    border-color: #0D10A3 !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 8px 25px rgba(8, 10, 105, 0.5) !important;
    filter: brightness(115%) !important;
    color: #ffffff !important;
}

/* Social Links */
.uf-footer-social {
    display: flex !important;
    gap: 10px !important;
}

.uf-footer-social a {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 36px !important;
    height: 36px !important;
    border: 1px solid #e5e7eb !important;
    border-radius: 6px !important;
    color: #080A69 !important;
    text-decoration: none !important;
    transition: all 0.2s ease !important;
    background: #ffffff !important;
}

.uf-footer-social a:hover {
    background: #080A69 !important;
    border-color: #080A69 !important;
    color: #ffffff !important;
}

.uf-footer-social a i {
    font-size: 16px !important;
}

/* Blog icon with favicon */
.uf-footer-social .uf-social-blog {
    padding: 0 !important;
}

.uf-footer-social .uf-blog-icon {
    width: 20px !important;
    height: 20px !important;
    object-fit: contain !important;
}

/* Copyright */
.uf-footer-copyright {
    padding: 20px 0 !important;
    background: #f9fafb !important;
}

.uf-footer-copyright p {
    color: #6b7280 !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    margin: 0 !important;
}

/* ===== Footer Responsive ===== */
@media (max-width: 1399px) {
    .uf-footer-grid {
        grid-template-columns: 1.2fr 1fr 0.9fr 0.8fr 1.1fr !important;
        gap: 20px !important;
    }
}

@media (max-width: 1199px) {
    .uf-footer-grid {
        grid-template-columns: 1fr 1fr 1fr 1fr !important;
        gap: 24px !important;
    }
    
    .uf-footer-brand {
        grid-column: span 4 !important;
        max-width: 100% !important;
        display: flex !important;
        flex-wrap: wrap !important;
        gap: 20px !important;
    }
    
    .uf-footer-brand > * {
        flex: 1 1 200px !important;
    }
}

@media (max-width: 991px) {
    .uf-footer-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 28px !important;
    }
    
    .uf-footer-brand {
        grid-column: span 2 !important;
        flex-direction: column !important;
    }
    
    .uf-footer-brand > * {
        flex: 1 1 auto !important;
    }
}

@media (max-width: 576px) {
    .uf-footer-grid {
        grid-template-columns: 1fr !important;
    }
    
    .uf-footer-brand {
        grid-column: span 1 !important;
    }
    
    .uf-footer-main {
        padding: 40px 0 30px !important;
    }
    
    .uf-footer-cta {
        flex-direction: row !important;
        flex-wrap: wrap !important;
    }
}

/* Back to Top Button */
.rbt-progress-parent {
    position: fixed !important;
    bottom: 30px !important;
    right: 30px !important;
    width: 46px !important;
    height: 46px !important;
    background: #ffffff !important;
    border: 2px solid #080A69 !important;
    border-radius: 50% !important;
    cursor: pointer !important;
    z-index: 1000 !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transition: all 0.3s ease !important;
}

.rbt-progress-parent.rbt-backto-top-active {
    opacity: 1 !important;
    visibility: visible !important;
}

.rbt-progress-parent svg path {
    stroke: #080A69 !important;
    stroke-width: 4 !important;
    fill: none !important;
}

.rbt-progress-parent:hover {
    background: #080A69 !important;
}

.rbt-progress-parent:hover svg path {
    stroke: #ffffff !important;
}

