/* =========================================
   NKTPe - Footer CSS
   ========================================= */

.footer-wave-top { line-height: 0; background: var(--bg); }
.footer-wave-top svg { display: block; }

.main-footer { background: #0F4C75; }

.footer-main { padding: 4rem 0 3rem; }

/* Brand */
.footer-logo { text-decoration: none; display: inline-block; margin-bottom: 1.2rem; }
.footer-logo-wrap { display: flex; align-items: center; gap: 10px; }
.footer-logo-icon {
    width: 44px; height: 44px;
    background: linear-gradient(135deg, #00B4D8, #3282B8);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    color: white; font-size: 1.3rem;
}
.footer-logo-text { font-size: 1.8rem; font-weight: 900; color: white; letter-spacing: -1px; }
.footer-logo-text span { color: #00B4D8; }
.footer-about-text { color: rgba(255,255,255,0.7); font-size: 0.85rem; line-height: 1.8; margin-bottom: 1.2rem; }

.footer-contact-mini { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-contact-mini a,
.footer-contact-mini span {
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    font-size: 0.82rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
}
.footer-contact-mini a:hover { color: #00B4D8; }
.footer-contact-mini i { color: #00B4D8; width: 16px; }

.footer-social { display: flex; gap: 0.6rem; }
.fsoc-icon {
    width: 36px; height: 36px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-size: 0.78rem;
    transition: all 0.3s;
}
.fsoc-icon:hover { background: #00B4D8; color: white; border-color: #00B4D8; transform: translateY(-3px); }

/* Footer Widget */
.footer-widget {}
.footer-title {
    color: white;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 0.5rem;
    position: relative;
}
.footer-divider {
    width: 40px; height: 3px;
    background: linear-gradient(90deg, #00B4D8, transparent);
    border-radius: 2px;
    margin-bottom: 1.2rem;
}
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 0.4rem; }
.footer-links a {
    display: flex; align-items: center; gap: 8px;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 0.83rem;
    transition: all 0.3s;
    padding: 2px 0;
}
.footer-links a:hover { color: #00B4D8; padding-left: 5px; }
.footer-links a i { font-size: 0.65rem; color: #00B4D8; width: 14px; }

/* Contact */
.footer-contact-list { display: flex; flex-direction: column; gap: 1rem; }
.fcontact-item { display: flex; gap: 12px; }
.fcontact-icon {
    width: 36px; height: 36px;
    background: rgba(0,180,216,0.15);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    color: #00B4D8; font-size: 0.9rem;
    flex-shrink: 0;
}
.fcontact-item strong { display: block; color: white; font-size: 0.82rem; margin-bottom: 2px; }
.fcontact-item p { color: rgba(255,255,255,0.7); font-size: 0.8rem; margin: 0; line-height: 1.5; }
.fcontact-item a { color: rgba(255,255,255,0.7); text-decoration: none; font-size: 0.8rem; }
.fcontact-item a:hover { color: #00B4D8; }

/* Newsletter */
.footer-newsletter h6 { color: white; font-size: 0.88rem; font-weight: 700; margin-bottom: 0.8rem; }
.newsletter-form { display: flex; border-radius: 10px; overflow: hidden; border: 1px solid rgba(255,255,255,0.15); }
.newsletter-form input {
    flex: 1;
    background: rgba(255,255,255,0.08);
    border: none;
    padding: 0.7rem 1rem;
    color: white;
    font-size: 0.82rem;
    font-family: 'Poppins', sans-serif;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.4); }
.newsletter-form input:focus { outline: none; }
.newsletter-form button {
    background: #00B4D8;
    border: none;
    padding: 0 1.2rem;
    color: white;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s;
}
.newsletter-form button:hover { background: #0099b8; }

/* Footer Bottom */
.footer-bottom {
    background: rgba(0,0,0,0.2);
    padding: 1rem 0;
    border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-bottom p { color: rgba(255,255,255,0.6); font-size: 0.8rem; margin: 0; }
.footer-bottom .fa-heart { font-size: 0.7rem; }
.footer-bottom-links { display: flex; gap: 1rem; justify-content: flex-end; align-items: center; }
.footer-bottom-links a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 0.8rem; transition: all 0.3s; }
.footer-bottom-links a:hover { color: #00B4D8; }
.footer-bottom-links span { color: rgba(255,255,255,0.3); font-size: 0.7rem; }

@media (max-width: 768px) {
    .footer-main { padding: 3rem 0 2rem; }
    .footer-bottom-links { justify-content: center; margin-top: 0.5rem; }
    .footer-bottom .col-md-6 { text-align: center !important; }
}
