/* Ana Buton Alanı */
.cta-wrapper {
    margin-top: 30px;
    padding: 25px;
    border-radius: 14px;
    background: linear-gradient(135deg, #f8f9fb, #ffffff);
    border: 1px solid #eee;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.06);
}

.cta-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #222;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #111, #333);
    color: #fff;
    padding: 14px 26px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    border: none;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    background: linear-gradient(135deg, #000, #222);
}

.cta-sub {
    margin-top: 10px;
    font-size: 13px;
    color: #777;
}

/* Popup (Açılır Pencere) Tasarımı */
#ctaOverlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.6);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

#ctaBox {
    background: #fff;
    width: 360px;
    max-width: 90%;
    border-radius: 14px;
    padding: 25px;
    text-align: center;
    position: relative;
}

.cta-option {
    display: block;
    margin-bottom: 12px;
    padding: 12px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: opacity 0.2s;
}

.cta-option:hover {
    opacity: 0.9;
}

.whatsapp { background: #25D366; color: #fff; }
.phone { background: #007bff; color: #fff; }
.contact { background: #333; color: #fff; }

#ctaClose {
    position: absolute;
    top: 10px;
    right: 12px;
    cursor: pointer;
    font-size: 24px;
    color: #aaa;
    line-height: 1;
}