/* Contact Bar */
.contact-bar {
    background: linear-gradient(135deg, #8B1538 0%, #6B0F2A 100%);
    padding: 30px 0;
    margin-bottom: 0;
}

.contact-bar-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.consultant-icon {
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.consultant-icon img {
    width: 28px;
    height: 28px;
}

.contact-text {
    color: white;
    font-size: 16px;
    line-height: 1.5;
}

.contact-info-right {
    text-align: right;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.hotline-label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.hotline-number {
    color: white;
    font-size: 24px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
}

.hotline-number:hover {
    color: #FFD700 !important;
}

/* Footer */
.footer {
    background: linear-gradient(180deg, #6B0F2A 0%, #4A0A1C 100%);
    color: white;
    padding: 60px 0 0;
}

.footer-main {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px 50px;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
    gap: 50px;
}

/* Footer Logo Column */
.footer-logo-section {
    padding-right: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.footer-address {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 25px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.footer-address:hover {
    color: #FFD700 !important;
}

.social-media-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
}

.social-links {
    display: flex;
    gap: 12px;
}

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

.social-link:hover {
    background: #FFC107;
    transform: translateY(-3px);
}

.social-link svg {
    width: 18px;
    height: 18px;
}

/* Footer Columns */
.footer-column h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: white;
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: #FFC107;
    padding-left: 5px;
}

.footer-links a.active {
    color: #FFC107;
    font-weight: 600;
}

/* Action Buttons Column */
.action-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.action-btn {
    padding: 14px 25px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    color: white;
    text-decoration: none;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.action-btn:hover {
    background: #FFC107;
    color: white;
    border-color: #FFC107;
}

.action-btn.active {
    background: #FFC107;
    color: white;
    border-color: #FFC107;
}

/* Footer Bottom */
.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: 25px 40px;
    text-align: center;
}

.copyright {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .footer-main {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-logo-section {
        grid-column: span 3;
    }
}

@media (max-width: 968px) {
    .contact-bar-content {
        flex-direction: column;
        gap: 25px;
        text-align: center;
    }

    .contact-info-right {
        text-align: center;
    }

    .footer-main {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-logo-section {
        grid-column: span 2;
    }

    .action-buttons {
        grid-column: span 2;
    }
}

@media (max-width: 576px) {
    .contact-bar {
        padding: 20px 0;
    }

    .contact-bar-content {
        padding: 0 20px;
        gap: 20px;
    }

    .contact-info-left {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    .consultant-icon {
        width: 50px;
        height: 50px;
    }

    .consultant-icon img {
        width: 24px;
        height: 24px;
    }

    .contact-text {
        font-size: 14px;
        line-height: 1.4;
    }

    .contact-info-right {
        gap: 5px;
    }

    .hotline-label {
        font-size: 12px;
        margin-bottom: 3px;
    }

    .hotline-number {
        font-size: 20px;
    }

    .footer-main {
        grid-template-columns: 1fr;
        padding: 0 20px 40px;
    }

    .footer-logo-section {
        grid-column: span 1;
    }

    .action-buttons {
        grid-column: span 1;
    }

    .footer-bottom {
        padding: 20px;
    }
}

@media (max-width: 400px) {
    .contact-bar {
        padding: 15px 0;
    }

    .contact-bar-content {
        padding: 0 15px;
        gap: 15px;
    }

    .contact-info-left {
        gap: 12px;
    }

    .consultant-icon {
        width: 45px;
        height: 45px;
    }

    .consultant-icon img {
        width: 22px;
        height: 22px;
    }

    .contact-text {
        font-size: 13px;
    }

    .hotline-number {
        font-size: 18px;
    }
}

/* Footer logo image */
.footer-logo-img {
    height: 60px;
    width: auto;
}

/* Footer address link */
.footer-address {
    text-decoration: none;
    display: block;
}

/* Qfox agency link in copyright */
.copyright-link {
    color: #FFC107;
    text-decoration: none;
}
