/* Popups for Contact Form 7 - Frontend UI */

/* Arka Plan Karartma (Overlay) */
#pcf7p-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 999999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

#pcf7p-popup-overlay.pcf7p-visible {
    opacity: 1;
    visibility: visible;
}

/* Pop-up Kutusu */
#pcf7p-popup-container {
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    width: 90%;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
    opacity: 0; /* Animasyonlar için başlangıç durumu */
}

/* -------------------------------- */
/* YENİ ANİMASYON EFEKTLERİ */
/* -------------------------------- */

/* 1. Fade-in Animasyonu */
.anim-fade-in {
    animation: pcf7pFadeIn 0.5s forwards ease-in-out;
}
@keyframes pcf7pFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* 2. Slide-up Animasyonu */
.anim-slide-up {
    animation: pcf7pSlideUp 0.5s forwards ease-out;
}
@keyframes pcf7pSlideUp {
    from { opacity: 0; transform: translateY(50px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Kapatma Butonu */
#pcf7p-close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #f1f1f1;
    border: none;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background 0.2s;
}

#pcf7p-close-btn:hover {
    background: #ff4d4d !important;
    color: white !important;
}

/* Form Üstü Reklam/İçerik Alanı */
.pcf7p-promo-area {
    margin-bottom: 20px;
    text-align: center;
}
.pcf7p-promo-area img {
    max-width: 100%;
    height: auto;
    border-radius: 6px;
    margin-bottom: 10px;
}
.pcf7p-promo-area h2, .pcf7p-promo-area h3 {
    margin-top: 0;
    color: #1d2327;
}

/* Gizleme Yardımcı Sınıfı */
.pcf7p-hidden {
    display: none !important;
}