:root {
    --primary-blue: #3661bd;
    --primary-default-blue: #265ECA;
    --text-black: #1F2124;
    --bg-gray: #f2f4f6;
    --header-height: 90px;
    --font-family: 'Poppins', sans-serif;
    --text-black-default: #000000;
    --text-footer-gray: #333333;
    --font-size-default: 17px;
    --font-size-small: 14px;
    --font-medium: 500;
    --font-semibold: 600;
    --font-bold: 700;
    --font-extrabold: 800;
    --font-black: 900;
}

.contact-hero-section {
    width: 100%;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
}

.contact-hero-wrapper {
    overflow: hidden;
    padding-bottom: 5px;
}

.contact-page-title {
    font-family: var(--font-family);
    font-size: 100px;
    font-weight: var(--font-medium);
    color: var(--text-black-default);
    line-height: 1.2em;
    margin: 0;
    transform: translateY(110%);
    opacity: 0;
    animation: slideUpReveal 1.5s cubic-bezier(0.25, 1, 0.5, 1) forwards;
    letter-spacing: 0.3rem;
    margin-top: 90px;
}

@keyframes slideUpReveal {
    0% {
        transform: translateY(110%);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@media (max-width: 992px) {
    .contact-hero-section {
        height: 400px;
    }

    .contact-page-title {
        font-size: 60px;
    }
}

@media (max-width: 600px) {
    .contact-hero-section {
        height: 300px;
    }

    .contact-page-title {
        font-size: 42px;
    }
}

/* locaiton-section */
.location-section {
    width: 100%;
    background-color: #fff;
    padding: 80px 0;
    margin-top: 120px;
}

.location-container {
    width: 90%;
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 50px;
}

.location-left {
    flex: 1;
}

.location-label {
    display: block;
    font-size: 16px;
    font-weight: var(--font-medium);
    color: #000;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: var(--font-family);
    margin-left: -40px;
    transform: translateY(110%);
    opacity: 0;
    animation: slideUpReveal 1.5s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

.location-country {
    font-size: 80px;
    font-weight: 500;
    color: #000;
    line-height: 1;
    margin-bottom: 40px;
    font-family: var(--font-family);
    text-transform: uppercase;
    margin-top: 80px;
    margin-left: -40px;
}

.location-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-left: -40px;
}

.btn-black {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #000;
    color: #fff;
    padding: 14px 28px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.3s ease;
    font-family: var(--font-family);
}

.btn-black i {
    font-size: 12px;
}

.btn-black:hover {
    background-color: #333;
}

.location-right {
    flex: 1;
    max-width: 500px;
    padding-top: 50px; 
    margin-top: 140px;
}

.location-city {
    font-size: 38px;
    font-weight: 700;
    color: #000;
    margin-bottom: 25px;
    font-family: var(--font-family);
}

.location-info-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.location-info-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 16px;
    color: #000;
    font-weight: 500;
    font-family: var(--font-family);
}

.location-info-list li i {
    font-size: 18px;
    width: 20px;
    text-align: center;
}

.location-divider {
    width: 100%;
    height: 1px;
    background-color: #000;
    margin-bottom: 30px;
}

.wechat-area {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.wechat-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 500;
    color: #000;
    font-family: var(--font-family);
}

.wechat-label i {
    font-size: 20px;
}

.wechat-qr-img {
    max-width: 100%;
    /* width: 100%; */
    height: auto;
    display: block;
    margin-top: 5px;
}

@media (max-width: 992px) {
    .location-section {
        margin-top: 60px;
        padding: 50px 0;
    }

    .location-container {
        flex-direction: column;
        gap: 30px;
        padding: 0 20px;
    }

    .location-label, 
    .location-country, 
    .location-buttons {
        margin-left: 0;
    }

    .location-country {
        font-size: 70px;
        margin-top: 20px;
        margin-bottom: 30px;
    }
    
    .location-right {
        padding-top: 0;
        margin-top: 20px;
        max-width: 100%;
    }
}

@media (max-width: 600px) {
    .location-section {
        margin-top: 40px;
        padding: 40px 0;
    }

    .location-country {
        font-size: 50px;
        margin-bottom: 25px;
    }

    .location-city {
        font-size: 32px;
        margin-bottom: 20px;
    }

    .btn-black {
        width: 100%;
        justify-content: space-between;
    }

    .location-right {
        margin-top: 10px;
    }
}