/* Modern Footer Styles */
.modern-footer {
    background: linear-gradient(135deg, var(--footer-bg-1, #1a1a2e) 0%, var(--footer-bg-2, #16213e) 100%);
    color: #ffffff;
    margin-top: 60px;
    position: relative;
    overflow: hidden;
}

/* Decorative Wave */
.modern-footer::before {
    content: '';
    position: absolute;
    top: -50px;
    left: 0;
    width: 100%;
    height: 100px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 100'%3E%3Cpath fill='%23ffffff' fill-opacity='1' d='M0,50 C360,0 720,100 1440,50 L1440,0 L0,0 Z'%3E%3C/path%3E%3C/svg%3E") no-repeat;
    background-size: cover;
}

/* Main Footer Content */
.footer-content {
    padding: 80px 0 40px;
    position: relative;
    z-index: 1;
}

/* Section Headers */
.footer-section h4 {
    color: var(--primary-color-4, #4fbdba);
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 1.2rem;
    position: relative;
    padding-bottom: 10px;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color-4, #4fbdba) 0%, var(--primary-color-4, #4fbdba) 100%);
    border-radius: 2px;
    opacity: 0.7;
}

/* Links and Text */
.footer-section p {
    color: #b8c1ec;
    line-height: 1.8;
}

.footer-section a {
    text-decoration: none;
    transition: all 0.3s ease;
    line-height: 1.8;
}

.footer-section a:hover {
    text-decoration: underline;
    padding-left: 5px;
}

/* Contact Info */
.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: #b8c1ec;
}

.contact-item i {
    color: var(--primary-color-4, #4fbdba);
    margin-right: 12px;
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

/* Social Media Icons */
.social-links {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(79, 189, 186, 0.1);
    border: 2px solid var(--primary-color-4, #4fbdba);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color-4, #4fbdba);
    font-size: 1.2rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background: var(--primary-color-4, #4fbdba);
    color: var(--footer-bg-1, #1a1a2e);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(79, 189, 186, 0.3);
}

/* Info Section */
.info-section {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 15px;
    margin-top: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.info-section h5 {
    color: var(--primary-color-4, #4fbdba);
    margin-bottom: 15px;
    font-size: 1.1rem;
}


/* Quick Links */
.quick-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.quick-links li {
    margin-bottom: 12px;
    position: relative;
    padding-left: 20px;
}

.quick-links li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--primary-color-4, #4fbdba);
    font-size: 1.2rem;
}

/* Bottom Bar */
.footer-bottom {
    background: rgba(0, 0, 0, 0.3);
    padding: 20px 0;
    margin-top: 40px;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom-content p {
    margin: 0;
    color: #b8c1ec;
    font-size: 0.9rem;
}

.footer-bottom-links {
    display: flex;
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-bottom-links a {
    text-decoration: none;
    font-size: 0.9rem;
}

.footer-bottom-links a:hover {
    text-decoration: underline;
}

/* Logo Section */
.footer-logo {
    margin-bottom: 20px;
}

.footer-logo img {
    max-height: 60px;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

/* Animated Background Elements */
.footer-decoration {
    position: absolute;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(79, 189, 186, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.footer-decoration.one {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.footer-decoration.two {
    top: 60%;
    right: 10%;
    width: 150px;
    height: 150px;
    animation-delay: 3s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .modern-footer::before {
        top: -30px;
        height: 60px;
    }
    
    .footer-content {
        padding: 60px 0 30px;
    }
    
    .footer-section {
        margin-bottom: 40px;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form button {
        width: 100%;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-bottom-links {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .social-links {
        justify-content: center;
    }
}

/* Hover Effects */
.footer-section {
    transition: transform 0.3s ease;
}

.footer-section:hover {
    transform: translateY(-5px);
}

/* Additional Decorative Elements */
.footer-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(79, 189, 186, 0.2);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--primary-color-4, #4fbdba);
    margin-top: 10px;
}

.footer-badge i {
    font-size: 1rem;
}