.modern-footer {
    background: linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 100%);
    color: #fff;
    position: relative;
    margin-top: 80px;
}

.footer-wave {
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.footer-wave svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 60px;
    fill: var(--light);
}

.footer-content {
    padding: 80px 2rem 60px;
    position: relative;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1.2fr;
    gap: 50px;
}

/* Brand Column */
.footer-brand {
    padding-right: 20px;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--secondary);
}

.brand-logo i {
    font-size: 2rem;
    background: linear-gradient(135deg, var(--secondary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.brand-tagline {
    color: var(--secondary);
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 15px;
    letter-spacing: 0.02em;
}

.brand-description {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    font-size: 0.9rem;
    margin-bottom: 25px;
}

.brand-stats {
    display: flex;
    gap: 20px;
    margin-top: 25px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.stat-number {
    font-size: 1.4rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--secondary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Footer Columns */
.footer-col {
    display: flex;
    flex-direction: column;
}

.footer-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: #fff;
    position: relative;
    padding-bottom: 15px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary), transparent);
    border-radius: 2px;
}

/* Footer Links */
.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    padding: 5px 0;
}

.footer-links a i {
    font-size: 0.7rem;
    color: var(--secondary);
    transition: transform 0.3s ease;
}

.footer-links a:hover {
    color: var(--secondary);
    padding-left: 5px;
}

.footer-links a:hover i {
    transform: translateX(3px);
}

/* Contact Info */
.footer-contact {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-contact li {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.footer-contact i {
    font-size: 1.2rem;
    color: var(--secondary);
    margin-top: 3px;
    flex-shrink: 0;
}

.footer-contact div {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.footer-contact strong {
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
}

.footer-contact span {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    line-height: 1.6;
}

/* Newsletter */
.footer-newsletter {
    gap: 20px;
}

.newsletter-text {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 10px;
}

.newsletter-form {
    margin-bottom: 25px;
}

.input-groups {
    display: flex;
    gap: 0;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.input-groups:focus-within {
    border-color: var(--secondary);
    box-shadow: 0 0 0 3px rgba(212, 165, 116, 0.1);
}

.input-groups input {
    flex: 1;
    padding: 14px 20px;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 0.9rem;
    outline: none;
}

.input-groups input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.input-groups button {
    padding: 14px 25px;
    background: linear-gradient(135deg, var(--secondary), var(--accent));
    border: none;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.input-groups button:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(212, 165, 116, 0.4);
}

.input-groups button i {
    font-size: 1rem;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 12px;
    margin-bottom: 30px;
}

.social-link {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link:hover {
    background: linear-gradient(135deg, var(--secondary), var(--accent));
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(212, 165, 116, 0.3);
    border-color: transparent;
}

.social-link i {
    font-size: 1rem;
}

/* App Download */
.app-download {
    margin-top: 10px;
}

.app-text {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    margin-bottom: 15px;
}

.app-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.app-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 18px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    text-decoration: none;
    color: #fff;
    transition: all 0.3s ease;
}

.app-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--secondary);
    transform: translateX(5px);
}

.app-btn i {
    font-size: 1.8rem;
    color: var(--secondary);
}

.app-btn div {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.app-btn span {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.5);
}

.app-btn strong {
    font-size: 0.95rem;
    color: #fff;
}

/* Footer Bottom */
.footer-bottom {
    padding: 25px 2rem;
    background: rgba(0, 0, 0, 0.3);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.copyright {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.copyright strong {
    color: var(--secondary);
}

.copyright i {
    color: #e74c3c;
    animation: heartbeat 1.5s ease-in-out infinite;
}

@keyframes heartbeat {

    0%,
    100% {
        transform: scale(1);
    }

    10%,
    30% {
        transform: scale(1.1);
    }

    20%,
    40% {
        transform: scale(1);
    }
}

.payment-methods {
    display: flex;
    align-items: center;
    gap: 15px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
}

.payment-label {
    margin-right: 5px;
}

.payment-methods i {
    font-size: 1.8rem;
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.3s ease;
}

.payment-methods i:hover {
    color: var(--secondary);
}

/* Scroll to Top Button */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--secondary), var(--accent));
    border: none;
    border-radius: 50%;
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(212, 165, 116, 0.4);
    transition: all 0.3s ease;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(212, 165, 116, 0.6);
}

/* Responsive Footer */
@media (max-width: 1200px) {
    .footer-container {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 40px;
    }

    .footer-brand {
        grid-column: 1 / -1;
        max-width: 600px;
    }

    .brand-stats {
        justify-content: flex-start;
    }
}

@media (max-width: 768px) {
    .modern-footer {
        margin-top: 60px;
    }

    .footer-wave svg {
        height: 40px;
    }

    .footer-content {
        padding: 50px 1.5rem 40px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-brand {
        padding-right: 0;
    }

    .brand-stats {
        flex-wrap: wrap;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .payment-methods {
        flex-wrap: wrap;
        justify-content: center;
    }

    .scroll-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 480px) {
    .footer-content {
        padding: 40px 1rem 30px;
    }

    .brand-logo {
        font-size: 1.5rem;
    }
