/* CTA Contact Block Styles */
.cta-contact-block {
    padding: 4rem 0;
    text-align: center;
    background-color: #fff;
}

.cta-contact-block__title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1d1d1b;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.cta-contact-block__description {
    font-size: 1.125rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto 2.5rem;
    line-height: 1.6;
}

.cta-contact-block__description p {
    margin-bottom: 0;
}

.cta-contact-block__actions {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.cta-contact-block .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    min-width: 230px;
}

.cta-contact-block .btn-primary {
    background-color: #e3b04b;
    /* Gold color */
    color: #1d1d1b;
    border: 1px solid #e3b04b;
}

.cta-contact-block .btn-primary:hover {
    background-color: #d29e3a;
    color: #000;
    text-decoration: none;
}

.cta-contact-block .btn-secondary {
    background-color: #1d1d1b;
    color: #fff;
    border: 1px solid #1d1d1b;
}

.cta-contact-block .btn-secondary:hover {
    background-color: #333;
    color: #fff;
    text-decoration: none;
}

.cta-contact-block__contact-options {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2rem;
    padding-top: 3rem;
    /* border-top: 1px solid #eee; */
}

/* Contact Button Styles */
.contact-button {
    display: flex;
    align-items: center;
    background-color: #1d1d1b;
    color: #ffffff;
    padding: 1rem 1.5rem;
    border-radius: 4px;
    text-decoration: none;
    transition: background-color 0.3s ease;
    border: 1px solid #1d1d1b;
    min-width: 280px;
    text-align: left;
}

.contact-button:hover,
.contact-button:focus {
    background-color: #333;
    text-decoration: none;
    color: #ffffff;
}

.contact-button__icon {
    flex-shrink: 0;
    margin-right: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-button__icon img {
    width: 28px;
    height: 28px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    /* Ensure white icon */
}

.contact-button__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-button__label {
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 0.25rem;
    opacity: 0.9;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.contact-button__text {
    font-size: 1.125rem;
    font-weight: 700;
    line-height: 1.2;
}

@media (max-width: 768px) {
    .cta-contact-block__title {
        font-size: 2rem;
    }

    .cta-contact-block__actions,
    .cta-contact-block__contact-options {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .cta-contact-block .btn,
    .contact-button {
        width: 100%;
        max-width: 320px;
    }
}