/* CTA Messengers Section */
.cta-messengers {
    position: relative;
    background: linear-gradient(135deg, #2c3e50 0%, #4a6491 100%);
    color: #fff;
    padding: 60px 20px;
    margin: 50px 0;
    overflow: hidden;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('images/pattern.png') repeat;
    opacity: 0.1;
    z-index: 1;
}

.cta-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.cta-content {
    padding: 20px;
}

.cta-content h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: #fff;
}

.cta-subtitle {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.messengers-cta {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    max-width: 400px;
}

.messenger-cta-btn {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    border-radius: 10px;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255,255,255,0.2);
}

.messenger-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    background: rgba(255,255,255,0.2);
}

.messenger-cta-btn i {
    font-size: 2rem;
    margin-right: 15px;
    width: 40px;
    text-align: center;
}

.messenger-text {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.messenger-name {
    font-weight: bold;
    font-size: 1.2rem;
}

.messenger-desc {
    font-size: 0.9rem;
    opacity: 0.8;
}

.whatsapp-btn {
    border-color: #25D366;
}

.telegram-btn {
    border-color: #0088cc;
}

.cta-info {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    align-content: center;
}

.info-card {
    display: flex;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(5px);
    border-radius: 10px;
    padding: 20px;
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.3s ease;
}

.info-card:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-3px);
}

.info-card i {
    font-size: 1.8rem;
    margin-right: 20px;
    color: var(--primary-color);
    min-width: 40px;
}

.info-card h3 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.info-card p {
    margin-bottom: 5px;
    font-size: 0.95rem;
    opacity: 0.9;
}

.map-link {
    color: var(--primary-color);
    font-weight: bold;
    text-decoration: none;
    font-size: 0.9rem;
    display: inline-block;
    margin-top: 5px;
}

.map-link:hover {
    text-decoration: underline;
}

.call-note {
    font-size: 0.8rem;
    opacity: 0.7;
    margin-top: 10px;
}

/* Responsive */
@media (max-width: 992px) {
    .cta-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .cta-content {
        text-align: center;
    }
    
    .messengers-cta {
        margin: 0 auto;
    }
}

@media (max-width: 576px) {
    .cta-content h2 {
        font-size: 1.8rem;
    }
    
    .info-card {
        flex-direction: column;
        text-align: center;
    }
    
    .info-card i {
        margin-right: 0;
        margin-bottom: 15px;
    }
}