/* CTA Section Widget CSS - Simplified Version */

.cta-section-widget {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.cta-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 600px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    overflow: hidden;
    background: #ffffff;
}

/* Image Column - VISIBLE BY DEFAULT */
.cta-image {
    position: relative;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    min-height: 500px;
    /* REMOVED: opacity: 0; transform: translateX(-50px); */
}

.cta-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.4), transparent 70%);
    z-index: 1;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
}

/* Content Column - VISIBLE BY DEFAULT */
.cta-content {
    background-color: #F8F9FA;
    display: flex;
    align-items: center;
    padding: 60px;
    /* REMOVED: opacity: 0; transform: translateX(50px); */
}

.cta-content-inner {
    width: 100%;
    max-width: 600px;
}

.cta-heading {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #333333;
}

.cta-description {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #666666;
    margin-bottom: 40px;
}

/* Buttons */
.cta-buttons {
    display: flex;
    gap: 25px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.btn {
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
    text-align: center;
    justify-content: center;
}

.btn-primary {
    background: linear-gradient(135deg, #FF9100, #ff7043);
    color: white;
    box-shadow: 0 10px 30px rgba(255, 145, 0, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 145, 0, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    color: #333;
    border: 2px solid rgba(255, 145, 0, 0.3);
}

.btn-secondary:hover {
    background: #FF9100;
    color: white;
    border-color: #FF9100;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 145, 0, 0.3);
}

/* Business Address */
.business-address {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 40px;
    border: 2px solid rgba(255, 145, 0, 0.1);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    margin-top: 30px;
}

.business-address h4 {
    color: #FF9100;
    margin-bottom: 20px;
    font-size: 1.3rem;
    font-weight: 700;
}

.business-address .address-text {
    margin-bottom: 20px;
    color: #333;
    line-height: 1.6;
}

.business-address .business-hours {
    color: #333;
    margin: 0;
    line-height: 1.6;
}

.business-address strong {
    color: #FF9100;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .cta-container {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    
    .cta-image {
        min-height: 400px;
        order: 1;
    }
    
    .cta-content {
        order: 2;
        padding: 50px 40px;
    }
    
    .cta-heading {
        font-size: 2.4rem;
    }
    
    .cta-description {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .cta-content {
        padding: 40px 30px;
    }
    
    .cta-heading {
        font-size: 2rem;
        margin-bottom: 20px;
    }
    
    .cta-description {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 15px;
        margin-bottom: 40px;
    }
    
    .btn {
        padding: 14px 28px;
        font-size: 0.95rem;
        width: 100%;
        justify-content: center;
    }
    
    .business-address {
        padding: 30px 25px;
        margin-top: 20px;
    }
    
    .business-address h4 {
        font-size: 1.2rem;
        margin-bottom: 15px;
    }
    
    .cta-image {
        min-height: 300px;
    }
}

@media (max-width: 480px) {
    .cta-section-widget {
        margin-left: -20px;
        margin-right: -20px;
    }
    
    .cta-container {
        border-radius: 0;
    }
    
    .cta-content {
        padding: 30px 20px;
    }
    
    .cta-heading {
        font-size: 1.8rem;
    }
    
    .business-address {
        padding: 25px 20px;
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
}