/**
 * Contact CTA Shortcode Styles
 * Responsive 4-column layout for contact action buttons
 */

.contact-cta-container {
    width: 100%;
    background: #f5f5f5;
    padding: 60px 20px;
}

.contact-cta-content {
    max-width: var(--pls-container-width);
    margin: 0 auto;
    text-align: center;
}

/* Title */
.contact-cta-title {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0px;
    line-height: 1.3;
}

/* Subtitle */
.contact-cta-subtitle {
    font-size: 18px;
    color: #706f6f;
    margin: 0 0 32px;
    line-height: 1.6;
    font-weight: 400;
    letter-spacing: 0.9px;
}

/* Buttons Container */
.contact-cta-buttons {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0;
    margin: 0 auto;
    max-width: 100%;
}

/* Vertical Divider */
.contact-cta-divider {
    width: 1px;
    height: 60px;
    background: #ddd;
}

/* Individual Button Item (now clickable) */
.contact-cta-button-item {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    padding: 20px 30px;
    transition: all 0.3s ease;
    flex: 1;
    justify-content: center;
}



/* Text Container */
.contact-cta-text {
    display: flex;
    flex-direction: column;
    gap: 5px;
    text-align: right;
}

/* Icon */
.contact-cta-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-cta-icon img {
    width: 45px;
    height: 45px;
    object-fit: contain;
    display: block;
    transition: transform 0.3s ease;
}



/* Button Label */
.contact-cta-button-label {
    font-size: 18px;
    font-weight: 700;
    color: #222222;
    line-height: 1.2;
    direction: ltr;
    margin-bottom: 0;
}

/* Button Link Text */
.contact-cta-button-link {
    font-size: 16px;
    font-weight: 600;
    color: #222222;
    text-decoration: underline;
    line-height: 1.2;
    text-underline-offset: 4px;
    direction: ltr;
}



/* RTL Support */
[dir="rtl"] .contact-cta-content {
    text-align: center;
}

/* Responsive Design */
@media (max-width: 991px) {
    .contact-cta-title {
        font-size: 26px;
    }
    
    .contact-cta-subtitle {
        font-size: 16px;
        margin-bottom: 30px;
    }
    
    .contact-cta-buttons {
        flex-wrap: wrap;
    }
    
    .contact-cta-button-item {
        flex: 1 1 45%;
        min-width: 200px;
        flex-direction: column-reverse
    }
    
    .contact-cta-divider {
        display: none;
    }
}

@media (max-width: 767px) {
    .contact-cta-container {
        padding: 36px 40px;
    }
    
    .contact-cta-buttons {
        flex-direction: column;
        gap: 24px;
    }
    
    .contact-cta-button-item {
        width: 100%;
        padding: 20px 20px;
    }
    
    .contact-cta-button-item:last-child {
        border-bottom: none;
    }
    
    .contact-cta-title {
        font-size: 24px;
        margin-bottom: 8px;
    }
    
    .contact-cta-subtitle {
        font-size: 16px;
        margin-bottom: 25px;
    }
    
    .contact-cta-button-label {
        font-size: 16px;
        text-align: center;
    }
    
    .contact-cta-button-link {
        font-size: 13px;
        text-align: center;
    }

    .contact-cta-text{
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .contact-cta-title {
        font-size: 22px;
        margin-bottom: 8px;
    }
    
    .contact-cta-subtitle {
        font-size: 18px;
        line-height: 25px;
    }
    
    .contact-cta-button-item {
        padding: 18px 15px;
        gap: 12px;
    }
    
    .contact-cta-icon {
        width: 45px;
        height: 45px;
    }
    
    .contact-cta-icon img {
        width: 40px;
        height: 40px;
    }
    
    .contact-cta-button-label {
        font-size: 20px;
        margin-bottom: 0;
        text-align: center;
    }
    
    .contact-cta-button-link {
        font-size: 18px;
        text-align: center;
    }
}


