/* ==========================================================================
   INNOVA SPACE –  HOME CONTACT CTA
   ========================================================================== */

.innovaspace-hero-cta-wrapper {
    width: 100%;
    padding: 20px 20px;
    background: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
    margin: 20px 0;
}

.innovaspace-hero-cta-inner {
    width: 100%;
    max-width: 900px;
    background: #ffffff; 
    border: 1px solid #111111; 
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    padding: 60px 40px;
    text-align: center;
    z-index: 5;

    display: flex;
    flex-direction: column;
    align-items: center;
    
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
}

.innovaspace-hero-cta-inner:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.hero-cta-title {
    font-size: 36px !important;
    font-weight: 800 !important;
    color: #111111 !important;
    line-height: 1.2 !important;
    margin: 0 0 16px 0 !important;
    letter-spacing: -1px !important; 
}

.hero-cta-subtitle {
    font-size: 18px !important; 
    font-weight: 500 !important;
    color: #111111 !important; 
    line-height: 1.5 !important;
    margin: 0 0 32px 0 !important;
    opacity: 0.7; 
}

.hero-cta-action {
    display: flex;
    justify-content: center;
    width: 100%;
}

.hero-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: #A5DB5C;
    color: #111111 !important;
    font-size: 16px;
    font-weight: 700;
    padding: 18px 48px;
    border-radius: 12px;
    text-decoration: none !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.hero-cta-btn-icon {
    transition: transform 0.3s ease;
}

.hero-cta-btn:hover {
    background: #111111;
    color: #ffffff !important;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.hero-cta-btn:hover .hero-cta-btn-icon {
    transform: translateX(4px);
}

/* ── MOBILE RESPONSIVENESS ── */
@media (max-width: 768px) {
    .innovaspace-hero-cta-wrapper {
        padding: 10px;
        margin: 10px 0;
        box-sizing: border-box;
    }
    .innovaspace-hero-cta-inner {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        padding: 28px 18px; 
        border-radius: 14px;
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
    }
    .hero-cta-title {
        font-size: 20px !important; 
        line-height: 1.35 !important; 
        letter-spacing: -0.3px !important; 
        margin-bottom: 12px !important;
    }
    .hero-cta-subtitle {
        font-size: 14px !important;
        line-height: 1.45 !important;
        margin: 0 0 20px 0 !important;
    }
    .hero-cta-btn {
        width: auto !important;
        max-width: 100%;
        padding: 14px 32px;
        font-size: 14px;
        border-radius: 10px;
        box-sizing: border-box;
    }
}

@media (max-width: 576px) {
    .hero-cta-btn {
        width: 100% !important;
        padding: 14px 16px;
    }
}
