.contact-hero{
    padding: 210px 0 100px;
}
@media screen and (max-width: 767px), screen and (max-width: 825px) and (orientation: landscape) {
    .contact-hero{
        padding: 50px 0 64px;
    }
}
.contact-hero .container{
    height: 100%;
}
@media (max-width: 993px) {
    .contact-hero{
        padding: 180px 0 80px;
    }
}
@media (max-width: 768px) {
    .contact-hero{
        height: auto;
        padding: 150px 0 60px;
    }
}
@media (max-width: 480px) {
    .contact-hero{
        padding: 120px 0 40px;
    }
}
.inner-contact-hero{
    height: 100%;
    width: 100%;
}
@media (min-width: 1024px) {
    .inner-contact-hero__left {
        flex: 0 0 58.333333%;
        max-width: 58.333333%;
    }
}
.contact-hero__right{
    display: flex;
    align-items: flex-end;
    padding-top: calc(100% - 100px);
}
@media screen and (max-width: 767px), screen and (max-width: 825px) and (orientation: landscape) {
    .contact-hero__right{
        padding-top: 85px;
    }
}
.contact-hero__right .page__subtitle{
    color: var(--gray-color);
    font-size: clamp(15px, 1.5vw, 18px);
    max-width: unset;
}
@media (max-width: 768px) {
    .contact-hero__right{
        margin-top: 30px;
    }
}
.page-contact-form{
    border-top: 1px solid var(--gray-color);
}
.helper-scroll__text{
    font-size: clamp(14px, 1.2vw, 16px);
    line-height: 1.4;
    letter-spacing: 1px;
    color: var(--gray-color);
}
.helper-scroll__arrow{
    font-size: clamp(30px, 3vw, 40px);
    color: var(--primary-color);
    margin-top: 5px;
    animation: bounce 2s infinite;
    cursor: pointer;
}
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

.page-contact-form .wpcf7 input.wpcf7-text {
    padding: 15px 0;
    width: 100%;
    outline: none;
    background: transparent;
}
.page-contact-form .wpcf7 input.wpcf7-text:focus{
    border-color: var(--primary-color);
    outline: none;
}

/* Nút gửi */
.btn-wrap.btn-secondary-cf7 .wpcf7-submit{
    background: var(--white-color);
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}
.btn-wrap.btn-secondary-cf7::before{
    background: var(--primary-color);
    color: #fff;
}
/* Bottom */
.wpcf7-form .bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    flex-wrap: wrap;
    box-sizing: border-box;
}
/* Style cho placeholder */
.wpcf7-form input::placeholder,
.wpcf7-form textarea::placeholder {
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.5px;  /* giãn chữ nhẹ */
    transition: color 0.3s;
}

/* Khi focus thì đổi màu placeholder */
.wpcf7-form input:focus::placeholder,
.wpcf7-form textarea:focus::placeholder {
    color: #ccc; /* nhạt dần khi người dùng gõ */
}
.page-contact-info {
    position: relative;
    overflow: hidden;
}
.page-contact-info::after{
    content: "";
    position: absolute;
    background: linear-gradient(90deg, transparent 0, var(--primary-color));
    bottom: 0;
    left: 0;
    right: 0;
    display: block;
    z-index: -1;
    height: 100%;
    width: 100%;
}
.page-contact-info .container{
    height: 100%;
}
.inner-contact{
    height: 100%;
 }
.page-contact-info .video-background{
    background: linear-gradient(95deg, var(--background-color), #008fe7, #008fe7);
}
.contact-info-left{
    height: 100%;
}
.contact-info .email,
.contact-info .number {
    color: var(--white-milk-color);
    font-weight: 500;
    margin: 0.5rem 0;
    font-size: clamp(22px, 4vw, 32px);
}
.contact-info .address {
    flex-wrap: wrap;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #ddd;
}

.contact-info .address .address-text {
    color: var(--white-milk-color);
    font-size: clamp(14px, 1.5vw, 16px);
    line-height: 1.4;
}
.faq-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 40px;
}

.faq-item {
    margin-top: 20px;
    border-top: 1px solid rgba(66, 66, 66, 0.1);
    padding-top: 15px;
}

.faq-question {
    font-size: 23px;
    font-weight: 400;
    color: var(--text-color);
    cursor: pointer;
    position: relative;
    padding-right: 25px;
    transition: color 0.6s ease;
}

.faq-item.active .faq-question {
    color: var(--primary-color); /* màu nổi bật khi mở */
}
.faq-answer {
    font-weight: 300;
    margin-top: 10px;
    font-size: 16px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.4s ease;
    opacity: 0;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    opacity: 1;
}
@media (min-width: 1024px) {
    .faq-title{
        max-width: 200px;
    }
}
