/* ================================================================
   GLT CTA - INDUSTRIAL THEME
   ================================================================ */

.glt-cta-industrial {
    position: relative;
    padding: 100px 0;
    background-color: #0f172a; /* Deep Navy */
    background-image: url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?q=80&w=1200');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: #ffffff;
    overflow: hidden;
}

.glt-cta-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.95) 0%, rgba(15, 23, 42, 0.8) 100%);
    z-index: 1;
}

.glt-blueprint-grid {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px), 
                      linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    z-index: 2;
}

.glt-cta-flex {
    position: relative;
    z-index: 10;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
}

.glt-cta-tag {
    display: inline-block;
    color: #0ea5e9;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.75rem;
    margin-bottom: 15px;
}

.glt-cta-title {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #fff;
}

.glt-cta-p {
    max-width: 550px;
    color: #fff;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

/* Feature Checkmarks */
.glt-cta-features {
    display: flex;
    gap: 30px;
}

.glt-cta-feat {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    font-weight: 700;
    color: #ffffff;
}

/* Actions Area */
.glt-cta-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 25px;
}

.glt-btn-trad-primary {
    background: #0ea5e9;
    color: #ffffff;
    padding: 22px 45px;
    text-decoration: none;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.3s ease;
}

.glt-btn-trad-primary:hover {
    background: #ffffff;
    color: #0f172a;
}

.glt-cta-phone {
    text-align: right;
    text-decoration: none;
    display: block;
}

.glt-phone-label {
    display: block;
    font-size: 0.7rem;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.glt-phone-num {
    font-size: 1.5rem;
    font-weight: 800;
    color: #ffffff;
    transition: 0.3s;
}

.glt-cta-phone:hover .glt-phone-num {
    color: #0ea5e9;
}

/* Responsive */
@media (max-width: 992px) {
    .glt-cta-flex {
        flex-direction: column;
        text-align: center;
    }
    .glt-cta-actions {
        align-items: center;
    }
    .glt-cta-phone {
        text-align: center;
    }
    .glt-cta-features {
        justify-content: center;
    }
}