/* Premium Pop-Up Style */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600&display=swap');

:root {
    --ppup-primary: #2563eb;
    --ppup-whatsapp: #25d366;
    --ppup-dark: #1e293b;
    --ppup-white: #ffffff;
    --ppup-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
}

#ppup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(8px);
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

#ppup-overlay.ppup-visible {
    opacity: 1;
    visibility: visible;
}

#ppup-container {
    background: var(--ppup-white);
    width: 90%;
    max-width: 800px;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    box-shadow: var(--ppup-shadow);
    transform: translateY(20px) scale(0.95);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'Outfit', sans-serif;
}

#ppup-overlay.ppup-visible #ppup-container {
    transform: translateY(0) scale(1);
}

#ppup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.8);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
    z-index: 10;
    color: var(--ppup-dark);
}

#ppup-close:hover {
    background: #ff4d4d;
    color: white;
    transform: rotate(90deg);
}

.ppup-content {
    display: flex;
    flex-wrap: wrap;
    min-height: 400px;
}

.ppup-image-side {
    flex: 1;
    min-width: 300px;
    background: #f1f5f9;
    position: relative;
    overflow: hidden;
}

.ppup-image-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.ppup-placeholder-img {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #2563eb, #7c3aed);
}

.ppup-text-side {
    flex: 1.2;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 300px;
}

.ppup-text-side h2 {
    font-size: 32px;
    font-weight: 600;
    color: var(--ppup-dark);
    margin: 0 0 15px 0;
    line-height: 1.2;
}

.ppup-text-side p {
    font-size: 16px;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 30px;
}

.ppup-buttons {
    display: flex;
    gap: 15px;
}

.ppup-btn {
    text-decoration: none;
    padding: 14px 24px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    transition: all 0.3s ease;
    text-align: center;
}

.ppup-btn-phone {
    background: var(--ppup-primary);
    color: white;
    box-shadow: 0 4px 6px -1px rgba(37, 99, 235, 0.2);
}

.ppup-btn-phone:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(37, 99, 235, 0.3);
}

.ppup-btn-whatsapp {
    background: var(--ppup-whatsapp);
    color: white;
    box-shadow: 0 4px 6px -1px rgba(37, 211, 102, 0.2);
}

.ppup-btn-whatsapp:hover {
    background: #22c55e;
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(37, 211, 102, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
    .ppup-content {
        flex-direction: column;
    }
    .ppup-image-side {
        height: 200px;
        min-width: 100%;
    }
    .ppup-text-side {
        padding: 30px 20px;
        min-width: 100%;
    }
    .ppup-text-side h2 {
        font-size: 24px;
    }
    .ppup-buttons {
        flex-direction: column;
    }
    #ppup-container {
        width: 95%;
        margin: 20px;
    }
}
