/* CTA Section */
.mola-cta-section {
    padding: 80px 20px;
    background-color: var(--mola-white);
}

.mola-cta-container {
    max-width: 1300px;
    margin: 0 auto;
    width: 100%;
    position: relative;
    background: linear-gradient(135deg, #2C3E50 0%, #1A252F 100%);
    border-radius: 24px;
    min-height: 691px;
    padding: 60px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Corner Decorations */
.mola-cta-corner {
    position: absolute;
    width: 80px;
    height: 80px;
    opacity: 0.6;
    pointer-events: none;
}

.mola-cta-corner-tl {
    top: 40px;
    left: 40px;
}

.mola-cta-corner-tr {
    top: 40px;
    right: 40px;
}

.mola-cta-corner-bl {
    bottom: 40px;
    left: 40px;
}

.mola-cta-corner-br {
    bottom: 40px;
    right: 40px;
}

/* Content */
.mola-cta-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.mola-cta-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--mola-white);
    margin-bottom: 20px;
}

.mola-cta-description {
    font-size: 18px;
    line-height: 1.7;
    color: var(--mola-dark-text-muted);
    margin-bottom: 40px;
    max-width:600px;
}

/* Button Wrapper */
.mola-cta-button-wrapper {
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

/* Arrow - positioned BELOW and LEFT of button */
.mola-cta-arrow {
    position: absolute;
    top: 100%;
    left: -120px;
    width: 120px;
    height: auto;
    margin-top: 10px;
    opacity: 0.8;
    pointer-events: none;
}

/* Button */
.mola-cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 40px;
    background-color: var(--mola-accent);
    color: var(--mola-white);
    font-size: 18px;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0px 4px 6px -4px rgba(0, 168, 168, 0.2), 
                0px 10px 15px -3px rgba(0, 168, 168, 0.2);
}

.mola-cta-button:hover {
    background-color: var(--mola-accent-hover);
    transform: translateY(-2px);
    box-shadow: 0px 6px 8px -4px rgba(0, 168, 168, 0.4), 
                0px 12px 18px -3px rgba(0, 168, 168, 0.4);
    text-decoration: none;
    color: var(--mola-white);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .mola-cta-container {
        min-height: 600px;
        padding: 80px 50px;
    }

    .mola-cta-title {
        font-size: 42px;
    }

    .mola-cta-corner {
        width: 70px;
        height: 70px;
    }

    .mola-cta-arrow {
        left: -100px;
        width: 110px;
    }
}

@media (max-width: 768px) {
    .mola-cta-section {
        padding: 60px 20px;
    }

    .mola-cta-container {
        min-height: 500px;
        padding: 60px 40px;
        border-radius: 20px;
    }

    .mola-cta-title {
        font-size: 36px;
    }

    .mola-cta-description {
        font-size: 16px;
        margin-bottom: 32px;
    }

    .mola-cta-corner {
        width: 60px;
        height: 60px;
    }

    .mola-cta-corner-tl,
    .mola-cta-corner-tr {
        top: 30px;
    }

    .mola-cta-corner-bl,
    .mola-cta-corner-br {
        bottom: 30px;
    }

    .mola-cta-corner-tl,
    .mola-cta-corner-bl {
        left: 30px;
    }

    .mola-cta-corner-tr,
    .mola-cta-corner-br {
        right: 30px;
    }

    .mola-cta-arrow {
        left: -90px;
        width: 100px;
    }
}

@media (max-width: 640px) {
    .mola-cta-section {
        padding: 40px 16px;
    }

    .mola-cta-container {
        min-height: auto;
        padding: 60px 24px;
        border-radius: 16px;
    }

    .mola-cta-title {
        font-size: 28px;
        margin-bottom: 16px;
    }

    .mola-cta-description {
        font-size: 15px;
        margin-bottom: 28px;
    }

    .mola-cta-button {
        padding: 14px 32px;
        font-size: 16px;
        width: 100%;
        max-width: 280px;
    }

    .mola-cta-corner {
        width: 50px;
        height: 50px;
    }

    .mola-cta-corner-tl,
    .mola-cta-corner-tr {
        top: 20px;
    }

    .mola-cta-corner-bl,
    .mola-cta-corner-br {
        bottom: 20px;
    }

    .mola-cta-corner-tl,
    .mola-cta-corner-bl {
        left: 20px;
    }

    .mola-cta-corner-tr,
    .mola-cta-corner-br {
        right: 20px;
    }

    .mola-cta-arrow {
        display: none;
    }
}