.norfesela-footer {
    background: #c7d8cf;
    padding: 70px 0 20px;
    font-family: 'Inter', sans-serif;
    position: relative;
}

/* Brand */
.brand-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.logo-box {
    width: 36px;
    height: 36px;
    background: #0f3d2e;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-weight: 600;
}

.brand-name {
    font-weight: 600;
    letter-spacing: 1px;
}

.footer-text {
    color: #4a5a54;
    max-width: 320px;
    line-height: 1.6;
}

/* Titles */
.footer-title {
    font-size: 12px;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 18px;
}

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

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

.footer-links a {
    text-decoration: none;
    color: #3e4c47;
    transition: all 0.3s ease;
    font-size: 14px;
}

.footer-links a:hover {
    color: #0f3d2e;
    padding-left: 4px;
}

/* Social */
.social-icons {
    margin-top: 15px;
    display: flex;
    gap: 12px;
}

.social-icons a {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: #dbe7e1;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0f3d2e;
    transition: 0.3s;
}

.social-icons a:hover {
    background: #0f3d2e;
    color: #fff;
    transform: translateY(-3px);
}

/* Newsletter */
.newsletter-form {
    display: flex;
    background: #dbe7e1;
    border-radius: 10px;
    overflow: hidden;
    max-width: 320px;
}

.newsletter-form input {
    border: none;
    padding: 10px 12px;
    flex: 1;
    background: transparent;
    outline: none;
    font-size: 14px;
}

.newsletter-form button {
    border: none;
    background: #0f3d2e;
    color: #fff;
    width: 44px;
    cursor: pointer;
    transition: 0.3s;
}

.newsletter-form button:hover {
    background: #0c2f24;
}

/* Bottom */
.footer-bottom {
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    margin-top: 50px;
    padding-top: 18px;
    font-size: 13px;
    color: #4a5a54;
}

.footer-bottom a {
    text-decoration: none;
    color: #0f3d2e;
}

.footer-bottom a:hover {
    color: #000;
}

/* Floating Button */
.floating-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: #0f3d2e;
    color: #fff;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    z-index: 999;
}

.floating-btn:hover {
    transform: translateY(-4px);
    background: #0c2f24;
}

/* Responsive */
@media (max-width: 767px) {
    .norfesela-footer {
        text-align: center;
    }

    .footer-text {
        margin: auto;
    }

    .newsletter-form {
        margin: auto;
    }

    .social-icons {
        justify-content: center;
    }
}