/* ==================== CONTACT PAGE FOOTER ==================== */
/* Mengikuti pola yang sama dengan about-footer-section */

.contact-section {
    width: 100%;
    min-height: 100vh;
    padding-top: 120px;
    padding-left: 50px;
    padding-right: 50px;
    padding-bottom: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    background: url('../index.pict/background_contact_us.gif') center/cover no-repeat;
}

/* ==================== TEXT ==================== */
.contact-copy {
    width: 100%;
    text-align: center;
    position: relative;
    z-index: 5;
    margin-top: 10px;
}

.contact-copy h2 {
    color: white;
    font-size: clamp(42px, 4.5vw, 82px);
    font-weight: 400;
    line-height: 1.15;
    letter-spacing: -2px;
}

/* ==================== GET IN TOUCH ==================== */
.contact-get-in-touch {
    position: absolute;
    left: 50%;
    bottom: 10px;
    transform: translateX(-50%);
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: none;
    mix-blend-mode: overlay;
}

.get-in-touch-img {
    width: 92vw;
    max-width: 1550px;
    opacity: 1;
    object-fit: contain;
}

/* ==================== FOOTER BOTTOM ==================== */
.footer-bottom {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    position: relative;
    z-index: 10;
    padding-top: 80px;
}

/* ==================== GROUP: LOGO UTAMA + COPYRIGHT ==================== */
.footer-left {
    display: flex;
    align-items: flex-end;
    gap: 30px;
}

/* LOGO UTAMA - UKURAN BESAR */
.footer-logo {
    transform: translateY(90px);
    margin-left: -90px;
}

.footer-logo img {
    width: 450px;
    height: auto;
    display: block;
}

/* COPYRIGHT - MENGGUNAKAN LOGO footer_2026.png */
.footer-copyright {
    display: flex;
    align-items: center;
    padding-bottom: 9px;
}

.copyright-logo {
    width: auto;
    height: 22px;
    display: block;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.copyright-logo:hover {
    opacity: 1;
}

/* ==================== LINKS KANAN ==================== */
.footer-links {
    display: flex;
    align-items: center;
    gap: 70px;
    flex-wrap: wrap;
    padding-bottom: 0px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.04em;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 0.6;
}

/* ==================== RESPONSIVE TABLET ==================== */
@media (min-width: 768px) and (max-width: 1024px) {
    .contact-section {
        min-height: 75vh;
        padding-top: 100px;
        padding-left: 40px;
        padding-right: 40px;
        padding-bottom: 40px;
    }
    
    .contact-copy h2 {
        font-size: 48px;
        letter-spacing: -1px;
    }
    
    .contact-get-in-touch {
        bottom: 80px;
        mix-blend-mode: overlay;
    }
    
    .get-in-touch-img {
        width: 85vw;
        opacity: 1;
    }
    
    .footer-bottom {
        flex-direction: row;
        align-items: flex-end;
        justify-content: space-between;
        gap: 20px;
        padding-top: 60px;
    }
    
    .footer-left {
        gap: 20px;
    }
    
    .footer-logo {
        margin-left: 0;
        transform: translateY(50px);
    }
    
    .footer-logo img {
        width: 300px;
    }
    
    .copyright-logo {
        height: 22px;
    }
    
    .footer-links {
        gap: 30px;
    }
    
    .footer-links a {
        font-size: 11px;
    }
}

/* ==================== RESPONSIVE MOBILE ==================== */
@media (max-width: 767px) {
    .contact-section {
        min-height: 100vh;
        padding-top: 80px;
        padding-left: 20px;
        padding-right: 20px;
        padding-bottom: 20px;
    }
    
    .contact-copy {
        margin-bottom: 20px;
    }
    
    .contact-copy h2 {
        font-size: 32px;
        line-height: 1.25;
        letter-spacing: -1px;
    }
    
    .contact-get-in-touch {
        bottom: 60px;
        mix-blend-mode: overlay;
    }
    
    .get-in-touch-img {
        width: 100%;
        opacity: 1;
    }
    
    /* ===== MOBILE: LAYOUT BARU ===== */
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        padding-top: 20px;
        margin-bottom: 0;
    }
    
    /* BARIS 1: Links horizontal (Instagram, email, TikTok) */
    .footer-links {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 10px;
        width: 100%;
        margin-left: 0;
        order: 1;
    }
    
    .footer-links a {
        font-size: 10px;
        white-space: nowrap;
    }
    
    /* BARIS 2: Logo kiri + Copyright kanan - SEJAJAR */
    .footer-left {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 0;
        width: 100%;
        margin-left: 0;
        order: 2;
    }
    
    .footer-logo {
        margin-left: 0;
        transform: translateY(0);
    }
    
    .footer-logo img {
        width: 100px;
    }
    
    .footer-copyright {
        display: flex;
        align-items: center;
        padding-bottom: 0;
    }
    
    .copyright-logo {
        height: 14px;
        display: block;
    }
}

/* ==================== RESPONSIVE SMALL MOBILE ==================== */
@media (max-width: 480px) {
    .contact-section {
        min-height: 50vh;
        padding-top: 90px;
        padding-left: 16px;
        padding-right: 16px;
        padding-bottom: 16px;
    }
    
    .contact-copy h2 {
        font-size: 24px;
        margin-bottom: 0;
    }
    
    .contact-copy {
        margin-bottom: 10px;
    }
    
    .contact-get-in-touch {
        bottom: 90px;
        mix-blend-mode: overlay;
    }
    
    .footer-links a {
        font-size: 9px;
    }
    
    .footer-logo img {
        width: 80px;
    }
    
    .copyright-logo {
        height: 12px;
    }
    
    .get-in-touch-img {
        opacity: 1;
    }
    
    .footer-bottom {
        gap: 15px;
        padding-top: 15px;
        margin-bottom: 0;
    }
}

/* ==================== RESPONSIVE DESKTOP LARGE ==================== */
@media (min-width: 1440px) and (max-width: 1919px) {
    .contact-section {
        padding-top: 150px;
        padding-left: 100px;
        padding-right: 100px;
        padding-bottom: 60px;
    }
    
    .contact-copy h2 {
        font-size: 82px;
        letter-spacing: -2px;
    }
    
    .get-in-touch-img {
        width: 80vw;
        max-width: 1800px;
    }
    
    .footer-logo img {
        width: 600px;
    }
    
    .copyright-logo {
        height: 40px;
    }
    
    .footer-links {
        gap: 90px;
    }
    
    .footer-links a {
        font-size: 14px;
    }
}

/* ==================== RESPONSIVE EXTRA LARGE DESKTOP ==================== */
@media (min-width: 1920px) {
    .contact-section {
        padding-top: 180px;
        padding-left: 150px;
        padding-right: 150px;
        padding-bottom: 80px;
    }
    
    .contact-copy {
        margin-top: 60px;
    }
    
    .contact-copy h2 {
        font-size: 96px;
        letter-spacing: -3px;
    }
    
    .get-in-touch-img {
        width: 70vw;
        max-width: 2000px;
    }
    
    .footer-logo {
        transform: translateY(120px);
        margin-left: -100px;
    }
    
    .footer-logo img {
        width: 700px;
    }
    
    .copyright-logo {
        height: 50px;
    }
    
    .footer-links {
        gap: 120px;
    }
    
    .footer-links a {
        font-size: 16px;
        letter-spacing: 0.06em;
    }
}