/* Popup Overlay */
.booking-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Popup Modal */
.booking-popup-modal {
    background: white;
    border-radius: 24px;
    max-width: 480px;
    width: 100%;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    overflow: hidden;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Close Button */
.popup-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.05);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6b7280;
    transition: all 0.2s ease;
    z-index: 10;
}

.popup-close:hover {
    background: rgba(0, 0, 0, 0.1);
    transform: rotate(90deg);
    color: #374151;
}

/* Content */
.popup-content {
    padding: 48px 32px 32px;
    text-align: center;
}

/* Icon */
.popup-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: #000066;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 8px 24px rgba(0, 0, 102, 0.3);
}

/* Text */
.popup-headline {
    font-size: 28px;
    font-weight: 800;
    color: #111827;
    margin: 0 0 12px 0;
    line-height: 1.2;
}

.popup-subheadline {
    font-size: 16px;
    color: #6b7280;
    margin: 0 0 28px 0;
    line-height: 1.5;
}

/* Benefits */
.popup-benefits {
    background: #f9fafb;
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 28px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: #374151;
    font-weight: 500;
    text-align: left;
}

.benefit-item svg {
    flex-shrink: 0;
}

/* Buttons */
.popup-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.popup-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 24px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s ease;
    border: 2px solid transparent;
}

.popup-btn-primary {
    background: #000066;
    color: white;
    box-shadow: 0 4px 14px rgba(0, 0, 102, 0.3);
}

.popup-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 102, 0.4);
    background: #00004d;
    color: white;
}

.popup-btn-secondary {
    background: white;
    color: #000066;
    border-color: #e5e7eb;
}

.popup-btn-secondary:hover {
    background: #f9fafb;
    border-color: #000066;
    transform: translateY(-1px);
    color: #000066;
}

/* Trust Badge */
.popup-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 12px;
    color: #6b7280;
    padding-top: 16px;
    border-top: 1px solid #e5e7eb;
}

.popup-trust svg {
    flex-shrink: 0;
}

/* Tablet Responsive */
@media (max-width: 768px) {
    .booking-popup-overlay {
        padding: 16px;
    }

    .booking-popup-modal {
        max-width: 100%;
    }

    .popup-content {
        padding: 44px 28px 28px;
    }

    .popup-headline {
        font-size: 26px;
    }

    .popup-subheadline {
        font-size: 15px;
        margin-bottom: 24px;
    }

    .popup-icon {
        width: 72px;
        height: 72px;
        margin-bottom: 20px;
    }

    .popup-benefits {
        padding: 18px;
        margin-bottom: 24px;
    }

    .benefit-item {
        font-size: 13px;
    }
}

/* Mobile Responsive */
@media (max-width: 480px) {
    .booking-popup-overlay {
        padding: 12px;
        align-items: flex-end;
    }

    .booking-popup-modal {
        max-width: 100%;
        border-radius: 20px 20px 0 0;
        max-height: 90vh;
        overflow-y: auto;
    }

    .popup-content {
        padding: 36px 20px 20px;
    }

    .popup-close {
        top: 12px;
        right: 12px;
        width: 32px;
        height: 32px;
    }

    .popup-headline {
        font-size: 22px;
        margin-bottom: 10px;
    }

    .popup-subheadline {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .popup-icon {
        width: 64px;
        height: 64px;
        margin-bottom: 18px;
        border-radius: 16px;
    }

    .popup-icon svg {
        width: 36px;
        height: 36px;
    }

    .popup-benefits {
        padding: 16px;
        margin-bottom: 20px;
        gap: 10px;
    }

    .benefit-item {
        font-size: 13px;
        gap: 10px;
    }

    .benefit-item svg {
        width: 14px;
        height: 14px;
    }

    .popup-actions {
        gap: 10px;
        margin-bottom: 16px;
    }

    .popup-btn {
        font-size: 14px;
        padding: 13px 18px;
        gap: 8px;
    }

    .popup-btn svg {
        width: 16px;
        height: 16px;
    }

    .popup-trust {
        font-size: 11px;
        padding-top: 12px;
        gap: 6px;
        flex-wrap: wrap;
    }

    .popup-trust svg {
        width: 12px;
        height: 12px;
    }
}

/* Extra Small Mobile */
@media (max-width: 360px) {
    .popup-headline {
        font-size: 20px;
    }

    .popup-subheadline {
        font-size: 13px;
    }

    .popup-icon {
        width: 56px;
        height: 56px;
    }

    .benefit-item {
        font-size: 12px;
    }

    .popup-btn {
        font-size: 13px;
        padding: 12px 16px;
    }
}

/* Prevent body scroll when popup is open */
body.popup-open {
    overflow: hidden;
}
