.footer-modern {
    position: relative;
    color: #fff;
    padding: 40px 0 20px;
    overflow: hidden;
    background-image: url('../images/home.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.footer-modern::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #30313adb;
    z-index: 1;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 30px;
    position: relative;
    z-index: 2;
}

.footer-title {
    font-size: 1.2rem;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 8px;
    color: #ff6b00;
    font-family: 'Yeseva One', cursive;
}

.footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background: #ff6b00;
}

.footer-text {
    line-height: 1.5;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.5);
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: rgba(255, 107, 0, 0.1);
    color: #ff6b00;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #ff6b00;
    color: #fff;
    transform: translateY(-3px);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: #ff6b00;
    transform: translateX(5px);
}

.newsletter-form .input-group {
    display: flex;
    gap: 8px;
}

.newsletter-form input {
    flex: 1;
    padding: 10px 15px;
    border: 1px solid rgba(255, 107, 0, 0.2);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
}

.newsletter-form input:focus {
    outline: none;
    border-color: #ff6b00;
}

.btn-subscribe {
    padding: 10px 20px;
    border: none;
    border-radius: 20px;
    background: #ff6b00;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
}

.btn-subscribe:hover {
    background: #ff8533;
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding: 15px 0 0;
    margin-top: 30px;
    border-top: 1px solid rgba(255, 107, 0, 0.1);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    position: relative;
    z-index: 2;
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 20px;
    }

    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .social-links {
        justify-content: center;
    }

    .newsletter-form .input-group {
        flex-direction: column;
    }
} 