/* Modern Footer Styling */
:root {
    --footer-blue: #1e40af;
    --footer-yellow: #facc15;
    --footer-text-light: rgba(255, 255, 255, 0.85);
}

.footer-wave-container {
    line-height: 0;
    overflow: hidden;
}

.footer-wave-container svg {
    position: relative;
    display: block;
    width: 100%;
    height: 60px;
}

.footer-wave-container .shape-fill {
    fill: var(--footer-blue);
}

.footer-modern {
    background-color: #f8f9fa;
    padding: 4rem 0 1.5rem;
    color: #6c757d;
    font-family: 'Poppins', sans-serif;
    position: relative;
}

.footer-brand {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    text-decoration: none;
}

.footer-logo {
    height: 42px;
    width: 42px;
    border-radius: 50%;
    margin-right: 0.75rem;
    transition: transform 0.3s ease;
}

.footer-brand:hover .footer-logo {
    transform: scale(1.1);
}

.footer-brand-text {
    font-weight: 800;
    font-size: 1.75rem;
    line-height: 1;
}

.footer-text-blue {
    color: var(--footer-blue);
}

.footer-text-yellow {
    color: var(--footer-yellow);
}

.footer-modern p {
    color: #6c757d;
}

.footer-heading {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    position: relative;
    display: inline-block;
}

.footer-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 45px;
    height: 3px;
    background-color: var(--footer-yellow);
    border-radius: 2px;
}

.footer-links {
    list-style: none;
    padding-left: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: #6c757d;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--footer-yellow);
    transform: translateX(5px);
}

.footer-social {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #e9ecef;
    color: var(--footer-blue);
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: var(--footer-yellow);
    color: var(--footer-blue);
    transform: translateY(-4px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
    color: #6c757d;
}

.contact-icon {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: #e9ecef;
    color: var(--footer-yellow);
    margin-right: 1rem;
    font-size: 1rem;
}

.footer-cta {
    display: inline-flex;
    align-items: center;
    background-color: var(--footer-yellow);
    color: var(--footer-blue);
    border: none;
    border-radius: 50px;
    padding: 0.8rem 1.75rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin-top: 1rem;
}

.footer-cta:hover {
    background-color: white;
    color: var(--footer-blue);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.footer-cta i {
    margin-right: 0.5rem;
}

.footer-bottom {
    padding-top: 1.5rem;
    margin-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    font-size: 0.9rem;
}

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

.footer-bottom a:hover {
    color: var(--footer-blue);
}
.hover-lift {
    transition: all 0.3s ease;
}

.hover-lift:hover {
    color: #fff !important;
    transform: translateY(-2px);
}

footer .fab, footer .fas {
    transition: all 0.3s ease;
}

footer .social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    transition: all 0.3s ease;
}

footer .social-icon:hover {
    background: var(--bs-primary);
    transform: translateY(-3px);
}

footer a:hover .fas, 
footer a:hover .fab {
    transform: scale(1.1);
}

/* Subscribe form */
footer .form-control {
    background-color: rgba(255,255,255,0.1);
    border: none;
    color: #fff;
    padding: 0.7rem 1rem;
}

footer .form-control::placeholder {
    color: rgba(255,255,255,0.5);
}

footer .form-control:focus {
    background-color: rgba(255,255,255,0.15);
    box-shadow: 0 0 0 0.25rem rgba(255,255,255,0.1);
}

/* Modern gradient badge */
.footer-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    font-size: 0.8rem;
    font-weight: 500;
    border-radius: 2rem;
    background: linear-gradient(90deg, var(--bs-primary) 0%, var(--bs-info) 100%);
    color: white;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(var(--bs-primary-rgb), 0.2);
}

/* Footer cta button */
.btn-footer-cta {
    padding: 0.5rem 1.5rem;
    border-radius: 2rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    border: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.btn-footer-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}

/* Floating animation for the badge */
@keyframes float-small {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-5px);
    }
    100% {
        transform: translateY(0px);
    }
}

.footer-floating {
    animation: float-small 3s ease-in-out infinite;
}

/* Footer waves divider */
.footer-waves {
    position: relative;
    height: 80px;
    margin-bottom: -1px;
    overflow: hidden;
}

.footer-waves svg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: translateY(1px);
}

.footer-waves .wave1 {
    fill: rgba(var(--bs-primary-rgb), 0.1);
}

.footer-waves .wave2 {
    fill: rgba(var(--bs-dark-rgb), 0.7);
    animation: wave-move 5s linear infinite;
}

.footer-waves .wave3 {
    fill: var(--bs-dark);
    animation: wave-move 7s linear reverse infinite;
}

@keyframes wave-move {
    0% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(-25%);
    }
    100% {
        transform: translateX(0);
    }
}

/* Update footer links with modern effects */
footer .link-list-item {
    position: relative;
    transition: all 0.3s ease;
    padding-left: 0;
}

footer .link-list-item a {
    position: relative;
    transition: all 0.3s ease;
}

footer .link-list-item a:before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--bs-primary);
    transition: all 0.3s ease;
}

footer .link-list-item a:hover:before {
    width: 100%;
}

/* Modern contact section */
.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.contact-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(var(--bs-primary-rgb), 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    color: var(--bs-primary);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.contact-item:hover .contact-icon {
    background: var(--bs-primary);
    color: #fff;
    transform: scale(1.1);
}
