/* --- Common --- */
.tc-cta-card {
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.tc-cta-inner {
    width: 100%;
}

.tc-cta-media img {
    height: auto;
    display: block;
}

.tc-cta-content {
    width: 100%;
}

.tc-cta-title {
    margin: 0 0 10px;
    font-size: 20px;
    font-weight: 700;
}

.tc-cta-desc {
    margin: 0 0 20px;
    font-size: 14px;
    line-height: 1.5;
}

.tc-cta-divider {
    height: 3px;
    background-color: #3498db;
    margin: 15px 0;
    width: 50px;
}

.tc-cta-btn-wrapper {
    margin-top: auto;
}

.tc-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    text-decoration: none;
    background-color: #3498db;
    color: #fff;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-weight: 600;
    line-height: 1;
}

.tc-cta-btn i {
    margin-right: 8px;
    /* Default right icon spacing */
}

/* Full Width Button */
.tc-btn-width-full .tc-cta-btn {
    display: flex;
    width: 100%;
}

/* --- Style 1: Classic Box (Mockup Match) --- */
.tc-cta-style-1 {
    text-align: center;
    background-color: #104c86;
    /* Dark Blue from mockup */
    color: #fff;
    padding: 40px 30px;
}

.tc-cta-style-1 .tc-cta-media {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

.tc-cta-style-1 .tc-cta-title {
    color: #fff;
    font-size: 24px;
}

.tc-cta-style-1 .tc-cta-divider {
    margin: 15px auto;
    /* Center divider */
}

.tc-cta-style-1 .tc-cta-btn {
    background-color: #3498db;
    /* Specific blue */
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 16px;
}

.tc-cta-style-1 .tc-cta-btn i {
    margin-right: 0;
    margin-left: 10px;
    /* Icon on right primarily in mockup? Or standard left. Let's assume standard unless customized */
}


/* --- Style 2: Side-by-Side --- */
.tc-cta-style-2 {
    flex-direction: row;
    align-items: center;
    padding: 30px;
    background-color: #f9f9f9;
}

.tc-cta-style-2 .tc-cta-media {
    flex-shrink: 0;
    margin-right: 30px;
}

.tc-cta-style-2 .tc-cta-content {
    flex-grow: 1;
}

@media (max-width: 767px) {
    .tc-cta-style-2 {
        flex-direction: column;
        text-align: center;
    }

    .tc-cta-style-2 .tc-cta-media {
        margin-right: 0;
        margin-bottom: 20px;
    }
}


/* --- Style 3: Floating Icon --- */
.tc-cta-style-3 {
    text-align: center;
    padding: 60px 30px 40px;
    background-color: #fff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    margin-top: 30px;
    /* Space for floating icon */
    overflow: visible;
    /* Allow icon to pop out */
}

.tc-cta-style-3 .tc-cta-media {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    padding: 10px;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.tc-cta-style-3 .tc-cta-divider {
    margin: 20px auto;
}


/* --- Style 4: Minimal Border --- */
.tc-cta-style-4 {
    text-align: left;
    padding: 30px;
    border: 2px solid #e5e5e5;
    background-color: transparent;
}

.tc-cta-style-4 .tc-cta-media {
    margin-bottom: 20px;
}

.tc-cta-style-4 .tc-cta-title {
    font-size: 22px;
}


/* --- Style 5: Full Overlay --- */
.tc-cta-style-5 {
    height: 400px;
    /* Min height */
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    padding: 40px;
    color: #fff;
}

/* Background image handled by Elementor container BG usually, 
   but if user sets it on container, we need overlay content styling */

.tc-cta-style-5::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    /* Overlay */
    z-index: 1;
}

.tc-cta-style-5 .tc-cta-inner {
    position: relative;
    z-index: 2;
}

.tc-cta-style-5 .tc-cta-title,
.tc-cta-style-5 .tc-cta-desc {
    color: #fff;
}

.tc-cta-style-5 .tc-cta-media {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}