/* Global Hero Contact Buttons */
.hero-contact-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 20px 0;
    padding: 0 20px;
}

.hero-contact-buttons a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    color: #fff !important;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    min-width: 220px;
}

.hero-contact-buttons a span {
    color: #fff !important;
}

.hero-contact-buttons a:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.hero-contact-buttons a img {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1);
}

.hero-contact-buttons .btn-line {
    background-color: #06C755;
}

.hero-contact-buttons .btn-line:hover {
    background-color: #05b34c;
}

.hero-contact-buttons .btn-line img {
    filter: none;
}

.hero-contact-buttons .btn-call {
    background-color: #4b0708;
}

.hero-contact-buttons .btn-call:hover {
    background-color: #3b0607;
}

@media only screen and (max-width: 600px) {
    .hero-contact-buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .hero-contact-buttons a {
        width: 100%;
        max-width: 280px;
    }
}