/* Reset untuk footer */
/* html, body {
    max-width: 100vw;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
} */

/* Footer Layout */
.footer {
    background-color: #1a1f2c;
    color: #F6F5F5;
    padding: 30px 50px;
    position: relative;
    width: 100%;
    max-width: 100vw;
    overflow: hidden;
    font-family: 'Inter', sans-serif;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(211, 224, 234, 0.05) 0%, transparent 100%);
    pointer-events: none;
}

.footer-container {
    max-width: 1300px;
    width: 100%;
    margin: 0 auto;
    padding: 0 32px;
    overflow-x: hidden;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 64px;
    width: 100%;
    max-width: 100%;
}

/* Brand Section */
.footer-logo {
    margin-bottom: 2rem;
}

.footer-logo img {
    height: 40px;
    margin-bottom: 16px;
    max-width: 100%;
}

.brand-description {
    color: #D3E0EA;
    font-size: 15px;
    line-height: 1.6;
}

.footer-motto {
    color: #F6F5F5;
    font-style: italic;
    margin: 16px 0;
    font-weight: 500;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 16px;
    margin-top: 32px;
    flex-wrap: wrap;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(211, 224, 234, 0.1);
    color: #F6F5F5;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #D3E0EA;
    color: #1a1f2c;
    transform: translateY(-3px);
}

/* Section Headers */
.footer-section h3 {
    color: #F6F5F5;
    font-size: 19px;
    margin-bottom: 24px;
    font-weight: 600;
}
.partner-section h3 {
    color: #F6F5F5;
    font-size: 19px;
    margin-bottom: 24px;
    font-weight: 600;
    text-align: center;
}

/* Quick Links */
.footer-links {
    list-style: none;
    width: 100%;
}

.footer-links li {
    margin-bottom: 16px;
}

.footer-links a {
    color: #D3E0EA;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

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

/* Contact Info */
.contact-info {
    list-style: none;
    width: 100%;
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 16px;
    color: #D3E0EA;
}

.contact-info i {
    margin-top: 5px;
}

/* Download App Section */
.app-description {
    color: #D3E0EA;
    margin-bottom: 24px;
}

.store-buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
    max-width: 100%;
    margin-bottom: 48px;
}

.store-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    background: rgba(211, 224, 234, 0.1);
    padding: 13px 19px;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 100%;
}

.store-button:hover {
    background: #D3E0EA;
    transform: translateY(-3px);
}

.store-button i {
    font-size: 28px;
    color: #F6F5F5;
}

.store-text {
    color: #F6F5F5;
    text-align: left;
}

.store-button:hover i,
.store-button:hover .store-text {
    color: #1a1f2c;
}

.store-text span {
    display: block;
}

.store-text .small-text {
    font-size: 0.75rem;
    margin-bottom: 0.2rem;
}

.store-text .big-text {
    font-size: 1.1rem;
    font-weight: 600;
}

.powered-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
    width: 100%;
    max-width: 100%;
}

.powered-content {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1rem 1.5rem;
    background: rgba(211, 224, 234, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(211, 224, 234, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    min-width: 300px;
    max-width: 100%;
}

.powered-logo {
    width: 40px;
    height: 40px;
    background: #F6F5F5;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    flex-shrink: 0;
}

.powered-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.powered-text {
    display: flex;
    flex-direction: column;
}

.powered-label {
    font-size: 0.8rem;
    color: #D3E0EA;
    margin-bottom: 0.2rem;
}

.powered-name {
    font-size: 16px;
    font-weight: 600;
    color: #F6F5F5;
    white-space: nowrap;
}

/* Creator Info */
.creator-info {
    display: flex;
    align-items: center;
    gap: 16px;
    color: #D3E0EA;
    font-size: 0.95rem;
    padding: 1rem 1.5rem;
    background: rgba(211, 224, 234, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(211, 224, 234, 0.1);
    min-width: 300px;
    max-width: 100%;
}

.creator-info i {
    color: #F6F5F5;
    font-size: 19.2px;
    flex-shrink: 0;
}

.creator-text {
    display: flex;
    flex-direction: column;
    gap: 3.2px;
}

.creator-label {
    font-size: 13px;
    opacity: 0.8;
}

.creator-name {
    font-weight: 500;
}

/* Footer Bottom */
.footer-bottom {
    margin-top: 64px;
    position: relative;
    width: 100%;
    overflow: hidden;
}

.footer-bottom:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: rgba(211, 224, 234, 0.1);
}

.footer-bottom-content {
    padding-top: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    text-align: center;
    width: 100%;
    max-width: 100%;
}

/* Media Queries */
@media (max-width: 1200px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 48px;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 36px 16px;
    }

    .footer-container {
        padding: 0 16px;
    }

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

    .footer-logo, 
    .brand-description, 
    .footer-motto,
    .footer-section h3,
    .partner-section h3 {
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    .contact-info {
        max-width: 300px;
        margin: 0 auto;
    }

    .store-button,
    .store-text {
        justify-content: center;
        text-align: center;
    }

    .powered-wrapper {
        flex-direction: column;
        gap: 16px;
    }

    .powered-content,
    .creator-info {
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
    }

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