/* ---------------- New Modern Footer Design ---------------- */

.footer {
    background: #1a1a1f; /* Darker modern background */
    color: #e0e0e0; /* Softer text color */
    padding: 80px 0 40px;
    font-size: 16px;

}

.footer h4 {
    color: #ffffff;
    margin-bottom: 25px;
    font-size: 20px;
    font-weight: 700;
    position: relative;
    padding-bottom: 12px;
}

.footer h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 3px;
    width: 50px;
    background: #FF6F61; /* Vibrant accent */
    border-radius: 2px;
}

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

.footer ul li {
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: transform 0.3s ease;
}

.footer ul li:hover {
    transform: translateX(5px);
}

.footer ul li i {
    color: #FF6F61;
    min-width: 22px;
    font-size: 18px;
}

.footer ul li a {
    color: #ccc;
    text-decoration: none;
    display: inline-block;
    transition: color 0.3s ease;
}

.footer ul li a:hover {
    color: #00e5ff;
}

.footer .social-icons {
    margin-top: 25px;
}

.footer .social-icons a {
    color: #e0e0e0;
    margin-right: 12px;
    font-size: 20px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    background: transparent;
}

.footer .social-icons a:hover {
    background-color: #00e5ff;
    color: #1a1a1f;
    border-color: #00e5ff;
}

.footer .subscribe-box {
    margin-top: 25px;
    display: flex;
    max-width: 400px;
    background: #2a2a34;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.footer .subscribe-box input {
    flex: 1;
    padding: 15px 18px;
    border: none;
    outline: none;
    font-size: 15px;
    color: #1a1a1f;
    background: #f5f5f5;
    border-radius: 8px 0 0 8px;
}

.footer .subscribe-box button {
    padding: 0 20px;
    background-color: #FF6F61;
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 18px;
    transition: background 0.3s ease;
    border-radius: 0 8px 8px 0;
}

.footer .subscribe-box button:hover {
    background-color: #ff4f3c;
}

.footer .bottom-text {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    margin-top: 50px;
    text-align: center;
}

.footer .bottom-text .keywords {
    margin-bottom: 18px;
    font-size: 14px;
    color: #999;
    line-height: 1.8;
}

.footer .bottom-text .copyright {
    font-size: 15px;
    color: #bbb;
}

.footer .bottom-text .copyright a {
    color: #FF6F61;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer .bottom-text .copyright a:hover {
    color: #ff9b88;
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer .subscribe-box {
        flex-direction: column;
    }

    .footer .subscribe-box input {
        width: 100%;
        border-radius: 8px 8px 0 0;
    }

    .footer .subscribe-box button {
        width: 100%;
        border-radius: 0 0 8px 8px;
        padding: 15px 0;
    }

    .footer ul li {
        gap: 8px;
    }

    .footer .social-icons a {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
}
