.section.footer {
    background: #181c24;
    color: #e0e0e0;
    padding: 40px 0 20px 0;
    font-size: 16px;
    border-top: 4px solid #eab308;
}
.footer-container {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}
.footer-logo img {
    margin-bottom: 16px;
    filter: drop-shadow(0 2px 8px #0008);
}
.footer-info {
    margin-bottom: 18px;
    line-height: 1.6;
}
.footer-info .company-name {
    font-weight: bold;
    font-size: 18px;
    color: #eab308;
    margin-bottom: 6px;
    letter-spacing: 1px;
}
.footer-social {
    margin-bottom: 16px;
}
.footer-social a {
    display: inline-block;
    margin: 0 10px;
    color: #eab308;
    font-size: 22px;
    transition: color 0.2s;
}
.footer-social a:hover {
    color: #fff;
}
.footer-copyright {
    font-size: 14px;
    color: #aaa;
    margin-top: 10px;
    letter-spacing: 1px;
}
@media (max-width: 600px) {
    .section.footer {
        padding: 24px 0 12px 0;
        font-size: 15px;
    }
    .footer-container {
        max-width: 98vw;
        padding: 0 8px;
    }
    .footer-logo img {
        height: 44px;
        margin-bottom: 10px;
    }
    .footer-info {
        margin-bottom: 12px;
        font-size: 14px;
    }
    .footer-info .company-name {
        font-size: 16px;
    }
    .footer-social {
        margin-bottom: 10px;
    }
    .footer-social a {
        font-size: 28px;
        margin: 0 14px;
    }
    .footer-copyright {
        font-size: 12px;
        margin-top: 8px;
    }
}
.wrap {
    max-height: fit-content;
}

/* Welcome Modal Glassmorphism Design */
.welcome-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(10, 10, 15, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease-in-out;
}

.welcome-overlay.show {
    opacity: 1;
}

.welcome-modal {
    background: linear-gradient(145deg, #1f222e 0%, #15161c 100%);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 20px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.7), 0 0 30px rgba(234, 179, 8, 0.2);
    overflow: hidden;
    position: relative;
    transform: scale(0.9) translateY(20px);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.welcome-overlay.show .welcome-modal {
    transform: scale(1) translateY(0);
}

.welcome-modal-header {
    height: 180px;
    background: url('../images/welcome_banner.png') center/cover no-repeat;
    position: relative;
}

.welcome-modal-header::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; width: 100%; height: 60%;
    background: linear-gradient(to top, #1f222e, transparent);
}

.welcome-btn-close {
    position: absolute;
    top: 15px; right: 15px;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.2);
    width: 32px; height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.2s;
    font-size: 14px;
}
.welcome-btn-close:hover {
    background: rgba(234, 179, 8, 0.8);
    transform: rotate(90deg);
}

.welcome-modal-body {
    padding: 30px 25px;
    text-align: center;
    color: #e0e0e0;
}

.welcome-title {
    color: #eab308;
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
    letter-spacing: 1px;
    text-transform: uppercase;
    font-family: 'Roboto Condensed', sans-serif;
}

.welcome-text {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 25px;
}

.welcome-text strong {
    color: #fff;
}

.welcome-btn {
    display: inline-block;
    padding: 12px 35px;
    background: linear-gradient(90deg, #d4af37 0%, #ffdf00 50%, #d4af37 100%);
    background-size: 200% auto;
    color: #111;
    font-weight: bold;
    font-size: 16px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    font-family: 'Roboto', sans-serif;
}

.welcome-btn:hover {
    background-position: right center;
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.6);
    text-decoration: none;
}